From 93bea7ff28434dee5202659a99a024476d43592f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 12:35:25 -0700 Subject: [PATCH 001/112] Fix for OpenID-only private sites: we were removing the 'login' and 'register' actions from the routing system entirely, which meant that login links & redirects from unauthenticated views on private sites (as well as various re-auth situations even on non-private sites) would break and send to the main page instead. Changed it to leave the 'login' and 'register' actions in the system; we're already taking them over and redirecting them to the OpenID login page, so they won't be reached by accident; but now those redirects can be reached on purpose. ;) Better long-term fix may be to allow some aliasing, so we can have common_local_url('login') actually send us straight to the OpenID login page instead of having to go through an intermediate redirect, but this'll do. --- plugins/OpenID/OpenIDPlugin.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index 7d6a5dc000..a033a50109 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -102,9 +102,14 @@ class OpenIDPlugin extends Plugin function onStartConnectPath(&$path, &$defaults, &$rules, &$result) { if (common_config('site', 'openidonly')) { - static $block = array('main/login', - 'main/register', - 'main/recoverpassword', + // Note that we should not remove the login and register + // actions. Lots of auth-related things link to them, + // such as when visiting a private site without a session + // or revalidating a remembered login for admin work. + // + // We take those two over with redirects to ourselves + // over in onArgsInitialize(). + static $block = array('main/recoverpassword', 'settings/password'); if (in_array($path, $block)) { From 8c37b86e7304880d830ce8f94db08bf928ad1a9d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 13:22:25 -0700 Subject: [PATCH 002/112] Added an option to TinyMCE plugin to restrict the rich-text editor to users who have the 'richedit' role. This allows enabling it for a subset of accounts on a site while leaving other users using the regular posting system, which is more stable. --- plugins/TinyMCE/TinyMCEPlugin.php | 34 +++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/plugins/TinyMCE/TinyMCEPlugin.php b/plugins/TinyMCE/TinyMCEPlugin.php index 2ec4b71608..e0640ebdf3 100644 --- a/plugins/TinyMCE/TinyMCEPlugin.php +++ b/plugins/TinyMCE/TinyMCEPlugin.php @@ -50,9 +50,14 @@ class TinyMCEPlugin extends Plugin { var $html; + // By default, TinyMCE editor will be available to all users. + // With restricted on, only users who have been granted the + // "richedit" role get it. + public $restricted = false; + function onEndShowScripts($action) { - if (common_logged_in ()) { + if (common_logged_in() && $this->isAllowedRichEdit()) { $action->script(common_path('plugins/TinyMCE/js/jquery.tinymce.js')); $action->inlineScript($this->_inlineScript()); } @@ -62,7 +67,9 @@ class TinyMCEPlugin extends Plugin function onEndShowStyles($action) { - $action->style('span#notice_data-text_container, span#notice_data-text_parent { float: left }'); + if ($this->isAllowedRichEdit()) { + $action->style('span#notice_data-text_container, span#notice_data-text_parent { float: left }'); + } return true; } @@ -116,7 +123,7 @@ class TinyMCEPlugin extends Plugin */ function onStartSaveNewNoticeWeb($action, $user, &$content, &$options) { - if ($action->arg('richedit')) { + if ($action->arg('richedit') && $this->isAllowedRichEdit()) { $html = $this->sanitizeHtml($content); $options['rendered'] = $html; $content = $this->stripHtml($html); @@ -135,7 +142,7 @@ class TinyMCEPlugin extends Plugin */ function onStartSaveNewNoticeAppendAttachment($action, $media, &$content, &$options) { - if ($action->arg('richedit')) { + if ($action->arg('richedit') && $this->isAllowedRichEdit()) { // See if we've got a placeholder inline image; if so, fill it! $dom = new DOMDocument(); @@ -320,4 +327,23 @@ END_OF_SCRIPT; return $scr; } + + /** + * Does the current user have permission to use the rich-text editor? + * Always true unless the plugin's "restricted" setting is on, in which + * case it's limited to users with the "richedit" role. + * + * @fixme make that more sanely configurable :) + * + * @return boolean + */ + private function isAllowedRichEdit() + { + if ($this->restricted) { + $user = common_current_user(); + return !empty($user) && $user->hasRole('richedit'); + } else { + return true; + } + } } From bc2b72a8723054affc4c71ab9ae55cf40aba7447 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 13:30:39 -0700 Subject: [PATCH 003/112] Add 'restricted' option to NoticeTitle; if set, only users with 'richedit' role get the fancy extra title field. --- plugins/NoticeTitle/NoticeTitlePlugin.php | 48 ++++++++++++++++++----- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/plugins/NoticeTitle/NoticeTitlePlugin.php b/plugins/NoticeTitle/NoticeTitlePlugin.php index dea0417f5f..269f061893 100644 --- a/plugins/NoticeTitle/NoticeTitlePlugin.php +++ b/plugins/NoticeTitle/NoticeTitlePlugin.php @@ -51,6 +51,12 @@ define('NOTICE_TITLE_PLUGIN_VERSION', '0.1'); class NoticeTitlePlugin extends Plugin { + + // By default, notice-title widget will be available to all users. + // With restricted on, only users who have been granted the + // "richedit" role get it. + public $restricted = false; + /** * Database schema setup * @@ -137,14 +143,16 @@ class NoticeTitlePlugin extends Plugin function onStartShowNoticeFormData($form) { - $form->out->element('style', - null, - 'label#notice_data-text-label { display: none }'); - $form->out->element('input', array('type' => 'text', - 'id' => 'notice_title', - 'name' => 'notice_title', - 'size' => 40, - 'maxlength' => Notice_title::MAXCHARS)); + if ($this->isAllowedRichEdit()) { + $form->out->element('style', + null, + 'label#notice_data-text-label { display: none }'); + $form->out->element('input', array('type' => 'text', + 'id' => 'notice_title', + 'name' => 'notice_title', + 'size' => 40, + 'maxlength' => Notice_title::MAXCHARS)); + } return true; } @@ -162,7 +170,7 @@ class NoticeTitlePlugin extends Plugin function onStartNoticeSaveWeb($action, &$authorId, &$text, &$options) { $title = $action->trimmed('notice_title'); - if (!empty($title)) { + if (!empty($title) && $this->isAllowedRichEdit()) { if (mb_strlen($title) > Notice_title::MAXCHARS) { throw new Exception(sprintf(_m("The notice title is too long (max %d characters).", Notice_title::MAXCHARS))); @@ -186,7 +194,7 @@ class NoticeTitlePlugin extends Plugin $title = $action->trimmed('notice_title'); - if (!empty($title)) { + if (!empty($title) && $this->isAllowedRichEdit()) { $nt = new Notice_title(); @@ -327,4 +335,24 @@ class NoticeTitlePlugin extends Plugin return true; } + + /** + * Does the current user have permission to use the notice-title widget? + * Always true unless the plugin's "restricted" setting is on, in which + * case it's limited to users with the "richedit" role. + * + * @fixme make that more sanely configurable :) + * + * @return boolean + */ + private function isAllowedRichEdit() + { + if ($this->restricted) { + $user = common_current_user(); + return !empty($user) && $user->hasRole('richedit'); + } else { + return true; + } + } + } From 143897bf45a1643329535703c8ff24710e8c0ee8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 14:46:32 -0700 Subject: [PATCH 004/112] Initial SlicedFavorites plugin to allow for customized variants of 'Popular' tab (favorited action) that include or exclude a given set of users. No added UI tabs in this version, beware! --- .../SlicedFavorites/SlicedFavoritesPlugin.php | 109 ++++++++++++ .../SlicedFavorites/favoritedsliceaction.php | 155 ++++++++++++++++++ 2 files changed, 264 insertions(+) create mode 100644 plugins/SlicedFavorites/SlicedFavoritesPlugin.php create mode 100644 plugins/SlicedFavorites/favoritedsliceaction.php diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php new file mode 100644 index 0000000000..0a1a591efb --- /dev/null +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -0,0 +1,109 @@ +. + */ + +/** + * @package YammerImportPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class SlicedFavoritesPlugin extends Plugin +{ + /** + * Example: + * + * addPlugin('SlicedFavorites', array( + * 'slices' => array( + * // show only pop's notices on /favorited + * 'default' => array('include' => array('pop')), + * + * // show only son's notices on /favorited/blog + * 'blog' => array('include' => array('son')), + * + * // show all favorited notices except pop's and son's on /favorited/submitted + * 'submitted' => array('exclude' => array('pop', 'son')), + * + * // show all favorited notices on /favorited/everybody + * 'everybody' => array(), + * ) + * )); + * + * @var array + */ + public $slices = array(); + + /** + * Hook for RouterInitialized event. + * + * @param Net_URL_Mapper $m path-to-action mapper + * @return boolean hook return + */ + function onRouterInitialized($m) + { + $m->connect('favorited/:slice', + array('action' => 'favoritedslice'), + array('slice' => '[a-zA-Z0-9]+')); + + return true; + } + + // Take over the default... :D + function onArgsInitialize($args) + { + if (array_key_exists('action', $args)) { + $action = trim($args['action']); + if ($action == 'favorited') { + common_redirect(common_local_url('favoritedslice', array('slice' => 'default'))); + exit(0); + } + } + return true; + } + + /** + * Automatically load the actions and libraries used by the plugin + * + * @param Class $cls the class + * + * @return boolean hook return + * + */ + function onAutoload($cls) + { + $base = dirname(__FILE__); + $lower = strtolower($cls); + switch ($lower) { + case 'favoritedsliceaction': + require_once "$base/$lower.php"; + return false; + default: + return true; + } + } + + function onSlicedFavoritesGetSettings($slice, &$data) + { + if (isset($this->slices[$slice])) { + $data = $this->slices[$slice]; + return false; + } + return true; + } +} diff --git a/plugins/SlicedFavorites/favoritedsliceaction.php b/plugins/SlicedFavorites/favoritedsliceaction.php new file mode 100644 index 0000000000..020688cfa4 --- /dev/null +++ b/plugins/SlicedFavorites/favoritedsliceaction.php @@ -0,0 +1,155 @@ +. + * + * @category Public + * @package StatusNet + * @author Zach Copley + * @author Evan Prodromou + * @copyright 2008-2009 StatusNet, Inc. + * @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); +} + + +class FavoritedSliceAction extends FavoritedAction +{ + private $includeUsers = array(), $excludeUsers = array(); + + /** + * Take arguments for running + * + * @param array $args $_REQUEST args + * + * @return boolean success flag + * + * @todo move queries from showContent() to here + */ + + function prepare($args) + { + parent::prepare($args); + + $this->slice = $this->arg('slice', 'default'); + $data = array(); + if (Event::handle('SlicedFavoritesGetSettings', array($this->slice, &$data))) { + throw new ClientException(_m('Unknown favorites slice.')); + } + if (isset($data['include'])) { + $this->includeUsers = $data['include']; + } + if (isset($data['exclude'])) { + $this->excludeUsers = $data['exclude']; + } + + return true; + } + + /** + * Content area + * + * Shows the list of popular notices + * + * @return void + */ + + function showContent() + { + $slice = $this->sliceWhereClause(); + if (!$slice) { + return parent::showContent(); + } + + $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); + $cutoff = sprintf("fave.modified > '%s'", + common_sql_date(time() - common_config('popular', 'cutoff'))); + + $qry = 'SELECT notice.*, '. + $weightexpr . ' as weight ' . + 'FROM notice JOIN fave ON notice.id = fave.notice_id ' . + "WHERE $cutoff AND $slice " . + 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' . + 'ORDER BY weight DESC'; + + $offset = ($this->page - 1) * NOTICES_PER_PAGE; + $limit = NOTICES_PER_PAGE + 1; + + if (common_config('db', 'type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + + $notice = Memcached_DataObject::cachedQuery('Notice', + $qry, + 600); + + $nl = new NoticeList($notice, $this); + + $cnt = $nl->show(); + + if ($cnt == 0) { + $this->showEmptyList(); + } + + $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, + $this->page, 'favorited'); + } + + private function sliceWhereClause() + { + $include = $this->nicknamesToIds($this->includeUsers); + $exclude = $this->nicknamesToIds($this->excludeUsers); + + if (count($include) == 1) { + return "profile_id = " . intval($include[0]); + } else if (count($include) > 1) { + return "profile_id IN (" . implode(',', $include) . ")"; + } else if (count($exclude) == 1) { + return "profile_id != " . intval($exclude[0]); + } else if (count($exclude) > 1) { + return "profile_id NOT IN (" . implode(',', $exclude) . ")"; + } else { + return false; + } + } + + /** + * + * @param array $nicks array of user nicknames + * @return array of profile/user IDs + */ + private function nicknamesToIds($nicks) + { + $ids = array(); + foreach ($nicks as $nick) { + // not the most efficient way for a big list! + $user = User::staticGet('nickname', $nick); + if ($user) { + $ids[] = intval($user->id); + } + } + return $ids; + } +} From 5c11ad15e14811a4094224b1f6995354ec443df9 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 14:52:00 -0700 Subject: [PATCH 005/112] fix comment --- plugins/SlicedFavorites/SlicedFavoritesPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php index 0a1a591efb..ed7f5ebb96 100644 --- a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -18,7 +18,7 @@ */ /** - * @package YammerImportPlugin + * @package SlicedFavoritesPlugin * @maintainer Brion Vibber */ From 2ecbae308d0fba0ace43009f0d062301b2a86c81 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 15:56:38 -0700 Subject: [PATCH 006/112] GroupFavorited plugin: adds 'Popular' tab to group navigation showing a popular pages subset for just posts in the group. Not necessarily terribly efficient, should be tested and benchmarked on non-trivial sites --- .../GroupFavorited/GroupFavoritedPlugin.php | 79 +++++++++++++ .../GroupFavorited/groupfavoritedaction.php | 111 ++++++++++++++++++ 2 files changed, 190 insertions(+) create mode 100644 plugins/GroupFavorited/GroupFavoritedPlugin.php create mode 100644 plugins/GroupFavorited/groupfavoritedaction.php diff --git a/plugins/GroupFavorited/GroupFavoritedPlugin.php b/plugins/GroupFavorited/GroupFavoritedPlugin.php new file mode 100644 index 0000000000..68815530aa --- /dev/null +++ b/plugins/GroupFavorited/GroupFavoritedPlugin.php @@ -0,0 +1,79 @@ +. + */ + +/** + * @package GroupFavoritedPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class GroupFavoritedPlugin extends Plugin +{ + /** + * Hook for RouterInitialized event. + * + * @param Net_URL_Mapper $m path-to-action mapper + * @return boolean hook return + */ + function onRouterInitialized($m) + { + $m->connect('group/:nickname/favorited', + array('action' => 'groupfavorited'), + array('nickname' => '[a-zA-Z0-9]+')); + + return true; + } + + /** + * Automatically load the actions and libraries used by the plugin + * + * @param Class $cls the class + * + * @return boolean hook return + * + */ + function onAutoload($cls) + { + $base = dirname(__FILE__); + $lower = strtolower($cls); + switch ($lower) { + case 'groupfavoritedaction': + require_once "$base/$lower.php"; + return false; + default: + return true; + } + } + + function onEndGroupGroupNav(GroupNav $nav) + { + $action_name = $nav->action->trimmed('action'); + $nickname = $nav->group->nickname; + $nav->out->menuItem(common_local_url('groupfavorited', array('nickname' => + $nickname)), + // TRANS: Menu item in the group navigation page. + _m('MENU', 'Popular'), + // TRANS: Tooltip for menu item in the group navigation page. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','Popular notices in %s group'), $nickname), + $action_name == 'groupfavorited', + 'nav_group_group'); + } +} diff --git a/plugins/GroupFavorited/groupfavoritedaction.php b/plugins/GroupFavorited/groupfavoritedaction.php new file mode 100644 index 0000000000..6803bea8d6 --- /dev/null +++ b/plugins/GroupFavorited/groupfavoritedaction.php @@ -0,0 +1,111 @@ +. + * + * @category Public + * @package StatusNet + * @author Zach Copley + * @author Evan Prodromou + * @copyright 2008-2009 StatusNet, Inc. + * @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); +} + + +class GroupFavoritedAction extends ShowgroupAction +{ + + /** + * Title of the page + * + * @return string page title, with page number + */ + + function title() + { + if (!empty($this->group->fullname)) { + $base = $this->group->fullname . ' (' . $this->group->nickname . ')'; + } else { + $base = $this->group->nickname; + } + + if ($this->page == 1) { + return sprintf(_m('Popular posts in %s group'), $base); + } else { + return sprintf(_m('Popular posts in %1$s group, page %2$d'), + $base, + $this->page); + } + } + + /** + * Content area + * + * Shows the list of popular notices + * + * @return void + */ + + function showContent() + { + $groupId = intval($this->group->id); + $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); + $cutoff = sprintf("fave.modified > '%s'", + common_sql_date(time() - common_config('popular', 'cutoff'))); + + $qry = 'SELECT notice.*, '. + $weightexpr . ' as weight ' . + 'FROM notice ' . + "JOIN group_inbox ON notice.id = group_inbox.notice_id " . + 'JOIN fave ON notice.id = fave.notice_id ' . + "WHERE $cutoff AND group_id = $groupId " . + 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' . + 'ORDER BY weight DESC'; + + $offset = ($this->page - 1) * NOTICES_PER_PAGE; + $limit = NOTICES_PER_PAGE + 1; + + if (common_config('db', 'type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + + $notice = Memcached_DataObject::cachedQuery('Notice', + $qry, + 600); + + $nl = new NoticeList($notice, $this); + + $cnt = $nl->show(); + + if ($cnt == 0) { + //$this->showEmptyList(); + } + + $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, + $this->page, 'groupfavorited', + array('nickname' => $this->group->nickname)); + } +} From 55a080ea4e662ae719e8956c93389f3c689bb73a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 16:25:15 -0700 Subject: [PATCH 007/112] ForceGroup plugin: optionally force new users to join a particular group or set of groups on registration; and/or to force posts by members of particular groups to be posted into those groups even if not explicitly mentioned. The posting feature requires a couple quick hook additions in core. --- classes/Notice.php | 1 + lib/distribqueuehandler.php | 10 ++- plugins/ForceGroup/ForceGroupPlugin.php | 82 +++++++++++++++++++++++++ 3 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 plugins/ForceGroup/ForceGroupPlugin.php diff --git a/classes/Notice.php b/classes/Notice.php index 79626f8898..e268544b50 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2034,6 +2034,7 @@ class Notice extends Memcached_DataObject { // We always insert for the author so they don't // have to wait + Event::handle('StartNoticeDistribute', array($this)); $user = User::staticGet('id', $this->profile_id); if (!empty($user)) { diff --git a/lib/distribqueuehandler.php b/lib/distribqueuehandler.php index 8f4b72d5c3..a7519c1d50 100644 --- a/lib/distribqueuehandler.php +++ b/lib/distribqueuehandler.php @@ -78,13 +78,19 @@ class DistribQueueHandler } try { - Event::handle('EndNoticeSave', array($notice)); - // Enqueue for other handlers + Event::handle('EndNoticeDistribute', array($notice)); } catch (Exception $e) { $this->logit($notice, $e); } try { + Event::handle('EndNoticeSave', array($notice)); + } catch (Exception $e) { + $this->logit($notice, $e); + } + + try { + // Enqueue for other handlers common_enqueue_notice($notice); } catch (Exception $e) { $this->logit($notice, $e); diff --git a/plugins/ForceGroup/ForceGroupPlugin.php b/plugins/ForceGroup/ForceGroupPlugin.php new file mode 100644 index 0000000000..e0a04fccac --- /dev/null +++ b/plugins/ForceGroup/ForceGroupPlugin.php @@ -0,0 +1,82 @@ +. + */ + +/** + * @package ForceGroupPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class ForceGroupPlugin extends Plugin +{ + /** + * Members of these groups will have all their posts mirrored into + * the group even if they don't explicitly mention it. + * + * List by local nickname. + */ + public $post = array(); + + /** + * New user registrations will automatically join these groups on + * registration. They're not prevented from leaving, however. + * + * List by local nickname. + */ + public $join = array(); + + /** + * If poster is in one of the forced groups, make sure their notice + * gets saved into that group even if not explicitly mentioned. + * + * @param Notice $notice + * @return boolean event hook return + */ + function onStartNoticeDistribute($notice) + { + $profile = $notice->getProfile(); + foreach ($this->post as $nickname) { + $group = User_group::getForNickname($nickname); + if ($group && $profile->isMember($group)) { + $notice->addToGroupInbox($group); + } + } + return true; + } + + function onEndUserRegister($profile, $user) + { + $profile = $user->getProfile(); + foreach ($this->join as $nickname) { + $group = User_group::getForNickname($nickname); + if ($group && !$profile->isMember($group)) { + try { + if (Event::handle('StartJoinGroup', array($group, $user))) { + Group_member::join($group->id, $user->id); + Event::handle('EndJoinGroup', array($group, $user)); + } + } catch (Exception $e) { + throw new ServerException(sprintf(_('Could not join user %1$s to group %2$s.'), + $user->nickname, $group->nickname)); + } + } + } + } +} From 46167d6b3567d49f052a372fc97e43eefbd064d7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 18:02:02 -0700 Subject: [PATCH 008/112] ShareNotice plugin -- basic buttons per-notice to share the text & a link to the notice on other sites. Default settings list Twitter, Facebook, and Identi.ca as targets. Using icons built-in, and no magic offsite JS or anything so it won't slow down or break if third-party site goes down. Default styles are a little limited, but can be customized in theme should one be so inclined. --- plugins/ShareNotice/ShareNoticePlugin.php | 194 +++++++++++++++++++++ plugins/ShareNotice/css/README | 9 + plugins/ShareNotice/css/icon-facebook.png | Bin 0 -> 312 bytes plugins/ShareNotice/css/icon-share.png | Bin 0 -> 3838 bytes plugins/ShareNotice/css/icon-statusnet.png | Bin 0 -> 488 bytes plugins/ShareNotice/css/icon-twitter.png | Bin 0 -> 469 bytes plugins/ShareNotice/css/sharenotice.css | 23 +++ 7 files changed, 226 insertions(+) create mode 100644 plugins/ShareNotice/ShareNoticePlugin.php create mode 100644 plugins/ShareNotice/css/README create mode 100644 plugins/ShareNotice/css/icon-facebook.png create mode 100644 plugins/ShareNotice/css/icon-share.png create mode 100644 plugins/ShareNotice/css/icon-statusnet.png create mode 100644 plugins/ShareNotice/css/icon-twitter.png create mode 100644 plugins/ShareNotice/css/sharenotice.css diff --git a/plugins/ShareNotice/ShareNoticePlugin.php b/plugins/ShareNotice/ShareNoticePlugin.php new file mode 100644 index 0000000000..d44e234529 --- /dev/null +++ b/plugins/ShareNotice/ShareNoticePlugin.php @@ -0,0 +1,194 @@ +. + */ + +/** + * @package ShareNoticePlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class ShareNoticePlugin extends Plugin +{ + public $targets = array( + array('Twitter'), + array('Facebook'), + array('StatusNet', array('baseurl' => 'http://identi.ca')) + ); + + function onEndShowStatusNetStyles($action) { + $action->cssLink('plugins/ShareNotice/css/sharenotice.css'); + return true; + } + + function onStartShowNoticeItem($item) + { + $notice = $item->notice; + $out = $item->out; + + $out->elementStart('ul', array('class' => 'notice-share')); + foreach ($this->targets as $data) { + $type = $data[0]; + $args = (count($data) > 1) ? $data[1] : array(); + $target = $this->getShareTarget($type, $notice, $args); + $this->showShareTarget($out, $target); + } + $out->elementEnd('ul'); + } + + private function getShareTarget($type, $notice, $args) + { + $class = ucfirst($type) . 'ShareTarget'; + + return new $class($notice, $args); + } + + private function showShareTarget(HTMLOutputter $out, NoticeShareTarget $target) + { + $class = $target->getClass(); + $text = $target->getText(); + $url = $target->targetUrl(); + + $out->elementStart('li', array('class' => 'notice-share-' . $class)); + $out->elementStart('a', array( + 'href' => $url, + 'title' => $text, + 'target' => '_blank' + )); + $out->element('span', array(), $text); + $out->elementEnd('a'); + $out->elementEnd('li'); + } +} + +abstract class NoticeShareTarget +{ + protected $notice; + + public function __construct($notice) + { + $this->notice = $notice; + } + + public abstract function getClass(); + + public abstract function getText(); + + public abstract function targetUrl(); +} + +abstract class GenericNoticeShareTarget extends NoticeShareTarget +{ + protected function maxLength() + { + return 140; // typical + } + + protected function statusText() + { + $pattern = _m('"%s"'); + $url = $this->notice->bestUrl(); + $suffix = ' ' . $url; + $room = $this->maxLength() - mb_strlen($suffix) - (mb_strlen($pattern) - mb_strlen('%s')); + + $content = $this->notice->content; + if (mb_strlen($content) > $room) { + $content = mb_substr($content, 0, $room - 1) . '…'; + } + + return sprintf($pattern, $content) . $suffix; + } +} + +class TwitterShareTarget extends GenericNoticeShareTarget +{ + public function getClass() + { + return 'twitter'; + } + + public function getText() + { + return _m('Share on Twitter'); + } + + public function targetUrl() + { + $args = array( + 'status' => $this->statusText() + ); + return 'http://twitter.com/home?' . + http_build_query($args, null, '&'); + } +} + +class StatusNetShareTarget extends GenericNoticeShareTarget +{ + protected $baseurl; + + public function __construct($notice, $args) + { + parent::__construct($notice); + $this->baseurl = $args['baseurl']; + } + + public function getClass() + { + return 'statusnet'; + } + + public function getText() + { + $host = parse_url($this->baseurl, PHP_URL_HOST); + return sprintf(_m('Share on %s'), $host); + } + + public function targetUrl() + { + $args = array( + 'status_textarea' => $this->statusText() + ); + return $this->baseurl . '/notice/new?' . + http_build_query($args, null, '&'); + } + +} + +class FacebookShareTarget extends NoticeShareTarget +{ + public function getClass() + { + return 'facebook'; + } + + public function getText() + { + return _m('Share on Facebook'); + } + + public function targetUrl() + { + $args = array( + 'u' => $this->notice->bestUrl(), + 't' => sprintf(_m('"%s"'), $this->notice->content), + ); + return 'http://www.facebook.com/sharer.php?' . + http_build_query($args, null, '&'); + } +} \ No newline at end of file diff --git a/plugins/ShareNotice/css/README b/plugins/ShareNotice/css/README new file mode 100644 index 0000000000..a3f4661973 --- /dev/null +++ b/plugins/ShareNotice/css/README @@ -0,0 +1,9 @@ +icon-sharing.png is from http://www.openshareicons.com/ + +Shareaholic has made the Open Share Icon freely available for use by others under the +Creative Commons Attribution-Share Alike 3.0 Unported License. + + +icon-twitter.png is from http://twitter.com/favicon.ico and distributed under fair use +icon-facebook.png is from http://facebook.com/favicon.ico and distributed under fair use +icon-statusnet.png is from http://status.net/favicon.ico and distributed under fair use diff --git a/plugins/ShareNotice/css/icon-facebook.png b/plugins/ShareNotice/css/icon-facebook.png new file mode 100644 index 0000000000000000000000000000000000000000..3105e306963f11c32534a935b5984446dbee0768 GIT binary patch literal 312 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4E=C3oW=~B~TcD6qiEBiObAE1a zYF-J0b5UwyNotBhd1gt5g1e`0fI@zrLZX6iVsiV6a%Z6GE>9Q75R22v2@3=aj0_A6 zB3#e@^6z_=eEO2aOpQ`TZo@7U5f%w6uNny#77Gaw$Vqy3;Auw@rMraS)o}V9>k8&H>UDV?^5!sYv+~a@MV1b{)r-BUz87n*lLUI-@5iUd{D)_1`xj^(n%1y_jp0b8a-80b3u}R{V(@hJb6Mw<&;$VT%w?+p literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/icon-share.png b/plugins/ShareNotice/css/icon-share.png new file mode 100644 index 0000000000000000000000000000000000000000..5be2b46c8a41d3485555bc5cdf686b03a35fcd45 GIT binary patch literal 3838 zcmeHKX;4#F7`=IthzJ^xMW~%VBgHifLBYhtfF>%kh=3Y*9?1n_LK2gQ1aO0@P^cme zs8vA`QCk$oDX7Q@1!@&nbX>+2sUR-HrU6Bu=}Vw!r@xq~|F|=6-uv!7-#Pa?_xo|* z_d$X4ZLD0Z001_=3xvVMn`(M2DFBe73^(5sfio@=;~}aDJQmYH;3HLqL)14Ki-f@t zlg6#Dfjj`LPRc^XxH!O{D^W!=FcXHMi&hia0PqAlH71cm91Vw&G9{nZT2?_rWl}zE z*^B^IfO;;Bk}ZhWz>xUBP)WR8!jaMhv#oeKE)Vt#APAkS(m-@N!<{Z+d3d7JJsE5-PcJrW8XBNdqVr%l>drygES49_W^<>r zxU89I|DesbLU|f#1UFbXuV0af__Qb-S96)n*w|P`tOrA-iDbHSI2S zcnFT+X4L^|l^QCwQN(e}Bq~D2Bw#KM{7`3+0D^E^gQOj#QUJ1IZfpB%@HR^^bd2O zf%-RR+V2+}Wpd1(!c&NLE>>88R2hz_6FTLZ49G!|>u7c7(0Hr1a*qM`3?`5Kw^yH7_>%fy8m?JhvUs0-qai z*73VWQ@yRxjQyo?#@6z4oq~v8YPPuTHsl?e=v=<3`$k*Oi!GF`00=>uk+dM*^M(Z( zI3NfKG{5Xg0X}jMV^43l@%7sVhU)e=Z(K5Aea)&dy-#v2`GGZ5beU*@4zKAHXpC$zwmb zxRU+4I*g#P=?&;I08ms}0NPsLfl*ErfCPE}F>S;)64+GtB=UGf&c#G3g=}++>M&k3 zw>~&g@8@~O@y_jFp-?~fnO$+QFt6h9s+CEW!^cOl?2uea>!|d?vX=8J>kLoF+}hcD zFgFK~kZn}qM0NHvc^Fy5`Eg0%$(-RM4&iQzwX1$OJ+21X-twq54bK*AeATAz@-M1` zQv}tOPbhm{9nQ~M4CN*M&yUo!H#0iZYh-z;57MV@tfDqNf5Tst?Z$3&7nIt`EN52; z#QWFet(Yp>C>GsC?loOe+;{q^Hj-0UdJI43z4@`Xn+L)`~A#!7q*bNZV9!Mk|ymkZrHHleG89ux>nd46xuV> z*2mRx&xWL<)FN92l3E$|vuOWT%PEr`Y$(MGB$&%co0P;iw=F_WG_<8%ewEvP?b6f2 z2TzvQJ!Vx~r(a4ic3s~xEm=N`VyHeUPazj+@{b%3TCwjO<-WFU)6Q=uanhpdDyROo zZdP6|-T5xEeq&xX>geqkoVjD%Q|-2TkC=7cfnoKGvwQX#SyzkN3hdj2qFqa}nr~bx zIqY@C1K02F&2ky7yw;Y`Jn?;`>TU6QC#HJl3jU4CE91G>9dAXX`evcmYHa2uw^KTP z-OKU9Z6{=uUUcFeIMmRYKXF_^PSvjTQzEyVwc`UC;w@a)GfI~irD!+*X-F-~PNnLV z3ti`Ubyp`Qx^(2a`%}`_Jjtyn*4Jb>m-j@yExjwnN-GcK@2xA*C5JD^V)3MsrVI7= ztvj0`?9iXOYUtqHtEzas-zC4jg-%}LSlwv5%WoK)Rj*D8?T;Bo$1hzyKMgJ_Uz<|2=WIbnm1l`xA-p_e#d-ARi`NGak2Pdo lw$EP(CpUKldeRdw8A+*5+lxc7FfY>|sjnzdSU4vv>2KGf(H{T+ literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/icon-statusnet.png b/plugins/ShareNotice/css/icon-statusnet.png new file mode 100644 index 0000000000000000000000000000000000000000..a7b39090d0d723228699030e242d099fe029aa9d GIT binary patch literal 488 zcmVP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igh& z04Ex%+MzN400C%8L_t(I%Z-yUZo)tiMW0QiAVoq>5s63?E2T>XojY7bbod646C^$X zzJbLFa83}rbmvqlV;ZCsC@v@>(U??FM5M6ST8MG-rImJOcmB-I{?Sn2fdM=MBS0ue zDG&ftC*POQlwcc}k&~Q41~?A*2Lwg%GyliEB+-hpKh(?}%i?x4q9p|DBw-nbtm62% zlAZ%89=IOt<$879eHEhdc(2~`^5>!#4J$L7lSyUGce5EC%TisoBq+Pxdw8gQ_|0&r znuZ5LS3T#3QA=>u?H;=h33gdlOYoJZzrIy3Itsut3~LG2^Z9}8K%y5417P9%EPVeY zL8sqW%>bY=fO#R`vWnei!&$RQO9)nR%rXeLXt%jGP2Q$czPDR|&j_BR5?x^Om;72n zu*)*FSCTB8Ud?0(60PMSKEmkB3dG%H-wZ5`YE7Kq|+$ eIJ1F1VE+JesE2#dVa!_q0000QL70(Y)*K0-AbW|YuPgg4E=C45tB&;>b_0c!N?apKobz*Y zQ}ap~oQqNuOHxx5$}>wc6x=<10~GS}6cQDD6O-Fllsg0MRQGgo46!)9bn-?&CP#s` z{mFZubp+mfz$Gl4`_%K?yzqtz5lqw6)E)@0*lTlgX28UR9KBm}Tg7BJi*`E~vNPUM zcAt~=FXj8~ne}B4=0D8oQn*sPAhP&jHRFMVi14*ROBAmBJ$K}UiD>6@rOP2pj14C_ zdo!lY>e_NVswu#`dd^FQE1TZmySQwHR!3T-+*zZy)si;$pO|fUUav}Lz47SZqD|+7 z&t`r^_R?gd3BPK3P;HJ@k8@u0d=JF~HK_s62G zXZ=lVYPk+P@MjGTUDs6+XK>6#K50>eZ_mEEho5fT%zotKe0J;XAAf!*-kD?BDsZ3K zf9>}pzvjA^zju4IGve?z`99W5%u)^SH6xzPzfrpBQ@MEwr^L>Mp2wrFE(ZoMgQu&X J%Q~loCICc+#CZS! literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/sharenotice.css b/plugins/ShareNotice/css/sharenotice.css new file mode 100644 index 0000000000..f4f847e66c --- /dev/null +++ b/plugins/ShareNotice/css/sharenotice.css @@ -0,0 +1,23 @@ +.notice-share { + width: 24px; + float: right; +} + +.notice-share li a { + display: block; + width: 16px; + height: 16px; + background: url(icon-share.png) no-repeat; +} +.notice-share li.notice-share-twitter a { + background-image: url(icon-twitter.png); +} +.notice-share li.notice-share-facebook a { + background-image: url(icon-facebook.png); +} +.notice-share li.notice-share-statusnet a { + background-image: url(icon-statusnet.png); +} +.notice-share li a span { + display: none; +} From 54c88cba571a74a901f2d15e7d8db0d349d896d3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 19:18:46 -0700 Subject: [PATCH 009/112] Add a $config['plugins']['locale_path'] which can be set to override the individual plugins' locale subdirectories. This will apply to *ALL* plugins in *ALL* languages, so should probably only be used when doing site customization... You'd probably do: $config['site']['locale_path'] = '/srv/awesome/data/locale'; $config['plugins']['locale_path'] = '/srv/awesome/data/locale'; with a structure like: srv/ awesome/ data/ locale/ en/ LC_MESSAGES/ statusnet.po OpenID.po AnonymousFave.po etc, all alongside each other. You could separate plugins from the core if you like. Where locale files have not already been generated, you can build one for a plugin like so: php scripts/update_po_templates.php --plugin=MyPlugin and pull out the template file: plugins/MyPlugin/locale/MyPlugin.pot Edit that (make sure you at least set the CHARSET, probably to UTF-8) and save your customized .po files into the structure as above, and use msgfmt to generate .mo files for final output. --- lib/default.php | 1 + lib/plugin.php | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/default.php b/lib/default.php index 6200abada1..45e35e83d3 100644 --- a/lib/default.php +++ b/lib/default.php @@ -298,6 +298,7 @@ $default = 'WikiHashtags' => null, 'RSSCloud' => null, 'OpenID' => null), + 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories ), 'admin' => array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license')), diff --git a/lib/plugin.php b/lib/plugin.php index ee57f59043..3f84afa27e 100644 --- a/lib/plugin.php +++ b/lib/plugin.php @@ -88,7 +88,12 @@ class Plugin $class = get_class($this); if (substr($class, -6) == 'Plugin') { $name = substr($class, 0, -6); - $path = INSTALLDIR . "/plugins/$name/locale"; + $path = common_config('plugins', 'locale_path'); + if (!$path) { + // @fixme this will fail for things installed in local/plugins + // ... but then so will web links so far. + $path = INSTALLDIR . "/plugins/$name/locale"; + } if (file_exists($path) && is_dir($path)) { bindtextdomain($name, $path); bind_textdomain_codeset($name, 'UTF-8'); From 06ca06fbd16f11e3c37d22f1f9c4b64c0089193c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 21:45:19 +0200 Subject: [PATCH 010/112] * L10/i18n review. * Translator hints added * whitespace updates --- plugins/AnonymousFave/AnonymousFavePlugin.php | 7 ++++++- plugins/AnonymousFave/Fave_tally.php | 16 ++++++---------- plugins/AnonymousFave/anondisfavor.php | 7 +++++-- plugins/AnonymousFave/anondisfavorform.php | 5 ----- plugins/AnonymousFave/anonfavor.php | 9 ++++++--- plugins/AnonymousFave/anonfavorform.php | 3 --- 6 files changed, 23 insertions(+), 24 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 72093e7f7e..6561114bab 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -188,7 +188,9 @@ class AnonymousFavePlugin extends Plugin { 'class' => 'notice-tally' ) ); - $out->raw(sprintf(_m("favored %d times"), $tally->count)); + // TRANS: Tally for number of times a notice was favored. + // TRANS: %d is the number of times a notice was favored. + $out->raw(sprintf(_m("favored once", "favored %d times", $tally->count), $tally->count)); $out->elementEnd('div'); } } @@ -216,6 +218,7 @@ class AnonymousFavePlugin extends Plugin { $id = $profile->insert(); if (!$id) { + // TRANS: Server exception. throw new ServerException(_m("Couldn't create anonymous user session.")); } @@ -226,6 +229,7 @@ class AnonymousFavePlugin extends Plugin { $result = $profile->update($orig); if (!$result) { + // TRANS: Server exception. throw new ServerException(_m("Couldn't create anonymous user session.")); } @@ -279,6 +283,7 @@ class AnonymousFavePlugin extends Plugin { 'author' => 'Zach Copley', 'homepage' => $url, 'rawdescription' => + // TRANS: Plugin description. _m('Allow anonymous users to favorite notices.')); return true; diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php index b350d5a0a5..f48a1e82b3 100644 --- a/plugins/AnonymousFave/Fave_tally.php +++ b/plugins/AnonymousFave/Fave_tally.php @@ -44,7 +44,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class Fave_tally extends Memcached_DataObject { ###START_AUTOCODE @@ -85,7 +84,6 @@ class Fave_tally extends Memcached_DataObject * * @return array list of key field names */ - function keys() { return array_keys($this->keyTypes()); @@ -103,7 +101,6 @@ class Fave_tally extends Memcached_DataObject * 'K' for primary key: for compound keys, add an entry for each component; * 'U' for unique keys: compound keys are not well supported here. */ - function keyTypes() { return array('notice_id' => 'K'); @@ -119,8 +116,6 @@ class Fave_tally extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - - function sequenceKey() { return array(false, false, false); @@ -133,7 +128,6 @@ class Fave_tally extends Memcached_DataObject * * @return User_flag_profile found object or null */ - function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Fave_tally', $kv); @@ -146,7 +140,6 @@ class Fave_tally extends Memcached_DataObject * * @return Fave_tally $tally the tally data object */ - static function increment($noticeID) { $tally = Fave_tally::ensureTally($noticeID); @@ -157,6 +150,8 @@ class Fave_tally extends Memcached_DataObject if (!$result) { $msg = sprintf( + // TRANS: Server exception. + // TRANS: %d is the notice ID (number). _m("Couldn't update favorite tally for notice ID %d."), $noticeID ); @@ -173,7 +168,6 @@ class Fave_tally extends Memcached_DataObject * * @return Fave_tally $tally the tally data object */ - static function decrement($noticeID) { $tally = Fave_tally::ensureTally($noticeID); @@ -185,6 +179,8 @@ class Fave_tally extends Memcached_DataObject if (!$result) { $msg = sprintf( + // TRANS: Server exception. + // TRANS: %d is the notice ID (number). _m("Couldn't update favorite tally for notice ID %d."), $noticeID ); @@ -203,7 +199,6 @@ class Fave_tally extends Memcached_DataObject * * @return Fave_tally the tally data object */ - static function ensureTally($noticeID) { $tally = Fave_tally::staticGet('notice_id', $noticeID); @@ -215,6 +210,8 @@ class Fave_tally extends Memcached_DataObject $result = $tally->insert(); if (!$result) { $msg = sprintf( + // TRANS: Server exception. + // TRANS: %d is the notice ID (number). _m("Couldn't create favorite tally for notice ID %d."), $noticeID ); @@ -233,7 +230,6 @@ class Fave_tally extends Memcached_DataObject * * @return integer $total total number of time the notice has been favored */ - static function countExistingFaves($noticeID) { $fave = new Fave(); diff --git a/plugins/AnonymousFave/anondisfavor.php b/plugins/AnonymousFave/anondisfavor.php index f39d5a7780..859e4bd427 100644 --- a/plugins/AnonymousFave/anondisfavor.php +++ b/plugins/AnonymousFave/anondisfavor.php @@ -1,5 +1,4 @@ clientError( + // TRANS: Client error. _m('Could not disfavor notice! Please make sure your browser has cookies enabled.') ); return; @@ -68,6 +68,7 @@ class AnonDisfavorAction extends RedirectingAction $token = $this->trimmed('token-' . $notice->id); if (!$token || $token != common_session_token()) { + // TRANS: Client error. $this->clientError(_m('There was a problem with your session token. Try again, please.')); return; } @@ -77,6 +78,7 @@ class AnonDisfavorAction extends RedirectingAction $fave->notice_id = $notice->id; if (!$fave->find(true)) { + // TRANS: Client error. $this->clientError(_m('This notice is not a favorite!')); return; } @@ -85,6 +87,7 @@ class AnonDisfavorAction extends RedirectingAction if (!$result) { common_log_db_error($fave, 'DELETE', __FILE__); + // TRANS: Server error. $this->serverError(_m('Could not delete favorite.')); return; } @@ -94,6 +97,7 @@ class AnonDisfavorAction extends RedirectingAction if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Title. $this->element('title', null, _m('Add to favorites')); $this->elementEnd('head'); $this->elementStart('body'); @@ -121,4 +125,3 @@ class AnonDisfavorAction extends RedirectingAction } } } - diff --git a/plugins/AnonymousFave/anondisfavorform.php b/plugins/AnonymousFave/anondisfavorform.php index c347ed7b43..38e2903db1 100644 --- a/plugins/AnonymousFave/anondisfavorform.php +++ b/plugins/AnonymousFave/anondisfavorform.php @@ -44,17 +44,14 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see DisFavorForm */ - class AnonDisfavorForm extends DisFavorForm { - /** * Constructor * * @param HTMLOutputter $out output channel * @param Notice $notice notice to disfavor */ - function __construct($out=null, $notice=null) { parent::__construct($out, $notice); @@ -65,10 +62,8 @@ class AnonDisfavorForm extends DisFavorForm * * @return string URL of the action */ - function action() { return common_local_url('AnonDisFavor'); } - } diff --git a/plugins/AnonymousFave/anonfavor.php b/plugins/AnonymousFave/anonfavor.php index 58570ced9a..ad13525a07 100644 --- a/plugins/AnonymousFave/anonfavor.php +++ b/plugins/AnonymousFave/anonfavor.php @@ -1,5 +1,4 @@ clientError( - _m('Could not favor notice! Please make sure your browser has cookies enabled.') + // TRANS: Client error. + $this->clientError( _m('Could not favor notice! Please make sure your browser has cookies enabled.') ); return; } @@ -68,18 +67,21 @@ class AnonFavorAction extends RedirectingAction $token = $this->trimmed('token-' . $notice->id); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error. $this->clientError(_m('There was a problem with your session token. Try again, please.')); return; } if ($profile->hasFave($notice)) { + // TRANS: Client error. $this->clientError(_m('This notice is already a favorite!')); return; } $fave = Fave::addNew($profile, $notice); if (!$fave) { + // TRANS: Server error. $this->serverError(_m('Could not create favorite.')); return; } @@ -89,6 +91,7 @@ class AnonFavorAction extends RedirectingAction if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Title. $this->element('title', null, _m('Disfavor favorite')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/plugins/AnonymousFave/anonfavorform.php b/plugins/AnonymousFave/anonfavorform.php index d73c2831d0..2fbd015e36 100644 --- a/plugins/AnonymousFave/anonfavorform.php +++ b/plugins/AnonymousFave/anonfavorform.php @@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see AnonDisfavorForm */ - class AnonFavorForm extends FavorForm { @@ -54,7 +53,6 @@ class AnonFavorForm extends FavorForm * @param HTMLOutputter $out output channel * @param Notice $notice notice to favor */ - function __construct($out=null, $notice=null) { parent::__construct($out, $notice); @@ -65,7 +63,6 @@ class AnonFavorForm extends FavorForm * * @return string URL of the action */ - function action() { return common_local_url('AnonFavor'); From 267d7b6bffc2dc094d525c36e251adcb61be32ef Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 21:53:20 +0200 Subject: [PATCH 011/112] * i18n review * onPluginVersion() added --- plugins/ForceGroup/ForceGroupPlugin.php | 28 ++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/plugins/ForceGroup/ForceGroupPlugin.php b/plugins/ForceGroup/ForceGroupPlugin.php index e0a04fccac..fb98644846 100644 --- a/plugins/ForceGroup/ForceGroupPlugin.php +++ b/plugins/ForceGroup/ForceGroupPlugin.php @@ -73,10 +73,36 @@ class ForceGroupPlugin extends Plugin Event::handle('EndJoinGroup', array($group, $user)); } } catch (Exception $e) { - throw new ServerException(sprintf(_('Could not join user %1$s to group %2$s.'), + // TRANS: Server exception. + // TRANS: %1$s is a user nickname, %2$s is a group nickname. + throw new ServerException(sprintf(_m('Could not join user %1$s to group %2$s.'), $user->nickname, $group->nickname)); } } } } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:ForceGroup'; + + $versions[] = array('name' => 'ForceGroup', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('Allows forced group memberships and forces all notices to appear in groups that users were forced in.')); + + return true; + } } From f415e2353d7cd7ac4c9b7ab77b7af393c040bb65 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:01:18 +0200 Subject: [PATCH 012/112] * i18n review * onPluginVersion --- .../GroupFavorited/GroupFavoritedPlugin.php | 24 +++++++++++++++++++ .../GroupFavorited/groupfavoritedaction.php | 7 +++--- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/plugins/GroupFavorited/GroupFavoritedPlugin.php b/plugins/GroupFavorited/GroupFavoritedPlugin.php index 68815530aa..27ce289c2e 100644 --- a/plugins/GroupFavorited/GroupFavoritedPlugin.php +++ b/plugins/GroupFavorited/GroupFavoritedPlugin.php @@ -76,4 +76,28 @@ class GroupFavoritedPlugin extends Plugin $action_name == 'groupfavorited', 'nav_group_group'); } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:GroupFavorited'; + + $versions[] = array('name' => 'GroupFavorited', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('This plugin adds a menu item for popular notices in groups.')); + + return true; + } } diff --git a/plugins/GroupFavorited/groupfavoritedaction.php b/plugins/GroupFavorited/groupfavoritedaction.php index 6803bea8d6..dbd37abbcf 100644 --- a/plugins/GroupFavorited/groupfavoritedaction.php +++ b/plugins/GroupFavorited/groupfavoritedaction.php @@ -32,27 +32,27 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - class GroupFavoritedAction extends ShowgroupAction { - /** * Title of the page * * @return string page title, with page number */ - function title() { if (!empty($this->group->fullname)) { + // @todo Create a core method to create this properly. i18n issue. $base = $this->group->fullname . ' (' . $this->group->nickname . ')'; } else { $base = $this->group->nickname; } if ($this->page == 1) { + // TRANS: %s is a group name. return sprintf(_m('Popular posts in %s group'), $base); } else { + // TRANS: %1$s is a group name, %2$s is a group number. return sprintf(_m('Popular posts in %1$s group, page %2$d'), $base, $this->page); @@ -66,7 +66,6 @@ class GroupFavoritedAction extends ShowgroupAction * * @return void */ - function showContent() { $groupId = intval($this->group->id); From 2188b6d501eb107ddc72301fbe3cc999d30d1788 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:11:38 +0200 Subject: [PATCH 013/112] * i18n review/translator documentation added. * onPluginVersion() added. --- plugins/ShareNotice/ShareNoticePlugin.php | 33 +++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/plugins/ShareNotice/ShareNoticePlugin.php b/plugins/ShareNotice/ShareNoticePlugin.php index d44e234529..8b94f83c8f 100644 --- a/plugins/ShareNotice/ShareNoticePlugin.php +++ b/plugins/ShareNotice/ShareNoticePlugin.php @@ -102,6 +102,7 @@ abstract class GenericNoticeShareTarget extends NoticeShareTarget protected function statusText() { + // TRANS: Leave this message unchanged. $pattern = _m('"%s"'); $url = $this->notice->bestUrl(); $suffix = ' ' . $url; @@ -125,6 +126,7 @@ class TwitterShareTarget extends GenericNoticeShareTarget public function getText() { + // TRANS: Tooltip for image to share a notice on Twitter. return _m('Share on Twitter'); } @@ -156,6 +158,8 @@ class StatusNetShareTarget extends GenericNoticeShareTarget public function getText() { $host = parse_url($this->baseurl, PHP_URL_HOST); + // TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). + // TRANS: %s is a host name. return sprintf(_m('Share on %s'), $host); } @@ -167,7 +171,6 @@ class StatusNetShareTarget extends GenericNoticeShareTarget return $this->baseurl . '/notice/new?' . http_build_query($args, null, '&'); } - } class FacebookShareTarget extends NoticeShareTarget @@ -179,6 +182,7 @@ class FacebookShareTarget extends NoticeShareTarget public function getText() { + // TRANS: Tooltip for image to share a notice on Facebook. return _m('Share on Facebook'); } @@ -186,9 +190,34 @@ class FacebookShareTarget extends NoticeShareTarget { $args = array( 'u' => $this->notice->bestUrl(), + // TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. 't' => sprintf(_m('"%s"'), $this->notice->content), ); return 'http://www.facebook.com/sharer.php?' . http_build_query($args, null, '&'); } -} \ No newline at end of file + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:ShareNotice'; + + $versions[] = array('name' => 'ShareNotice', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('This plugin allows sharing of notices to Twitter, Facebook and other platforms.')); + + return true; + } +} From 04b70219dbf9539f8eaca1e210a7062d72fe612f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:15:26 +0200 Subject: [PATCH 014/112] * i18n review/translator hints added. * whitespace updates. * added @todo because of missing plugin description. I wasn't able to find out what this does exactly quick enough. --- .../SlicedFavorites/SlicedFavoritesPlugin.php | 33 +++++++++++++++++-- .../SlicedFavorites/favoritedsliceaction.php | 4 +-- 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php index ed7f5ebb96..75b9847f44 100644 --- a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -33,13 +33,13 @@ class SlicedFavoritesPlugin extends Plugin * 'slices' => array( * // show only pop's notices on /favorited * 'default' => array('include' => array('pop')), - * + * * // show only son's notices on /favorited/blog * 'blog' => array('include' => array('son')), - * + * * // show all favorited notices except pop's and son's on /favorited/submitted * 'submitted' => array('exclude' => array('pop', 'son')), - * + * * // show all favorited notices on /favorited/everybody * 'everybody' => array(), * ) @@ -106,4 +106,31 @@ class SlicedFavoritesPlugin extends Plugin } return true; } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + * @todo Needs a proper plugin description. + */ +/* + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:SlicedFavorites'; + + $versions[] = array('name' => 'SlicedFavorites', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('Needs a proper plugin description.')); + + return true; + } +*/ } diff --git a/plugins/SlicedFavorites/favoritedsliceaction.php b/plugins/SlicedFavorites/favoritedsliceaction.php index 020688cfa4..9c8a9f53fb 100644 --- a/plugins/SlicedFavorites/favoritedsliceaction.php +++ b/plugins/SlicedFavorites/favoritedsliceaction.php @@ -32,7 +32,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - class FavoritedSliceAction extends FavoritedAction { private $includeUsers = array(), $excludeUsers = array(); @@ -46,7 +45,6 @@ class FavoritedSliceAction extends FavoritedAction * * @todo move queries from showContent() to here */ - function prepare($args) { parent::prepare($args); @@ -54,6 +52,7 @@ class FavoritedSliceAction extends FavoritedAction $this->slice = $this->arg('slice', 'default'); $data = array(); if (Event::handle('SlicedFavoritesGetSettings', array($this->slice, &$data))) { + // TRANS: Client exception. throw new ClientException(_m('Unknown favorites slice.')); } if (isset($data['include'])) { @@ -73,7 +72,6 @@ class FavoritedSliceAction extends FavoritedAction * * @return void */ - function showContent() { $slice = $this->sliceWhereClause(); From 3dd921332d4da25314f3ff62d5194d3a595c3004 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:21:12 +0200 Subject: [PATCH 015/112] Add plugin description thanks to Brion. --- plugins/SlicedFavorites/SlicedFavoritesPlugin.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php index 75b9847f44..d2407484da 100644 --- a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -115,9 +115,7 @@ class SlicedFavoritesPlugin extends Plugin * @param array &$versions array of version data arrays; see EVENTS.txt * * @return boolean hook value - * @todo Needs a proper plugin description. */ -/* function onPluginVersion(&$versions) { $url = 'http://status.net/wiki/Plugin:SlicedFavorites'; @@ -128,9 +126,8 @@ class SlicedFavoritesPlugin extends Plugin 'homepage' => $url, 'rawdescription' => // TRANS: Plugin description. - _m('Needs a proper plugin description.')); + _m('Shows timelines of popular notices for defined subsets of users.')); return true; } -*/ } From 08054e85fe4b47b6d28acb83b4c251be92f12316 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:34:59 +0200 Subject: [PATCH 016/112] Localisation updates from http://translatewiki.net. --- locale/af/LC_MESSAGES/statusnet.po | 526 ++++---- locale/ar/LC_MESSAGES/statusnet.po | 529 ++++---- locale/arz/LC_MESSAGES/statusnet.po | 529 ++++---- locale/bg/LC_MESSAGES/statusnet.po | 522 ++++---- locale/br/LC_MESSAGES/statusnet.po | 527 ++++---- locale/ca/LC_MESSAGES/statusnet.po | 527 ++++---- locale/cs/LC_MESSAGES/statusnet.po | 528 ++++---- locale/de/LC_MESSAGES/statusnet.po | 604 +++++---- locale/en_GB/LC_MESSAGES/statusnet.po | 527 ++++---- locale/eo/LC_MESSAGES/statusnet.po | 527 ++++---- locale/es/LC_MESSAGES/statusnet.po | 527 ++++---- locale/fa/LC_MESSAGES/statusnet.po | 526 ++++---- locale/fi/LC_MESSAGES/statusnet.po | 524 ++++---- locale/fr/LC_MESSAGES/statusnet.po | 609 +++++---- locale/ga/LC_MESSAGES/statusnet.po | 525 ++++---- locale/gl/LC_MESSAGES/statusnet.po | 527 ++++---- locale/hsb/LC_MESSAGES/statusnet.po | 529 ++++---- locale/hu/LC_MESSAGES/statusnet.po | 526 ++++---- locale/ia/LC_MESSAGES/statusnet.po | 544 ++++---- locale/is/LC_MESSAGES/statusnet.po | 522 ++++---- locale/it/LC_MESSAGES/statusnet.po | 527 ++++---- locale/ja/LC_MESSAGES/statusnet.po | 526 ++++---- locale/ka/LC_MESSAGES/statusnet.po | 526 ++++---- locale/ko/LC_MESSAGES/statusnet.po | 524 ++++---- locale/mk/LC_MESSAGES/statusnet.po | 544 ++++---- locale/nb/LC_MESSAGES/statusnet.po | 526 ++++---- locale/nl/LC_MESSAGES/statusnet.po | 551 ++++---- locale/nn/LC_MESSAGES/statusnet.po | 522 ++++---- locale/pl/LC_MESSAGES/statusnet.po | 611 +++++---- locale/pt/LC_MESSAGES/statusnet.po | 527 ++++---- locale/pt_BR/LC_MESSAGES/statusnet.po | 527 ++++---- locale/ru/LC_MESSAGES/statusnet.po | 528 ++++---- locale/statusnet.pot | 513 ++++---- locale/sv/LC_MESSAGES/statusnet.po | 527 ++++---- locale/te/LC_MESSAGES/statusnet.po | 525 ++++---- locale/tr/LC_MESSAGES/statusnet.po | 518 ++++---- locale/uk/LC_MESSAGES/statusnet.po | 1148 +++++++++-------- locale/zh_CN/LC_MESSAGES/statusnet.po | 539 ++++---- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/pl/LC_MESSAGES/APC.po | 31 + .../AnonymousFave/locale/AnonymousFave.pot | 98 ++ .../locale/uk/LC_MESSAGES/AutoSandbox.po | 14 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 10 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 26 + .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 27 + .../locale/de/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/fr/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/zh_CN/LC_MESSAGES/BlogspamNet.po | 27 + .../uk/LC_MESSAGES/CasAuthentication.po | 12 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 28 + .../Comet/locale/zh_CN/LC_MESSAGES/Comet.po | 27 + .../locale/fr/LC_MESSAGES/DiskCache.po | 28 + plugins/Disqus/locale/Disqus.pot | 12 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 18 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 18 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 18 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 18 +- .../locale/gl/LC_MESSAGES/Facebook.po | 540 ++++++++ .../locale/uk/LC_MESSAGES/Facebook.po | 42 +- .../locale/zh_CN/LC_MESSAGES/Facebook.po | 12 +- plugins/ForceGroup/locale/ForceGroup.pot | 31 + .../locale/uk/LC_MESSAGES/Geonames.po | 12 +- .../locale/de/LC_MESSAGES/Gravatar.po | 11 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 14 +- .../GroupFavorited/locale/GroupFavorited.pot | 48 + .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 12 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 10 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 58 + .../locale/uk/LC_MESSAGES/Mapstraction.po | 12 +- .../locale/uk/LC_MESSAGES/Memcache.po | 12 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 40 + .../locale/uk/LC_MESSAGES/MobileProfile.po | 10 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 6 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 12 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 101 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 67 +- plugins/OpenID/locale/OpenID.pot | 26 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 59 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 78 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 12 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 12 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 12 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 10 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 14 +- plugins/ShareNotice/locale/ShareNotice.pot | 48 + .../locale/SlicedFavorites.pot | 27 + .../locale/uk/LC_MESSAGES/SubMirror.po | 12 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 13 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 11 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 10 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 10 +- plugins/TinyMCE/locale/TinyMCE.pot | 4 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 10 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 10 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 100 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 40 +- plugins/YammerImport/locale/YammerImport.pot | 83 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 285 ++++ .../locale/ia/LC_MESSAGES/YammerImport.po | 285 ++++ .../locale/mk/LC_MESSAGES/YammerImport.po | 284 ++++ .../locale/nl/LC_MESSAGES/YammerImport.po | 285 ++++ .../locale/uk/LC_MESSAGES/YammerImport.po | 294 +++++ 122 files changed, 14743 insertions(+), 10075 deletions(-) create mode 100644 plugins/APC/locale/gl/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/pl/LC_MESSAGES/APC.po create mode 100644 plugins/AnonymousFave/locale/AnonymousFave.pot create mode 100644 plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/Comet/locale/fr/LC_MESSAGES/Comet.po create mode 100644 plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po create mode 100644 plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po create mode 100644 plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po create mode 100644 plugins/ForceGroup/locale/ForceGroup.pot create mode 100644 plugins/GroupFavorited/locale/GroupFavorited.pot create mode 100644 plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po create mode 100644 plugins/ShareNotice/locale/ShareNotice.pot create mode 100644 plugins/SlicedFavorites/locale/SlicedFavorites.pot create mode 100644 plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po create mode 100644 plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po create mode 100644 plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po create mode 100644 plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po create mode 100644 plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index b52613afae..069438eb2e 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:34+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:51+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "Stoor toegangsinstellings" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Stoor" @@ -110,7 +110,7 @@ msgstr "Hierdie bladsy bestaan nie." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Onbekende gebruiker." @@ -346,7 +346,7 @@ msgid "This status is already a favorite." msgstr "Hierdie status is reeds 'n gunsteling." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Dit was nie moontlik om 'n gunsteling te skep nie." @@ -466,18 +466,18 @@ msgid "Group not found." msgstr "Nie gevind nie." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "U is reeds 'n lid van die groep." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Dit was nie moontlik om die groep by te werk nie." @@ -489,7 +489,7 @@ msgstr "U is nie 'n lid van die groep nie." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kon nie die groep skep nie." @@ -603,7 +603,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Gebruiker" @@ -617,7 +617,7 @@ msgstr "Bynaam" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Wagwoord" @@ -647,12 +647,12 @@ msgid "No such notice." msgstr "Die kennisgewing bestaan nie." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "U kan nie u eie kennisgewings herhaal nie." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "U het reeds die kennisgewing herhaal." @@ -763,7 +763,7 @@ msgstr "Ongeldige grootte." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -795,7 +795,7 @@ msgid "Preview" msgstr "Voorskou" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Skrap" @@ -878,7 +878,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blokkeer hierdie gebruiker" @@ -897,8 +897,8 @@ msgstr "" #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Die groep bestaan nie." @@ -1018,7 +1018,7 @@ msgstr "U is nie die eienaar van hierdie applikasie nie." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1078,7 +1078,7 @@ msgid "Do not delete this notice" msgstr "Moenie hierdie kennisgewing verwyder nie" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Verwyder hierdie kennisgewing" @@ -1107,7 +1107,7 @@ msgstr "Verwyder die gebruiker" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Ontwerp" @@ -1237,7 +1237,7 @@ msgstr "Stel terug na standaard" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Stoor" @@ -1357,7 +1357,7 @@ msgid "Could not update group." msgstr "Dit was nie moontlik om die groep by te werk nie." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Dit was nie moontlik om die aliasse te skep nie." @@ -1411,7 +1411,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Kanselleer" @@ -1606,7 +1606,7 @@ msgstr "Geen inkomende e-posadres." msgid "This notice is already a favorite!" msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor favorite" msgstr "Voeg by gunstelinge" @@ -1913,7 +1913,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tydlyn" @@ -2178,7 +2178,7 @@ msgstr "U volg hierdie gebruiker:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2281,7 +2281,7 @@ msgid "You must be logged in to leave a group." msgstr "U moet aanteken alvorens u 'n groep kan verlaat." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "U is nie 'n lid van daardie groep nie." @@ -2502,14 +2502,14 @@ msgid "New message" msgstr "Nuwe boodskap" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "U kan nie 'n boodskap aan hierdie gebruiker stuur nie." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Geen inhoud nie!" @@ -2518,7 +2518,7 @@ msgid "No recipient specified." msgstr "Geen ontvanger gespesifiseer nie." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2529,12 +2529,12 @@ msgstr "Boodskap is gestuur." #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Direkte boodskappe aan %s" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-fout" @@ -2670,8 +2670,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 #, fuzzy msgid "Not a supported data format." msgstr "Nie-ondersteunde formaat." @@ -3034,7 +3034,7 @@ msgstr "Volledige naam" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Tuisblad" @@ -3434,7 +3434,7 @@ msgstr "Dieselfde as wagwoord hierbo" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-pos" @@ -3574,7 +3574,7 @@ msgstr "U kan nie u eie kennisgewings herhaal nie." msgid "You already repeated that notice." msgstr "U het reeds die kennisgewing herhaal." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Herhalend" @@ -3713,13 +3713,13 @@ msgid "Name" msgstr "Naam" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisasie" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrywing" @@ -4486,7 +4486,7 @@ msgstr "%s volg niemand nie." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4610,7 +4610,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" @@ -4804,7 +4804,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Opdaterings van %1$s op %2$s." @@ -4853,7 +4853,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Weergawe" @@ -4861,30 +4861,26 @@ msgstr "Weergawe" msgid "Author(s)" msgstr "Outeur(s)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 #, fuzzy msgid "Favor" msgstr "Gunstelinge" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4893,20 +4889,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Ongeldige grootte." @@ -4928,13 +4924,28 @@ msgstr "Nie lid van die groep nie." msgid "Group leave failed." msgstr "Groepsprofiel" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Fout tydens stoor van gebruiker; ongeldig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Aansluit" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4958,19 +4969,19 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "U inkomende boodskappe" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 #, fuzzy msgid "Could not insert message." msgstr "Kan nie boodskap verwerk nie." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "Kan nie boodskap verwerk nie." @@ -5024,32 +5035,32 @@ msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5108,13 +5119,9 @@ msgid "Could not delete subscription." msgstr "" "Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5125,61 +5132,61 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom by %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kon nie die groep skep nie." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 #, fuzzy msgid "Could not set group URI." msgstr "Kon nie die groep skep nie." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 #, fuzzy msgid "Could not set group membership." msgstr "Kon nie die groep skep nie." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Kon nie die profiel stoor nie." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Verander u profiel gegewens" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 #, fuzzy msgid "Upload an avatar" msgstr "Die opdatering van die avatar het gefaal." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Verander u wagwoord" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Ontwerp u profiel" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Ander opsies" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Ander" @@ -5195,190 +5202,191 @@ msgid "Untitled page" msgstr "" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Persoonlik" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Verander u wagwoord" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Konnekteer" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Beheer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Uitnodig" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Meld by die webwerf aan" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Teken uit" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skep 'n gebruiker" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registreer" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Meld by die webwerf aan" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Teken in" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help my!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Soek na mense of teks" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Soek" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Verwyder kennisgewing" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 #, fuzzy msgid "Local views" msgstr "Lokaal" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Populêre kennisgewings" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Help" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Aangaande" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Gewilde vrae" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Gebruiksvoorwaardes" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privaatheid" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Bron" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontak" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Aanpor" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "" @@ -5386,7 +5394,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5394,7 +5402,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5403,7 +5411,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5412,71 +5420,71 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "Registratie" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Na" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Voor" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5612,7 +5620,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5629,194 +5637,214 @@ msgid "Icon for this application" msgstr "Moenie die applikasie verwyder nie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Skrap applikasie" +msgstr[1] "Skrap applikasie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 #, fuzzy msgid "Describe your application" msgstr "Skrap applikasie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "U is nie die eienaar van hierdie applikasie nie." #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Bron" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "U is nie die eienaar van hierdie applikasie nie." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Webblaaier" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lees-alleen" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lees-skryf" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Kanselleer" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 #, fuzzy msgid "read-write" msgstr "Lees-skryf" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 #, fuzzy msgid "read-only" msgstr "Lees-alleen" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Verwyder" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Aanhangsels" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Outeur" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Verskaffer" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 #, fuzzy msgid "Notices where this attachment appears" msgstr "Etikette vir hierdie aanhangsel" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etikette vir hierdie aanhangsel" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Wagwoord wysiging het misluk" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Wagwoord verandering word nie toegelaat nie" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkeer" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Opdragresultate" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-fout" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Opdrag voltooi" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 #, fuzzy msgid "Command failed" msgstr "Opdrag voltooi" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5825,7 +5853,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5834,52 +5862,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Volle naam: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Ligging: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Tuisblad: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Oor: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5888,7 +5917,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5896,124 +5925,124 @@ msgstr "" "gestuur." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 #, fuzzy msgid "Error repeating notice." msgstr "U kan nie u eie kennisgewings herhaal nie." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Fout tydens stoor van gebruiker; ongeldig." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "Opdrag voltooi" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "Geen bevestigingskode." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "Geen bevestigingskode." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 #, fuzzy msgid "Can't turn on notification." msgstr "U kan nie u eie kennisgewings herhaal nie." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "U volg hierdie gebruiker:" @@ -6021,7 +6050,7 @@ msgstr "U volg hierdie gebruiker:" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "U volg hierdie gebruiker:" @@ -6029,7 +6058,7 @@ msgstr[1] "U volg hierdie gebruikers:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Hierdie gebruiker volg u:" @@ -6037,7 +6066,7 @@ msgstr "Hierdie gebruiker volg u:" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Hierdie gebruiker volg u:" @@ -6045,21 +6074,21 @@ msgstr[1] "Hierdie gebruikers volg u:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "U is nie 'n lid van enige groep nie." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "U is 'n lid van hierdie groep:" msgstr[1] "U is 'n lid van hierdie groepe:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6101,41 +6130,62 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Geen bevestigingskode." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Gaan na die installeerder." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Konnekteer" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "Skrap applikasie" @@ -6158,12 +6208,12 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor this notice" msgstr "Verwyder hierdie kennisgewing" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 #, fuzzy msgid "Favor this notice" msgstr "Verwyder hierdie kennisgewing" @@ -6184,7 +6234,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Vriende van vriende (FOAF)" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6620,7 +6670,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "van" @@ -6770,56 +6820,56 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "O" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "op" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in konteks" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Herhaal deur" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 #, fuzzy msgid "Reply to this notice" msgstr "Verwyder hierdie kennisgewing" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Antwoord" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Hierdie kennisgewing is verwyder." @@ -6895,7 +6945,7 @@ msgid "Tags in %s's notices" msgstr "Etikette in die aankondigings van %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Onbekend" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 404488ab3f..8a50f1da89 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:35+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:54+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "حفظ إعدادت الوصول" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "احفظ" @@ -114,7 +114,7 @@ msgstr "لا صفحة كهذه." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "لا مستخدم كهذا." @@ -350,7 +350,7 @@ msgid "This status is already a favorite." msgstr "هذه الحالة مفضلة بالفعل." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضلة." @@ -467,20 +467,20 @@ msgid "Group not found." msgstr "المجموعة غير موجودة." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "أنت بالفعل عضو في هذه المجموعة" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "لم تمنع هذا المستخدم." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." @@ -492,7 +492,7 @@ msgstr "لست عضوًا في هذه المجموعة" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s." @@ -606,7 +606,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "الحساب" @@ -620,7 +620,7 @@ msgstr "الاسم المستعار" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمة السر" @@ -652,12 +652,12 @@ msgid "No such notice." msgstr "لا إشعار كهذا." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "لا يمكنك تكرار ملحوظتك الخاصة." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "كرر بالفعل هذه الملاحظة." @@ -768,7 +768,7 @@ msgstr "حجم غير صالح." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "أفتار" @@ -799,7 +799,7 @@ msgid "Preview" msgstr "معاينة" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "احذف" @@ -883,7 +883,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -902,8 +902,8 @@ msgstr "فشل حفظ معلومات المنع." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "لا مجموعة كهذه." @@ -1021,7 +1021,7 @@ msgstr "أنت لست مالك هذا التطبيق." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1081,7 +1081,7 @@ msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1110,7 +1110,7 @@ msgstr "احذف هذا المستخدم" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "التصميم" @@ -1237,7 +1237,7 @@ msgstr "ارجع إلى المبدئي" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1360,7 +1360,7 @@ msgid "Could not update group." msgstr "تعذر تحديث المجموعة." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -1414,7 +1414,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "ألغِ" @@ -1606,7 +1606,7 @@ msgstr "لا عنوان بريد إلكتروني وارد." msgid "This notice is already a favorite!" msgstr "هذا الإشعار مفضلة مسبقًا!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "ألغِ تفضيل المفضلة" @@ -1901,7 +1901,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" @@ -2173,7 +2173,7 @@ msgstr "لست مشتركًا بأحد." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2277,7 +2277,7 @@ msgid "You must be logged in to leave a group." msgstr "يجب أن تلج لتغادر مجموعة." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "لست عضوا في تلك المجموعة." @@ -2497,14 +2497,14 @@ msgid "New message" msgstr "رسالة جديدة" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "لا محتوى!" @@ -2513,7 +2513,7 @@ msgid "No recipient specified." msgstr "لا مستلم حُدّد." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2524,12 +2524,12 @@ msgstr "أُرسلت الرسالة" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "رسالة مباشرة ل%s تم إرسالها." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "خطأ أجاكس" @@ -2662,8 +2662,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -3014,7 +3014,7 @@ msgstr "الاسم الكامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحة الرئيسية" @@ -3403,7 +3403,7 @@ msgstr "نفس كلمة السر أعلاه. مطلوب." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "البريد الإلكتروني" @@ -3538,7 +3538,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية." msgid "You already repeated that notice." msgstr "أنت كررت هذه الملاحظة بالفعل." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "مكرر" @@ -3672,13 +3672,13 @@ msgid "Name" msgstr "الاسم" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "المنظمة" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "الوصف" @@ -4446,7 +4446,7 @@ msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." msgid "Jabber" msgstr "جابر" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "رسائل قصيرة" @@ -4569,7 +4569,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" @@ -4755,7 +4755,7 @@ msgstr "جرّب [البحث عن مجموعات](%%action.groupsearch%%) وال #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, fuzzy, php-format msgid "Updates from %1$s on %2$s!" msgstr "الإشعارات التي فضلها %1$s في %2$s!" @@ -4806,7 +4806,7 @@ msgid "Plugins" msgstr "الملحقات" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "النسخة" @@ -4814,29 +4814,25 @@ msgstr "النسخة" msgid "Author(s)" msgstr "المؤلف(ون)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "فضّل" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4845,20 +4841,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "حجم غير صالح." @@ -4878,13 +4874,28 @@ msgstr "ليس جزءا من المجموعة." msgid "Group leave failed." msgstr "ترك المجموعة فشل." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "انضم" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4907,17 +4918,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "أنت ممنوع من إرسال رسائل مباشرة." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "تعذّر إدراج الرسالة." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "تعذّر تحليل الرسالة." @@ -4971,33 +4982,33 @@ msgid "Problem saving notice." msgstr "مشكلة أثناء حفظ الإشعار." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكلة أثناء حفظ الإشعار." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5049,13 +5060,9 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5066,57 +5073,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم في %1$s يا @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعة." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "تعذّر إنشاء المجموعة." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "تعذّر ضبط عضوية المجموعة." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "تعذر تحديث المجموعة المحلية." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "ارفع أفتارًا" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "غير كلمة سرّك" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "صمّم ملفك الشخصي" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "خيارات أخرى" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "أخرى" @@ -5132,186 +5139,187 @@ msgid "Untitled page" msgstr "صفحة غير مُعنونة" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "ضبط الموقع الأساسي" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصي ومسار الأصدقاء الزمني" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "الصفحة الشخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير بريدك الإلكتروني وكلمة سرّك وأفتارك وملفك الشخصي" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "اتصل بالخدمات" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "لُج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نصوص" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "إشعار الموقع" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "المشاهدات المحلية" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "إشعار الصفحة" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "ضبط الموقع الأساسي" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "مساعدة" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "عن" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "الأسئلة المكررة" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "الشروط" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "خصوصية" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "المصدر" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "اتصل" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "الجسر" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "رخصة برنامج StatusNet" @@ -5319,7 +5327,7 @@ msgstr "رخصة برنامج StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5329,7 +5337,7 @@ msgstr "" "broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5338,7 +5346,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5350,71 +5358,71 @@ msgstr "" "agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "رخصة محتوى الموقع" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "تسجيل" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "بعد" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "قبل" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5542,7 +5550,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5557,192 +5565,216 @@ msgid "Icon for this application" msgstr "أيقونة لهذا التطبيق" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "صف تطبيقك" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "صف تطبيقك" +msgstr[1] "صف تطبيقك" +msgstr[2] "صف تطبيقك" +msgstr[3] "صف تطبيقك" +msgstr[4] "صف تطبيقك" +msgstr[5] "صف تطبيقك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "صف تطبيقك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "مسار صفحة هذا التطبيق" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "مسار المصدر" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "أيقونة لهذا التطبيق" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "مسار صفحة هذا التطبيق" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "متصفح" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "ألغِ" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "أزل" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "مرفقات" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "المؤلف" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "المزود" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 #, fuzzy msgid "Notices where this attachment appears" msgstr "وسوم هذا المرفق" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "تغيير كلمة السر فشل" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "تغيير كلمة السر غير مسموح به" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "امنع" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "نتائج الأمر" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "خطأ أجاكس" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "اكتمل الأمر" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "فشل الأمر" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "لا ملف بهذه الهوية." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "ليس للمستخدم إشعار أخير" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "تعذّر إيجاد المستخدم الهدف." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 #, fuzzy msgid "Sorry, this command is not yet implemented." msgstr "الأمر لم يُجهزّ بعد." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "أرسل التنبيه" @@ -5751,7 +5783,7 @@ msgstr "أرسل التنبيه" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5763,53 +5795,54 @@ msgstr "" "الإشعارات: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 #, fuzzy msgid "Notice marked as fave." msgstr "هذا الإشعار مفضلة مسبقًا!" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "الاسم الكامل: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "الموقع: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "الصفحة الرئيسية: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "عن: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5818,132 +5851,132 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 #, fuzzy msgid "Error sending direct message." msgstr "أنت ممنوع من إرسال رسائل مباشرة." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "الإشعار من %s مكرر" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "خطأ تكرار الإشعار." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "رُد على رسالة %s" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "خطأ أثناء حفظ الإشعار." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "الأمر لم يُجهزّ بعد." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "الإشعار مُطفأ." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "تعذّر إطفاء الإشعارات." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "الإشعار يعمل." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "تعذّر تشغيل الإشعار." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "لست مُشتركًا بأي أحد." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "لست مشتركًا بأحد." @@ -5955,14 +5988,14 @@ msgstr[5] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "لا أحد مشترك بك." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "لا أحد مشترك بك." @@ -5974,14 +6007,14 @@ msgstr[5] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "لست عضوًا في أي مجموعة." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "لست عضوًا في أي مجموعة." @@ -5992,7 +6025,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6072,40 +6105,62 @@ msgstr "" "tracks - لم يطبق بعد.\n" "tracking - لم يطبق بعد.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "لا رمز تأكيد." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "محادثة فورية" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "رسائل قصيرة" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "تحديثات عبر الرسائل القصيرة" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "اتصالات" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "تطبيقات OAuth" @@ -6127,11 +6182,11 @@ msgstr "تستطيع رفع صورتك الشخصية. أقصى حجم للمل msgid "Design defaults restored." msgstr "استعيدت مبدئيات التصميم." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "ألغِ تفضيل هذا الإشعار" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "فضّل هذا الإشعار" @@ -6151,7 +6206,7 @@ msgstr "أتوم" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6609,7 +6664,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "من" @@ -6756,55 +6811,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "ش" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ج" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "ر" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "غ" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "في" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "في السياق" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "مكرر بواسطة" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -6876,7 +6931,7 @@ msgid "Tags in %s's notices" msgstr "وسوم في إشعارات %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "غير معروفة" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 50c8aa2a30..3d7eed84ad 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:36+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:55+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "اذف إعدادت الموقع" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -118,7 +118,7 @@ msgstr "لا وسم كهذا." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "لا مستخدم كهذا." @@ -354,7 +354,7 @@ msgid "This status is already a favorite." msgstr "الحاله دى موجوده فعلا فى التفضيلات." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضله." @@ -471,20 +471,20 @@ msgid "Group not found." msgstr "لم يوجد." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "انت اصلا عضو فى الجروپ ده" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "لم تمنع هذا المستخدم." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ما نفعش يضم %1$s للجروپ %2$s." @@ -497,7 +497,7 @@ msgstr "لست عضوا فى تلك المجموعه." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s." @@ -613,7 +613,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "الحساب" @@ -627,7 +627,7 @@ msgstr "الاسم المستعار" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمه السر" @@ -659,12 +659,12 @@ msgid "No such notice." msgstr "لا إشعار كهذا." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "الملاحظه اتكررت فعلا." @@ -776,7 +776,7 @@ msgstr "حجم غير صالح." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "أفتار" @@ -807,7 +807,7 @@ msgid "Preview" msgstr "عاين" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "احذف" @@ -893,7 +893,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -912,8 +912,8 @@ msgstr "فشل حفظ معلومات المنع." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "لا مجموعه كهذه." @@ -1032,7 +1032,7 @@ msgstr "انت مش بتملك الapplication دى." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1094,7 +1094,7 @@ msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1123,7 +1123,7 @@ msgstr "احذف هذا المستخدم" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "التصميم" @@ -1251,7 +1251,7 @@ msgstr "ارجع إلى المبدئي" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1375,7 +1375,7 @@ msgid "Could not update group." msgstr "تعذر تحديث المجموعه." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -1429,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1630,7 +1630,7 @@ msgstr "لا عنوان بريد إلكترونى." msgid "This notice is already a favorite!" msgstr "هذا الإشعار مفضله مسبقًا!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "ألغِ تفضيل المفضلة" @@ -1930,7 +1930,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" @@ -2199,7 +2199,7 @@ msgstr "لست مشتركًا بأحد." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2306,7 +2306,7 @@ msgid "You must be logged in to leave a group." msgstr "يجب أن تكون والجًا لتنشئ مجموعه." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "لست عضوا فى تلك المجموعه." @@ -2525,15 +2525,15 @@ msgid "New message" msgstr "رساله جديدة" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 #, fuzzy msgid "You can't send a message to this user." msgstr "أرسل رساله مباشره إلى هذا المستخدم" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "لا محتوى!" @@ -2542,7 +2542,7 @@ msgid "No recipient specified." msgstr "لا مستلم حُدّد." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2553,12 +2553,12 @@ msgstr "أُرسلت الرسالة" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "رساله مباشره اتبعتت لـ%s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "خطأ أجاكس" @@ -2689,8 +2689,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr " مش نظام بيانات مدعوم." @@ -3040,7 +3040,7 @@ msgstr "الاسم الكامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحه الرئيسية" @@ -3429,7 +3429,7 @@ msgstr "نفس كلمه السر أعلاه. مطلوب." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "البريد الإلكتروني" @@ -3564,7 +3564,7 @@ msgstr "ما ينفعش تكرر الملاحظه بتاعتك." msgid "You already repeated that notice." msgstr "انت عيدت الملاحظه دى فعلا." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "مكرر" @@ -3699,13 +3699,13 @@ msgid "Name" msgstr "الاسم" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "المنظمه" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "الوصف" @@ -4483,7 +4483,7 @@ msgstr "لست مُشتركًا بأى أحد." msgid "Jabber" msgstr "جابر" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "رسائل قصيرة" @@ -4606,7 +4606,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" @@ -4792,7 +4792,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, fuzzy, php-format msgid "Updates from %1$s on %2$s!" msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" @@ -4842,7 +4842,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "النسخه" @@ -4850,29 +4850,25 @@ msgstr "النسخه" msgid "Author(s)" msgstr "المؤلف/ين" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "فضّل" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4881,20 +4877,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "حجم غير صالح." @@ -4914,13 +4910,28 @@ msgstr "مش جزء من الجروپ." msgid "Group leave failed." msgstr "الخروج من الجروپ فشل." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "انضم" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4944,17 +4955,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "أنت ممنوع من إرسال رسائل مباشره." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "تعذّر إدراج الرساله." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "تعذّر تحليل الرساله." @@ -5008,33 +5019,33 @@ msgid "Problem saving notice." msgstr "مشكله أثناء حفظ الإشعار." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكله أثناء حفظ الإشعار." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5085,13 +5096,9 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5102,58 +5109,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم فى %1$s يا @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعه." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "تعذّر إنشاء المجموعه." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "تعذّر ضبط عضويه المجموعه." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "تعذّر حفظ الاشتراك." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "ارفع أفتارًا" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "غير كلمه سرّك" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "صمّم ملفك الشخصي" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "خيارات أخرى" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "أخرى" @@ -5169,130 +5176,130 @@ msgid "Untitled page" msgstr "صفحه غير مُعنونة" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "ضبط الموقع الأساسي" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصى ومسار الأصدقاء الزمني" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "شخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير كلمه سرّك" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "كونيكشونات (Connections)" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "سمه الموقع." #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "الشعار" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ مجموعه جديدة" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "لُج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "مساعدة" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نص" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5300,68 +5307,69 @@ msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "إشعار الموقع" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "المشاهدات المحلية" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "إشعار الصفحة" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "ضبط الموقع الأساسي" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "مساعدة" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "عن" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "الأسئله المكررة" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "الشروط" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "خصوصية" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "المصدر" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "اتصل" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "نبّه" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 #, fuzzy msgid "StatusNet software license" msgstr "رخصه محتوى الموقع" @@ -5370,7 +5378,7 @@ msgstr "رخصه محتوى الموقع" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5380,7 +5388,7 @@ msgstr "" "broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5389,7 +5397,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5401,71 +5409,71 @@ msgstr "" "agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "رخصه محتوى الموقع" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "المنظمه" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "بعد" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "قبل" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5599,7 +5607,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5616,191 +5624,215 @@ msgid "Icon for this application" msgstr "ما فيش application زى كده." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "اوصف الapplication بتاعتك" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "اوصف الapplication بتاعتك" +msgstr[1] "اوصف الapplication بتاعتك" +msgstr[2] "اوصف الapplication بتاعتك" +msgstr[3] "اوصف الapplication بتاعتك" +msgstr[4] "اوصف الapplication بتاعتك" +msgstr[5] "اوصف الapplication بتاعتك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "اوصف الapplication بتاعتك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "انت مش بتملك الapplication دى." #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Source URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "انت مش بتملك الapplication دى." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "ألغِ" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "استرجع" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "مرفقات" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "المؤلف" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "المزود" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 #, fuzzy msgid "Notices where this attachment appears" msgstr "وسوم هذا المرفق" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "تغيير الپاسوورد فشل" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "تغيير الپاسوورد مش مسموح" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "امنع" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "نتائج الأمر" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "خطأ أجاكس" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "اكتمل الأمر" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "فشل الأمر" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "لا ملف بهذه الهويه." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "ليس للمستخدم إشعار أخير" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "تعذّر إيجاد المستخدم الهدف." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "أرسل التنبيه" @@ -5809,7 +5841,7 @@ msgstr "أرسل التنبيه" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5821,53 +5853,54 @@ msgstr "" "الإشعارات: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 #, fuzzy msgid "Notice marked as fave." msgstr "هذا الإشعار مفضله مسبقًا!" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "الاسم الكامل: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "الموقع: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "الصفحه الرئيسية: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "عن: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5876,136 +5909,136 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 #, fuzzy msgid "Error sending direct message." msgstr "أنت ممنوع من إرسال رسائل مباشره." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "الإشعار من %s مكرر" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "خطأ تكرار الإشعار." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "رُد على رساله %s" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "خطأ أثناء حفظ الإشعار." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "اكتمل الأمر" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "لا رمز تأكيد." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "لا رمز تأكيد." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 #, fuzzy msgid "Can't turn on notification." msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "لست مُشتركًا بأى أحد." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "لست مشتركًا بأحد." @@ -6017,14 +6050,14 @@ msgstr[5] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "لا أحد مشترك بك." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "لا أحد مشترك بك." @@ -6036,14 +6069,14 @@ msgstr[5] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "لست عضوًا فى أى مجموعه." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "لست عضوًا فى أى مجموعه." @@ -6054,7 +6087,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6096,40 +6129,62 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "لا رمز تأكيد." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "محادثه فورية" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "رسائل قصيرة" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "كونيكشونات (Connections)" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "OAuth applications" @@ -6151,11 +6206,11 @@ msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للمل msgid "Design defaults restored." msgstr "استعيدت مبدئيات التصميم." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "ألغِ تفضيل هذا الإشعار" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "فضّل هذا الإشعار" @@ -6175,7 +6230,7 @@ msgstr "أتوم" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6612,7 +6667,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "من" @@ -6759,55 +6814,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "ش" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ج" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "ر" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "غ" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "في" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "فى السياق" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "متكرر من" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -6879,7 +6934,7 @@ msgid "Tags in %s's notices" msgstr "ليس للمستخدم إشعار أخير" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "مش معروف" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 450230e476..9cfc38adaa 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:37+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:56+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "Запазване настройките за достъп" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Запазване" @@ -111,7 +111,7 @@ msgstr "Няма такака страница." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Няма такъв потребител" @@ -347,7 +347,7 @@ msgid "This status is already a favorite." msgstr "Тази бележка вече е отбелязана като любима." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Грешка при отбелязване като любима." @@ -463,19 +463,19 @@ msgid "Group not found." msgstr "Групата не е открита." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Вече членувате в тази група." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "Не сте блокирали този потребител." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Грешка при обновяване на групата." @@ -487,7 +487,7 @@ msgstr "Не членувате в тази група." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Грешка при създаване на групата." @@ -602,7 +602,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Сметка" @@ -616,7 +616,7 @@ msgstr "Псевдоним" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Парола" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "Няма такава бележка." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Не можете да повтаряте собствени бележки." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Вече сте повторили тази бележка." @@ -761,7 +761,7 @@ msgstr "Неправилен размер." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватар" @@ -793,7 +793,7 @@ msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Изтриване" @@ -876,7 +876,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -895,8 +895,8 @@ msgstr "Грешка при записване данните за блокир #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Няма такава група" @@ -1013,7 +1013,7 @@ msgstr "Не сте собственик на това приложение." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -1073,7 +1073,7 @@ msgid "Do not delete this notice" msgstr "Да не се изтрива бележката" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -1102,7 +1102,7 @@ msgstr "Изтриване на този потребител" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 #, fuzzy msgid "Design" msgstr "Версия" @@ -1237,7 +1237,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Запазване" @@ -1366,7 +1366,7 @@ msgid "Could not update group." msgstr "Грешка при обновяване на групата." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелязване като любима." @@ -1423,7 +1423,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Отказ" @@ -1617,7 +1617,7 @@ msgstr "Добавен е нов входящ адрес на е-поща." msgid "This notice is already a favorite!" msgstr "Тази бележка вече е отбелязана като любима!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Добавяне към любимите" @@ -1920,7 +1920,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Поток на %s" @@ -2193,7 +2193,7 @@ msgstr "Вече сте абонирани за следните потреби #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2328,7 +2328,7 @@ msgid "You must be logged in to leave a group." msgstr "За напуснете група, трябва да сте влезли." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Не членувате в тази група." @@ -2556,14 +2556,14 @@ msgid "New message" msgstr "Ново съобщение" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Не може да изпращате съобщения до този потребител." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Няма съдържание!" @@ -2572,7 +2572,7 @@ msgid "No recipient specified." msgstr "Не е указан получател." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2585,12 +2585,12 @@ msgstr "Съобщението е изпратено" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Прякото съобщение до %s е изпратено." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Грешка в Ajax" @@ -2722,8 +2722,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" @@ -3078,7 +3078,7 @@ msgstr "Пълно име" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Лична страница" @@ -3463,7 +3463,7 @@ msgstr "Същото като паролата по-горе. Задължите #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Е-поща" @@ -3620,7 +3620,7 @@ msgstr "Не можете да повтаряте собствена бележ msgid "You already repeated that notice." msgstr "Вече сте повторили тази бележка." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Повторено" @@ -3752,13 +3752,13 @@ msgid "Name" msgstr "Име" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организация" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Описание" @@ -4514,7 +4514,7 @@ msgstr "%s не получава ничии бележки." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4635,7 +4635,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" @@ -4836,7 +4836,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -4885,7 +4885,7 @@ msgid "Plugins" msgstr "Приставки" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Версия" @@ -4893,29 +4893,25 @@ msgstr "Версия" msgid "Author(s)" msgstr "Автор(и)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Любимо" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4924,20 +4920,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Неправилен размер." @@ -4960,13 +4956,28 @@ msgstr "Грешка при обновяване на групата." msgid "Group leave failed." msgstr "Профил на групата" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Грешка при запазване на потребител — невалидност." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Присъединяване" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4990,18 +5001,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Грешка при изпращане на прякото съобщение" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Грешка при вмъкване на съобщението." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Грешка при обновяване на бележката с нов URL-адрес." @@ -5059,33 +5070,33 @@ msgid "Problem saving notice." msgstr "Проблем при записване на бележката." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Проблем при записване на бележката." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5139,13 +5150,9 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Could not delete subscription." msgstr "Грешка при добавяне на нов абонамент." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5156,58 +5163,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добре дошли в %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Грешка при създаване на групата." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Грешка при създаване на групата." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Грешка при създаване на групата." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Грешка при запазване на етикетите." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Промяна настройките на профила" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Качване на аватар" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Смяна на паролата" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Промяна обработката на писмата" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Потребителски профил" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Други настройки" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Друго" @@ -5223,190 +5230,191 @@ msgid "Untitled page" msgstr "Неозаглавена страница" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "Основна настройка на сайта" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промяна на поща, аватар, парола, профил" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Свързване към услуги" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Свързване" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промяна настройките на сайта" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Настройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Излизане от сайта" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Изход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Създаване на нова сметка" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Регистриране" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Влизане в сайта" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощ" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Помощ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Търсене за хора или бележки" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Търсене" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Нова бележка" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Нова бележка" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Основна настройка на сайта" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Помощ" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Относно" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Въпроси" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Условия" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Поверителност" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Изходен код" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Контакт" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Табелка" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" @@ -5414,7 +5422,7 @@ msgstr "Лиценз на програмата StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5424,7 +5432,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е услуга за микроблогване." @@ -5433,7 +5441,7 @@ msgstr "**%%site.name%%** е услуга за микроблогване." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5445,70 +5453,70 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Лиценз на съдържанието" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Страниране" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "След" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Преди" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5642,7 +5650,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5659,196 +5667,214 @@ msgid "Icon for this application" msgstr "Да не се изтрива приложението" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Опишете групата или темата в до %d букви" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Опишете групата или темата в до %d букви" +msgstr[1] "Опишете групата или темата в до %d букви" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Изтриване на приложението" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "Не сте собственик на това приложение." #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Изходен код" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "Не сте собственик на това приложение." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Адрес на страница, блог или профил в друг сайт на групата" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Отказ" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Премахване" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 #, fuzzy msgid "Attachments" msgstr "Няма прикачени файлове." #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Автор" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Доставчик" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "Няма прикачени файлове." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Паролата е записана." -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Паролата е записана." #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Блокиране" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Резултат от командата" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Грешка в Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Командата е изпълнена" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Грешка при изпълнение на командата" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Не е открита бележка с такъв идентификатор." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Потребителят няма последна бележка" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Грешка при обновяване на потребител с потвърден email адрес." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "За съжаление тази команда все още не се поддържа." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Изпратено е побутване на %s" @@ -5857,7 +5883,7 @@ msgstr "Изпратено е побутване на %s" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5869,52 +5895,53 @@ msgstr "" "Бележки: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Бележката е отбелязана като любима." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Пълно име: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Местоположение: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Относно: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5923,7 +5950,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5931,25 +5958,25 @@ msgstr "" "$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Грешка при изпращане на прякото съобщение" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Бележката от %s е повторена" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Грешка при повтаряне на бележката." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5957,103 +5984,103 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Отговорът до %s е изпратен" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Грешка при записване на бележката." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Уточнете името на потребителя, за когото се абонирате." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Не сте абонирани за този профил" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Уточнете името на потребителя, от когото се отписвате." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Командата все още не се поддържа." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Уведомлението е изключено." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Грешка при изключване на уведомлението." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Уведомлението е включено." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Грешка при включване на уведомлението." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Не сте абонирани за никого." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Вече сте абонирани за следните потребители:" @@ -6061,14 +6088,14 @@ msgstr[1] "Вече сте абонирани за следните потреб #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Никой не е абониран за вас." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Грешка при абониране на друг потребител за вас." @@ -6076,21 +6103,21 @@ msgstr[1] "Грешка при абониране на друг потребит #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Не членувате в нито една група." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Не членувате в тази група." msgstr[1] "Не членувате в тази група." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6132,41 +6159,62 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Не е открит файл с настройки. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Влизане в сайта" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Бележки през месинджър (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Бележки през SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Свързване" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "Изтриване на приложението" @@ -6190,11 +6238,11 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Отбелязване като любимо" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Отбелязване като любимо" @@ -6214,7 +6262,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6655,7 +6703,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "от" @@ -6801,56 +6849,56 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "С" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Ю" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "И" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "З" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 #, fuzzy msgid "at" msgstr "Път" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "в контекст" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Повторено от" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Бележката е повторена." @@ -6921,7 +6969,7 @@ msgid "Tags in %s's notices" msgstr "Етикети в бележките на %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Непознато" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index b727faea9c..09a22da36d 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:38+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:57+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" @@ -112,7 +112,7 @@ msgstr "N'eus ket eus ar bajenn-se." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "N'eus ket eus an implijer-se." @@ -350,7 +350,7 @@ msgid "This status is already a favorite." msgstr "Ur pennroll eo dija an ali-mañ." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Diposupl eo krouiñ ar pennroll-mañ." @@ -466,18 +466,18 @@ msgid "Group not found." msgstr "N'eo ket bet kavet ar strollad." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Un ezel eus ar strollad-mañ eo dija." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Stanket oc'h bet eus ar strollad-mañ gant ur merour." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Diposubl eo stagañ an implijer %1$s d'ar strollad %2$s." @@ -489,7 +489,7 @@ msgstr "N'oc'h ket ezel eus ar strollad-mañ." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s." @@ -602,7 +602,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Kont" @@ -616,7 +616,7 @@ msgstr "Lesanv" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Ger-tremen" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "N'eus ket eus an ali-se." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Ne c'helloc'h ket adlavar ho alioù." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Adlavaret o peus dija an ali-mañ." @@ -761,7 +761,7 @@ msgstr "Ment direizh." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -792,7 +792,7 @@ msgid "Preview" msgstr "Rakwelet" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Diverkañ" @@ -875,7 +875,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Stankañ an implijer-mañ" @@ -894,8 +894,8 @@ msgstr "Diposubl eo enrollañ an titouroù stankañ." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "N'eus ket eus ar strollad-se." @@ -1012,7 +1012,7 @@ msgstr "N'oc'h ket perc'henn ar poellad-se." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -1072,7 +1072,7 @@ msgid "Do not delete this notice" msgstr "Arabat dilemel an ali-mañ" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Dilemel an ali-mañ" @@ -1101,7 +1101,7 @@ msgstr "Diverkañ an implijer-mañ" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Design" @@ -1227,7 +1227,7 @@ msgstr "Adlakaat an arventennoù dre ziouer" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Enrollañ" @@ -1347,7 +1347,7 @@ msgid "Could not update group." msgstr "Diposubl eo hizivaat ar strollad." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Diposubl eo krouiñ an aliasoù." @@ -1401,7 +1401,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Nullañ" @@ -1597,7 +1597,7 @@ msgstr "Chomlec'h postel ebet o tont." msgid "This notice is already a favorite!" msgstr "Ouzhpennet eo bet an ali-mañ d'ho pennrolloù dija !" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Tennañ ar pennroll" @@ -1897,7 +1897,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Oberezhioù %s" @@ -2167,7 +2167,7 @@ msgstr "Koumanantet oc'h dija d'an implijerien-mañ :" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2273,7 +2273,7 @@ msgid "You must be logged in to leave a group." msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "N'oc'h ket un ezel eus ar strollad-mañ." @@ -2498,14 +2498,14 @@ msgid "New message" msgstr "Kemennadenn nevez" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Goullo eo !" @@ -2514,7 +2514,7 @@ msgid "No recipient specified." msgstr "N'o peus ket lakaet a resever." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2527,12 +2527,12 @@ msgstr "Kemennadenn kaset" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Kaset eo bet da %s ar gemennadenn war-eeun." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Fazi Ajax" @@ -2667,8 +2667,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 #, fuzzy msgid "Not a supported data format." msgstr "Diembreget eo ar furmad-se." @@ -3031,7 +3031,7 @@ msgstr "Anv klok" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pajenn degemer" @@ -3426,7 +3426,7 @@ msgstr "Memestra hag ar ger-tremen a-us. Rekis." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Postel" @@ -3565,7 +3565,7 @@ msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." msgid "You already repeated that notice." msgstr "Adkemeret o peus dija an ali-mañ." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Adlavaret" @@ -3698,13 +3698,13 @@ msgid "Name" msgstr "Anv" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Aozadur" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Deskrivadur" @@ -4470,7 +4470,7 @@ msgstr "Ne heuilh %s den ebet." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4597,7 +4597,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4786,7 +4786,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Hizivadennoù eus %1$s e %2$s!" @@ -4835,7 +4835,7 @@ msgid "Plugins" msgstr "Pluginoù" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Stumm" @@ -4843,29 +4843,25 @@ msgstr "Stumm" msgid "Author(s)" msgstr "Aozer(ien)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Pennrolloù" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4874,20 +4870,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Ment direizh." @@ -4907,13 +4903,28 @@ msgstr "N'eo ezel eus strollad ebet." msgid "Group leave failed." msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Stagañ" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4937,18 +4948,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Diposubl eo ensoc'hañ ur gemenadenn" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Dibosupl eo hizivaat ar gemennadenn gant un URI nevez." @@ -5001,32 +5012,32 @@ msgid "Problem saving notice." msgstr "Ur gudenn 'zo bet pa veze enrollet an ali." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Ur gudenn 'zo bet pa veze enrollet boest degemer ar strollad." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5076,13 +5087,9 @@ msgstr "Dibosupl eo dilemel ar c'houmanant." msgid "Could not delete subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5093,57 +5100,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Deuet mat da %1$s, @%2$s !" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Dibosupl eo krouiñ ar strollad." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Dibosupl eo termeniñ URI ar strollad." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Dibosupl eo en em enskrivañ d'ar strollad." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Dibosupl eo enrollañ titouroù ar strollad lec'hel." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Kemmañ arventennoù ho profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Enporzhiañ un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cheñch ar ger-tremen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Kemmañ tretadur ar posteloù" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Krouit ho profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Dibarzhioù all" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "All" @@ -5159,186 +5166,187 @@ msgid "Untitled page" msgstr "Pajenn hep anv" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "Arventennoù diazez al lec'hienn" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Kemmañ ho chomlec'h postel, hoc'h avatar, ho ger-tremen, ho profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Liammañ d'ar servijoù" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Kevreañ" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Kemmañ arventennoù al lec'hienn" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Merañ" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Pediñ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Digevreañ diouzh al lec'hienn" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Digevreañ" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Krouiñ ur gont" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "En em enskrivañ" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kevreañ d'al lec'hienn" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Kevreañ" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Sikour din !" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Skoazell" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Klask tud pe un tamm testenn" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Klask" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Ali al lec'hienn" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Selloù lec'hel" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Ali ar bajenn" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "Arventennoù diazez al lec'hienn" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Skoazell" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Diwar-benn" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAG" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "AIH" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Prevezded" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Mammenn" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Darempred" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Badj" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Aotre-implijout ar meziant StatusNet" @@ -5346,7 +5354,7 @@ msgstr "Aotre-implijout ar meziant StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5354,7 +5362,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** a zo ur servij microblogging." @@ -5363,7 +5371,7 @@ msgstr "**%%site.name%%** a zo ur servij microblogging." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5372,70 +5380,70 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Aotre-implijout diwar-benn danvez al lec'hienn" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, fuzzy, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Kompren a ran ez eo prevez danvez ha roadennoù %1$s." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Pajennadur" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "War-lerc'h" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Kent" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5561,7 +5569,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5576,189 +5584,209 @@ msgid "Icon for this application" msgstr "Arlun evit ar poellad-mañ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Diskrivit ho poellad gant %d arouezenn" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Diskrivit ho poellad gant %d arouezenn" +msgstr[1] "Diskrivit ho poellad gant %d arouezenn" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Deskrivit ho poellad" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL pajenn degemer ar poellad-mañ" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Mammenn URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "An aozadur e karg eus ar poellad-mañ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL pajenn degemer an aozadur-se" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL davet pehini e o ret adkas goude bezañ kevreet" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Merdeer" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Burev" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Seurt ar poellad, merdeer pe burev" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lenn hepken" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lenn-skrivañ" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Nullañ" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lenn-skrivañ" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "lenn hepken" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprouet d'an %1$s - moned \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Dilemel" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Pezhioù stag" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Aozer" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Pourvezer" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "N'eo ket bet kavet ar restr stag." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "N'eo ket aet betek penn kemmañ ar ger-tremen" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "N'eo ket aotreet kemmañ ar ger-tremen" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Stankañ" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Disoc'hoù an urzhiad" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Fazi Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Urzhiad bet klokaet" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "C'hwitet en deus an urzhiad" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Digarezit, n'eo ket bet emplementet an urzhiad-mañ c'hoazh." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" "N'eus tamm talvoudegezh ebet ober ur blinkadenn deoc'h c'hwi oc'h unan !" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5767,7 +5795,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5779,52 +5807,53 @@ msgstr "" "kemennadennoù : %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Ali bet ouzhpennet d'ar pennroll." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Anv klok : %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Lec'hiadur : %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Lec'hienn Web : %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Diwar-benn : %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5833,7 +5862,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5841,128 +5870,128 @@ msgstr "" "arouezenn o peus lakaet." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 #, fuzzy msgid "Error repeating notice." msgstr "Fazi en ur hizivaat ar profil a-bell." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Ur gudenn 'zo bet pa veze enrollet an ali." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "Digarezit, n'eo ket bet emplementet an urzhiad-mañ c'hoazh." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Kemennoù diweredekaet." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Dibosupl eo diweredekaat ar c'hemennoù." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Kemennoù gweredekaet" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Dibosupl eo gweredekaat ar c'hemennoù." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "N'hoc'h ket koumanantet da zen ebet." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 #, fuzzy msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" @@ -5971,14 +6000,14 @@ msgstr[1] "You are subscribed to these people:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Den n'eo koumanantet deoc'h." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 #, fuzzy msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" @@ -5987,14 +6016,14 @@ msgstr[1] "These people are subscribed to you:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "N'oc'h ezel eus strollad ebet." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 #, fuzzy msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" @@ -6002,7 +6031,7 @@ msgstr[0] "You are a member of this group:" msgstr[1] "You are a member of these groups:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6044,39 +6073,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "N'eo bet kavet restr kefluniadur ebet. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Mont d'ar meziant staliañ" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Hizivadennoù dre SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kevreadennoù" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "Poeladoù kevreet." @@ -6099,11 +6150,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Enrollet eo bet an arventennoù design." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Tennañ eus ar pennrolloù" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Ouzhpennañ d'ar pennrolloù" @@ -6123,7 +6174,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Mignon ur mignon (FOAF)" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6565,7 +6616,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "eus" @@ -6715,55 +6766,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "R" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "K" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "e" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "en amdro" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Adkemeret gant" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Respont d'an ali-mañ" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Respont" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Ali adkemeret" @@ -6835,7 +6886,7 @@ msgid "Tags in %s's notices" msgstr "N'eus ali nevez evit an implijer-mañ" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Dianav" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index f61b70ab60..ddaf88036f 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:39+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:58+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Desa" @@ -115,7 +115,7 @@ msgstr "No existeix la pàgina." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No existeix l'usuari." @@ -361,7 +361,7 @@ msgid "This status is already a favorite." msgstr "Aquest estat ja és un preferit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "No es pot crear el preferit." @@ -476,18 +476,18 @@ msgid "Group not found." msgstr "No s'ha trobat el grup." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Ja sou membre del grup." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "L'administrador us ha blocat del grup." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." @@ -499,7 +499,7 @@ msgstr "No sou un membre del grup." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "No s'ha pogut eliminar l'usuari %1$s del grup %2$s." @@ -618,7 +618,7 @@ msgstr "" "hauríeu de donar accés al compte %4$s a terceres parts en què confieu." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Compte" @@ -632,7 +632,7 @@ msgstr "Sobrenom" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasenya" @@ -662,12 +662,12 @@ msgid "No such notice." msgstr "No existeix aquest avís." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "No podeu repetir els vostres propis avisos." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Avís duplicat." @@ -777,7 +777,7 @@ msgstr "La mida no és vàlida." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -809,7 +809,7 @@ msgid "Preview" msgstr "Vista prèvia" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Elimina" @@ -897,7 +897,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloca aquest usuari" @@ -916,8 +916,8 @@ msgstr "No s'ha pogut desar la informació del bloc." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "No s'ha trobat el grup." @@ -1033,7 +1033,7 @@ msgstr "No sou el propietari d'aquesta aplicació." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "S'ha produït un problema amb el testimoni de la vostra sessió." @@ -1098,7 +1098,7 @@ msgid "Do not delete this notice" msgstr "No eliminis aquest avís" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Elimina aquest avís" @@ -1129,7 +1129,7 @@ msgstr "Elimina l'usuari" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Disseny" @@ -1256,7 +1256,7 @@ msgstr "Torna a restaurar al valor per defecte" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Desa" @@ -1376,7 +1376,7 @@ msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "No s'han pogut crear els àlies." @@ -1432,7 +1432,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel·la" @@ -1625,7 +1625,7 @@ msgstr "Nou correu electrònic entrant afegit." msgid "This notice is already a favorite!" msgstr "Aquest avís ja és un preferit." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Fes que deixi de ser preferit" @@ -1928,7 +1928,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s línia temporal" @@ -2214,7 +2214,7 @@ msgstr "Ja estàs subscrit a aquests usuaris:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2347,7 +2347,7 @@ msgid "You must be logged in to leave a group." msgstr "Heu d'haver iniciat una sessió per deixar un grup." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "No ets membre d'aquest grup." @@ -2572,14 +2572,14 @@ msgid "New message" msgstr "Nou missatge" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "No podeu enviar un misssatge a aquest usuari." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Cap contingut!" @@ -2588,7 +2588,7 @@ msgid "No recipient specified." msgstr "No has especificat el destinatari." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." @@ -2599,12 +2599,12 @@ msgstr "S'ha enviat el missatge" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "S'ha enviat un missatge directe a %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax Error" @@ -2744,8 +2744,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Si us plau, només URL %s sobre HTTP pla." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -3102,7 +3102,7 @@ msgstr "Nom complet" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pàgina personal" @@ -3501,7 +3501,7 @@ msgstr "Igual a la contrasenya de dalt. Requerit." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correu electrònic" @@ -3663,7 +3663,7 @@ msgstr "No podeu repetir el vostre propi avís." msgid "You already repeated that notice." msgstr "Ja havíeu repetit l'avís." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetit" @@ -3798,13 +3798,13 @@ msgid "Name" msgstr "Nom" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organització" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descripció" @@ -4594,7 +4594,7 @@ msgstr "%s no escolta a ningú." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4722,7 +4722,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "La subscripció per defecte no és vàlida: «%1$s» no és cap usuari." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4917,7 +4917,7 @@ msgstr "Proveu de [cercar grups](%%action.groupsearch%%) i unir-vos-hi." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" @@ -4978,7 +4978,7 @@ msgid "Plugins" msgstr "Connectors" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versió" @@ -4986,29 +4986,25 @@ msgstr "Versió" msgid "Author(s)" msgstr "Autoria" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Preferit" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "No es pot processar l'URL «%s»" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "El Robin pensa que quelcom és impossible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5019,7 +5015,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5027,14 +5023,14 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Un fitxer d'aquesta mida excediria la vostra quota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "El nom del fitxer no és vàlid." @@ -5053,13 +5049,28 @@ msgstr "No s'és part del grup." msgid "Group leave failed." msgstr "La sortida del grup ha fallat." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "S'ha produït un error en desar l'usuari; no és vàlid." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Inici de sessió" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5082,17 +5093,17 @@ msgid "No database name or DSN found anywhere." msgstr "No s'ha trobat el nom de la base de dades o el DSN enlloc." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Se us ha bandejat enviar missatges directes." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "No s'ha pogut inserir el missatge." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "No s'ha pogut inserir el missatge amb la nova URI." @@ -5149,32 +5160,32 @@ msgid "Problem saving notice." msgstr "S'ha produït un problema en desar l'avís." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "S'ha proporcionat un tipus incorrecte per a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "S'ha produït un problema en desar la safata d'entrada del grup." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "No es pot revocar el rol «%1$s» de l'usuari #%2$d; no existeix." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5226,13 +5237,9 @@ msgstr "No s'ha pogut eliminar el testimoni OMB de la subscripció." msgid "Could not delete subscription." msgstr "No s'ha pogut eliminar la subscripció." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5243,57 +5250,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "No s'ha pogut crear el grup." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "No es pot definir l'URI del grup." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "No s'ha pogut establir la pertinença d'aquest grup." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "No s'ha pogut desar la informació del grup local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Canvieu els paràmetres del vostre perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Puja un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Canvieu la vostra contrasenya" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Canvieu la gestió del correu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Dissenyeu el vostre perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Altres opcions" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Altres" @@ -5309,184 +5316,185 @@ msgid "Untitled page" msgstr "Pàgina sense titol" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegació primària del lloc" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal i línia temporal dels amics" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Canvia l'adreça electrònica, l'avatar, la contrasenya o el perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connecta als serveis" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connexió" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Canvia la configuració del lloc" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrador" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convida amics i coneguts perquè participin a %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Convida" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Finalitza la sessió del lloc" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un compte" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registre" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Inicia una sessió al lloc" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Inici de sessió" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajuda'm!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca gent o text" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Avís del lloc" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistes locals" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Avís de pàgina" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ajuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Quant a" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Preguntes més freqüents" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Termes del servei" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privadesa" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Font" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacte" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insígnia" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" @@ -5494,7 +5502,7 @@ msgstr "Llicència del programari StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5504,7 +5512,7 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** és un servei de microblogging." @@ -5513,7 +5521,7 @@ msgstr "**%%site.name%%** és un servei de microblogging." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5525,27 +5533,27 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Llicència de contingut del lloc" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "El contingut i les dades de %1$s són privades i confidencials." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "El contingut i les dades són copyright de %1$s. Tots els drets reservats." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "El contingut i les dades són copyright dels col·laboradors. Tots els drets " @@ -5553,7 +5561,7 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5561,41 +5569,41 @@ msgstr "" "llicència %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginació" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Posteriors" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Anteriors" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "S'esperava un element del canal arrel, però se n'ha obtingut tot un document " "XML sencer." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "No es pot gestionar el contingut remot encara." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "No es pot gestionar el contingut XML incrustat encara." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "No es pot gestionar el contingut Base64 incrustat encara." @@ -5722,7 +5730,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5737,187 +5745,207 @@ msgid "Icon for this application" msgstr "Icona de l'aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Descriviu la vostra aplicació en %d caràcters" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Descriviu la vostra aplicació en %d caràcters" +msgstr[1] "Descriviu la vostra aplicació en %d caràcters" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Descriviu la vostra aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL de la pàgina d'inici de l'aplicació" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL d'origen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organització responsable de l'aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "L'URL de la pàgina d'inici de l'organització" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL on redirigir-hi després de l'autenticació." #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Escriptori" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipus d'aplicació, navegador o escriptori" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Només lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lectura i escriptura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accés per defecte per a l'aplicació: només lectura, o lectura i escriptura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancel·la" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "de lectura i d'escriptura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "només de lectura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovat: %1$s - accés «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Adjuncions" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autoria" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Proveïdor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Avisos on apareix l'adjunt" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquetes de l'adjunció" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "El canvi de contrasenya ha fallat" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "No es permet el canvi de contrasenya" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloca" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultats de les comandes" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax Error" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comanda completada" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comanda fallida" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "No existeix cap avís amb aquest identificador." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "L'usuari no té un darrer avís." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "No es pot trobar un usuari amb el sobrenom %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "No s'ha pogut trobar un usuari local amb el sobrenom %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Perdona, aquesta comanda no està implementada." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "No té massa sentit avisar-se a un mateix!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "S'ha cridat l'atenció a %s." @@ -5926,7 +5954,7 @@ msgstr "S'ha cridat l'atenció a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5938,52 +5966,53 @@ msgstr "" "Avisos: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "L'avís està marcat com a preferit." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s s'ha unit al grup %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s ha deixat el grup %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nom complet: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Localització: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Pàgina web: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Informació personal: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5994,112 +6023,112 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" "El missatge és massa llarg - el màxim és %1$d caràcters, i n'heu enviat %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "S'ha produït un error en enviar el missatge directe." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "S'ha repetit l'avís de %s." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "S'ha produït un error en repetir l'avís." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "L'avís és massa llarg - el màxim és %1$d caràcters, n'heu enviat %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "S'ha enviat la resposta a %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "S'ha produït un error en desar l'avís." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Especifiqueu el nom de l'usuari al qual voleu subscriure-us." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "No es pot subscriure a perfils de OMB amb ordres." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subscrit a %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Especifiqueu el nom de l'usuari del qui voleu deixar la subscripció." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "S'ha deixat d'estar subscrit a %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Comanda encara no implementada." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Avisos desactivats." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "No es poden desactivar els avisos." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Avisos activitats." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "No es poden activar els avisos." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "L'ordre d'inici de sessió no està habilitada." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6108,20 +6137,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "S'ha cancel·lat la subscripció de %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "No esteu subscrit a ningú." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ja estàs subscrit a aquests usuaris:" @@ -6129,14 +6158,14 @@ msgstr[1] "Ja estàs subscrit a aquests usuaris:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Ningú no us ha subscrit." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "No pots subscriure a un altre a tu mateix." @@ -6144,21 +6173,21 @@ msgstr[1] "No pots subscriure a un altre a tu mateix." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "No sou membre de cap grup." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sou un membre d'aquest grup:" msgstr[1] "Sou un membre d'aquests grups:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6238,39 +6267,61 @@ msgstr "" "tracks - no s'ha implementat encara.\n" "tracking - no s'ha implementat encara.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "No s'ha trobat cap fitxer de configuració. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "S'han cercat fitxers de configuracions en els llocs següents: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Podeu voler executar l'instal·lador per corregir-ho." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Vés a l'instal·lador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualitzacions per missatgeria instantània (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualitzacions per SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexions" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicacions de connexió autoritzades" @@ -6293,11 +6344,11 @@ msgstr "" msgid "Design defaults restored." msgstr "S'han restaurat els paràmetres de disseny per defecte." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Deixa de tenir com a preferit aquest avís" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Fes preferit aquest avís" @@ -6317,7 +6368,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6851,7 +6902,7 @@ msgstr "" "usuaris en la conversa. La gent pot enviar-vos missatges només per als " "vostres ulls." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -7004,55 +7055,55 @@ msgstr "" "l'esperat; torneu-ho a provar més tard" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "a" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "en context" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetit per" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "respondre a aquesta nota" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Respon" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Avís repetit" @@ -7123,7 +7174,7 @@ msgid "Tags in %s's notices" msgstr "Etiquetes en els avisos de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Desconegut" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 0e345fbcb9..a779d40496 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:39+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:59+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Uložit" @@ -112,7 +112,7 @@ msgstr "Tady žádná taková stránka není." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Uživatel neexistuje." @@ -355,7 +355,7 @@ msgid "This status is already a favorite." msgstr "Tuto hlášku již máte v oblíbených." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Nelze vytvořit oblíbenou položku." @@ -468,18 +468,18 @@ msgid "Group not found." msgstr "Skupina nebyla nalezena." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Jste již členem této skupiny." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Z této skupiny jste byl zablokován adminem." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nemohu připojit uživatele %1$s do skupiny %2$s." @@ -491,7 +491,7 @@ msgstr "Nejste členem této skupiny." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nelze odebrat uživatele %1$S ze skupiny %2$s." @@ -607,7 +607,7 @@ msgstr "" "vašeho účtu na %4$s jen třetím stranám kterým věříte.." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Účet" @@ -621,7 +621,7 @@ msgstr "Přezdívka" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Heslo" @@ -651,12 +651,12 @@ msgid "No such notice." msgstr "Žádné takové oznámení." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nelze opakovat své vlastní oznámení." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Již jste zopakoval toto oznámení." @@ -766,7 +766,7 @@ msgstr "Neplatná velikost" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -797,7 +797,7 @@ msgid "Preview" msgstr "Náhled" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Odstranit" @@ -883,7 +883,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -902,8 +902,8 @@ msgstr "Nepodařilo se uložit blokování." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Žádný takový uživatel." @@ -1019,7 +1019,7 @@ msgstr "Nejste vlastníkem této aplikace." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Nastal problém s vaším session tokenem." @@ -1083,7 +1083,7 @@ msgid "Do not delete this notice" msgstr "Neodstraňujte toto oznámení" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -1114,7 +1114,7 @@ msgstr "Odstranit tohoto uživatele" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Vzhled" @@ -1241,7 +1241,7 @@ msgstr "Reset zpět do výchozího" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Uložit" @@ -1361,7 +1361,7 @@ msgid "Could not update group." msgstr "Nelze aktualizovat skupinu." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nelze vytvořit aliasy." @@ -1417,7 +1417,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Zrušit" @@ -1608,7 +1608,7 @@ msgstr "Přidána nová příchozí e-mailová adresa." msgid "This notice is already a favorite!" msgstr "Tuto hlášku již máte v oblíbených." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Znemilostnit oblíbenou" @@ -1911,7 +1911,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "časová osa %s" @@ -2192,7 +2192,7 @@ msgstr "Jste již přihlášeni k těmto uživatelům:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2324,7 +2324,7 @@ msgid "You must be logged in to leave a group." msgstr "Musíte být přihlášen abyste mohl opustit skupinu." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Nejste členem této skupiny." @@ -2546,15 +2546,15 @@ msgid "New message" msgstr "Nová zpráva" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "" "Nemůžete odesílat zprávy tomuto uživateli. (musíte být vzájemně prihlášení)" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Chybí obsah!" @@ -2563,7 +2563,7 @@ msgid "No recipient specified." msgstr "Neuveden příjemce." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Neposílejte si zprávu, potichu si ji pro sebe řekněte." @@ -2574,12 +2574,12 @@ msgstr "Zpráva odeslána" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Přímá zpráva pro %s odeslána." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax Chyba" @@ -2716,8 +2716,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Only %s URLs over plain HTTP please." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Nepodporovaný formát dat." @@ -3070,7 +3070,7 @@ msgstr "Celé jméno" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Moje stránky" @@ -3460,7 +3460,7 @@ msgstr "Stejné jako heslo uvedeno výše. Povinné." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" @@ -3618,7 +3618,7 @@ msgstr "Nemůžete opakovat své vlastní oznámení." msgid "You already repeated that notice." msgstr "Již jste zopakoval toto oznámení." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Opakované" @@ -3754,13 +3754,13 @@ msgid "Name" msgstr "Název" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizace" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Popis" @@ -4539,7 +4539,7 @@ msgstr "%s nikoho nesleduje." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4665,7 +4665,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Neplatné výchozí přihlášení: '%1$s' není uživatel." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4860,7 +4860,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oznámení od %1$s na %2$s!" @@ -4921,7 +4921,7 @@ msgid "Plugins" msgstr "Pluginy" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Verze" @@ -4929,29 +4929,25 @@ msgstr "Verze" msgid "Author(s)" msgstr "Autoři" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Oblíbit" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Nemůžu zpracovat URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin si myslí, že je něco nemožné." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4962,20 +4958,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Takto velký soubor by překročil vaši uživatelskou kvótu %d bajtů." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Takto velký soubor by překročil vaši měsíční kvótu %d bajtů." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Neplatné jméno souboru." @@ -4994,13 +4990,28 @@ msgstr "Není součástí skupiny." msgid "Group leave failed." msgstr "Nepodařilo se opustit skupinu." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Chyba při ukládaní uživatele; neplatný." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Připojit se" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5023,17 +5034,17 @@ msgid "No database name or DSN found anywhere." msgstr "Nenalezeno jméno databáze ani DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Nemůžete posílat přímé zprávy (banned)" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Nemohu vložit zprávu." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Nelze aktualizovat zprávu novým URI." @@ -5089,32 +5100,32 @@ msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "saveKnownGroups obdrželo špatný typ." #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problém při ukládání skupinového inboxu" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Nelze zrušit roli \"%1$s\" pro uživatele #%2$d, neexistuje." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "Nelze zrušit roli \"%1$s\" pro uživatele #%2$d, chyba databáze." @@ -5164,13 +5175,9 @@ msgstr "Nelze smazat OMB token přihlášení." msgid "Could not delete subscription." msgstr "Nelze smazat odebírání" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5181,57 +5188,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Vítejte na %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Nelze vytvořit skupinu." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Nelze nastavit URI skupiny." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Nelze nastavit členství ve skupině." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Nelze uložit místní info skupiny." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Změňte nastavení profilu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Nahrát avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Změňte své heslo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Změnit manipulaci emailu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Změňte vzhled svého profilu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Další možnosti" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Jiné" @@ -5247,184 +5254,185 @@ msgid "Untitled page" msgstr "stránka bez názvu" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Primární navigace na webu" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Osobní profil a časová osa přátel" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Osobní" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Změňte svůj e-mail, avatar, heslo, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Připojení ke službám" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Připojit" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Změna konfigurace webu" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Pozvěte přátele a kolegy, aby se k vám připojili na %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Pozvat" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Odhlášení z webu" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Odhlásit se" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Zaregistrujte se" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrovat" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Přihlásit se na stránky" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Přihlásit" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Nápověda" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Nápověda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Vyhledávání osob nebo textu" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Hledat" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Sdělení" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Místní zobrazení" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sdělení stránky" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Sekundární navigace na webu" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Nápověda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "O nás" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS (pravidla použití služby)" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Soukromí" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Zdroj" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Odznak" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licence softwaru StatusNet" @@ -5432,7 +5440,7 @@ msgstr "Licence softwaru StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5442,7 +5450,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** je služba mikroblogů." @@ -5451,7 +5459,7 @@ msgstr "**%%site.name%%** je služba mikroblogů." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5463,70 +5471,70 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licence k obsahu stránek" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Obsah a data z %1$S jsou soukromé a důvěrné." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Obsah a data copyright %1$s. Všechna práva vyhrazena." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "Obsah a data copyright přispěvatelů. Všechna práva vyhrazena." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Všechen obsah a data %1$s jsou k dispozici v rámci licence %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Stránkování" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Po" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Před" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Očekávám kořenový element feedu, ale dostal jsem celý XML dokument." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Ještě neumí zpracovat vzdálený obsah." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Neumí zacházet s vloženým XML obsahem." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Neumí zacházet s vloženým Base64 obsahem." @@ -5653,7 +5661,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5668,186 +5676,207 @@ msgid "Icon for this application" msgstr "Ikona pro tuto aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Popište vaši aplikaci v %d znacích" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Popište vaši aplikaci v %d znacích" +msgstr[1] "Popište vaši aplikaci v %d znacích" +msgstr[2] "Popište vaši aplikaci v %d znacích" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Popište vaši aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL domovské stránky této aplikace" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Zdrojové URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizace odpovědná za tuto aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL homepage organizace" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL pro přesměrování po autentikaci" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Prohlížeč" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typ aplikace, prohlížeč nebo desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "pouze pro čtení" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "čtení a zápis" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "Výchozí přístup pro tuto aplikaci: pouze pro čtení, nebo číst-psát" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Zrušit" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "číst-psát" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "pouze pro čtení" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Schváleno %1$s - přístup \"%2$s\"" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Obnovit" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Přílohy" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Poskytovatel" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notices where this attachment appears" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Označení této přílohy" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Změna hesla se nezdařila" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Změna hesla není povolena" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokovat" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Výsledky příkazu" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax Chyba" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Příkaz dokončen" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Příkaz selhal" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Oznámení s tímto id neexistuje." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Uživatel nemá žádné poslední oznámení" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Nelze nalézt uživatele s přezdívkou %s" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Nelze nalézt místního uživatele s přezdívkou %s" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Je nám líto, ale tento příkaz dosud nebyl implementován." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "To nemá moc smyslu postrkovat sám sebe!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Šťouchnutí posláno %s." @@ -5856,7 +5885,7 @@ msgstr "Šťouchnutí posláno %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5868,52 +5897,53 @@ msgstr "" "Hlášky: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Oznámení označené jako oblíbené." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s se připojil(a) ke skupině %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s opustil(a) skupinu %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Celé jméno %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Poloha: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Domovská stránka: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "O uživateli: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5924,131 +5954,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Zpráva je příliš dlouhá - maximum je %1$d znaků, poslal jsi %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Chyba při odesílání přímé zprávy." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Oznámení od %s opakováno." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Chyba nastavení uživatele" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Oznámení je příliš dlouhé - maximum je %1$d znaků, poslal jsi %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Odpověď %s odeslána." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Problém při ukládání sdělení." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Uveďte jméno uživatele ke kterému se přihlásit." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Nelze se přihlásit k odběru OMB profilů příkazem." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Přihlášeno k %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Uveďte jméno uživatele od kterého se odhlásit." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Odhlášeno od %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Příkaz ještě nebyl implementován." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Oznámení vypnuta." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Nelze vypnout oznámení." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Oznámení zapnuta." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Nelze zapnout oznámení." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Příkaz login je vypnut." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "Tento odkaz je použitelný pouze jednou a je platný pouze 2 minuty: %s." #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%s odhlášen." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Nejste přihlášen k nikomu." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Jste přihlášeni k této osobě:" @@ -6057,14 +6087,14 @@ msgstr[2] "Jste přihlášeni k těmto lidem:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nikdo k vám není přihlášen." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Tato osoba je k vám přihlášena:" @@ -6073,14 +6103,14 @@ msgstr[2] "Tito lidé jsou k vám přihlášeni:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Nejste členem žádné skupiny." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Jste členem této skupiny:" @@ -6088,7 +6118,7 @@ msgstr[1] "Jste členem těchto skupin:" msgstr[2] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6168,39 +6198,61 @@ msgstr "" "tracks - Dosud neimplementován.\n" "tracking - Dosud neimplementován.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Žádný konfigurační soubor nalezen. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Díval jsem se po konfiguračních souborech na těchto místech: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Možná budete chtít spustit instalační program abyste to vyřešili." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Jdi na instalaci." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Aktualizace z a na instant messenger (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Aktualizace z a na SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Připojení" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Autorizované propojené aplikace" @@ -6223,11 +6275,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Obnoveno výchozí nastavení vzhledu." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Odebrat toto oznámení z oblíbených" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Přidat toto oznámení do oblíbených" @@ -6247,7 +6299,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6783,7 +6835,7 @@ msgstr "" "zapojili ostatní uživatelé v rozhovoru. Lidé mohou posílat zprávy jen pro " "vaše oči." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "od" @@ -6933,55 +6985,55 @@ msgstr "" "prosím znovu později" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "S" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "J" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "V" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Z" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "v" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "v kontextu" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Opakováno" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Odpovědět na toto oznámení" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Odpovědět" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Sdělení opakováno" @@ -7052,7 +7104,7 @@ msgid "Tags in %s's notices" msgstr "Značky v oznámeních %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Neznámé" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index d1edee32be..d6d63669b4 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:40+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24: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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -90,7 +90,7 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Speichern" @@ -121,7 +121,7 @@ msgstr "Seite nicht vorhanden" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Unbekannter Benutzer." @@ -308,7 +308,7 @@ msgstr "Konnte Benutzerdesign nicht aktualisieren." #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" -msgstr "Du kannst dich nicht selbst sperren!" +msgstr "Du kannst dich nicht selbst blockieren!" #: actions/apiblockcreate.php:127 msgid "Block user failed." @@ -368,7 +368,7 @@ msgid "This status is already a favorite." msgstr "Diese Nachricht ist bereits ein Favorit!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Konnte keinen Favoriten erstellen." @@ -415,20 +415,20 @@ msgstr "Konnte keine Statusmeldungen finden." #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -"Der Nutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. Leerzeichen " -"sind nicht erlaubt." +"Der Benutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. " +"Leerzeichen sind nicht erlaubt." #: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." -msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." +msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." #: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." -msgstr "Ungültiger Nutzername." +msgstr "Ungültiger Benutzername." #: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 @@ -485,18 +485,18 @@ msgid "Group not found." msgstr "Gruppe nicht gefunden!" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du bist bereits Mitglied dieser Gruppe" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." -msgstr "Der Admin dieser Gruppe hat dich gesperrt." +msgstr "Der Admin dieser Gruppe hat dich blockiert." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen." @@ -508,7 +508,7 @@ msgstr "Du bist kein Mitglied dieser Gruppe." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Konnte Benutzer %1$s nicht aus der Gruppe %2$s entfernen." @@ -577,7 +577,7 @@ msgstr "Datenbankfehler beim Löschen des OAuth Anwendungs Nutzers." #: actions/apioauthauthorize.php:185 msgid "Database error inserting OAuth application user." -msgstr "Datenbankfehler beim Einfügen des OAuth Programm Benutzers." +msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." #: actions/apioauthauthorize.php:214 #, php-format @@ -625,7 +625,7 @@ msgstr "" "vertrauenswürdigen Quellen Erlaubnis zu deinem %4$s Zugang geben." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Profil" @@ -635,11 +635,11 @@ msgstr "Profil" #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:132 msgid "Nickname" -msgstr "Nutzername" +msgstr "Benutzername" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passwort" @@ -669,12 +669,12 @@ msgid "No such notice." msgstr "Unbekannte Nachricht." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Nachricht bereits wiederholt" @@ -777,7 +777,7 @@ msgstr "Kein solcher Anhang." #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." -msgstr "Kein Nutzername." +msgstr "Kein Benutzername." #: actions/avatarbynickname.php:64 msgid "No size." @@ -789,7 +789,7 @@ msgstr "Ungültige Größe." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -821,7 +821,7 @@ msgid "Preview" msgstr "Vorschau" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Löschen" @@ -908,7 +908,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -927,8 +927,8 @@ msgstr "Konnte Blockierungsdaten nicht speichern." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Keine derartige Gruppe." @@ -948,7 +948,7 @@ msgstr "Liste der blockierten Benutzer in dieser Gruppe." #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" -msgstr "Sperrung des Nutzers für die Gruppe aufheben." +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 @@ -1044,7 +1044,7 @@ msgstr "Du bist Besitzer dieses Programms" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1108,7 +1108,7 @@ msgid "Do not delete this notice" msgstr "Diese Nachricht nicht löschen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Nachricht löschen" @@ -1139,7 +1139,7 @@ msgstr "Diesen Benutzer löschen" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Design" @@ -1267,7 +1267,7 @@ msgstr "Standard wiederherstellen" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Speichern" @@ -1388,7 +1388,7 @@ msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." @@ -1444,7 +1444,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Abbrechen" @@ -1623,7 +1623,7 @@ msgstr "Keine Eingangs-E-Mail-Adresse." #: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." -msgstr "Konnte Nutzereintrag nicht schreiben" +msgstr "Konnte Benutzereintrag nicht schreiben" #. TRANS: Message given after successfully removing an incoming e-mail address. #: actions/emailsettings.php:512 actions/smssettings.php:581 @@ -1639,7 +1639,7 @@ msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt." msgid "This notice is already a favorite!" msgstr "Diese Nachricht ist bereits ein Favorit!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Aus Favoriten entfernen" @@ -1797,11 +1797,11 @@ msgstr "Keine Gruppe angegeben" #: actions/groupblock.php:91 msgid "Only an admin can block group members." -msgstr "Nur ein Admin kann Mitglieder der Gruppe sperren." +msgstr "Nur ein Admin kann Mitglieder der Gruppe blockieren." #: actions/groupblock.php:95 msgid "User is already blocked from group." -msgstr "Dieser Benutzer ist bereits von der Gruppe gesperrt" +msgstr "Dieser Benutzer ist bereits von der Gruppe blockiert" #: actions/groupblock.php:100 msgid "User is not a member of group." @@ -1830,7 +1830,7 @@ msgstr "Diesen Benutzerzugang nicht für diese Gruppe blockieren." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 msgid "Block this user from this group" -msgstr "Diesen Benutzer von der Gruppe sperren" +msgstr "Diesen Benutzer von der Gruppe blockieren" #: actions/groupblock.php:206 msgid "Database error blocking user from group." @@ -1922,7 +1922,7 @@ msgstr "Blockieren" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Diesen Benutzer blockieren" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1944,7 +1944,7 @@ msgstr "Diesen Benutzer zum Admin ernennen" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s Zeitleiste" @@ -2023,11 +2023,11 @@ msgstr "" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." -msgstr "Nur Admins können Gruppenmitglieder entsperren." +msgstr "Nur Admins können Blockierungen von Gruppenmitglieder aufheben." #: actions/groupunblock.php:95 msgid "User is not blocked from group." -msgstr "Dieser Benutzer ist nicht von der Gruppe gesperrt." +msgstr "Dieser Benutzer ist nicht von der Gruppe blockiert." #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." @@ -2230,7 +2230,7 @@ msgstr "Du hast diese Benutzer bereits abonniert:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2239,7 +2239,7 @@ msgstr "%1$s (%2$s)" msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -"Diese Leute sind bereits registrierte Benutzer und du hast Sie automatisch " +"Diese Leute sind bereits registrierte Benutzer und du hast sie automatisch " "abonniert." #: actions/invite.php:144 @@ -2367,7 +2367,7 @@ msgid "You must be logged in to leave a group." msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Du bist kein Mitglied dieser Gruppe." @@ -2525,14 +2525,14 @@ msgstr "" #: actions/login.php:292 msgid "Login with your username and password." -msgstr "Mit Nutzernamen und Passwort anmelden." +msgstr "Mit Benutzernamen und Passwort anmelden." #: actions/login.php:295 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." msgstr "" -"Du hast noch keinen Nutzernamen? [Registriere](%%action.register%%) ein " +"Du hast noch keinen Benutzernamen? [Registriere](%%action.register%%) ein " "neues Konto." #: actions/makeadmin.php:92 @@ -2591,14 +2591,14 @@ msgid "New message" msgstr "Neue Nachricht" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Kein Inhalt!" @@ -2607,7 +2607,7 @@ msgid "No recipient specified." msgstr "Kein Empfänger angegeben." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2619,12 +2619,12 @@ msgstr "Nachricht gesendet" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Direkte Nachricht an %s abgeschickt" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-Fehler" @@ -2766,14 +2766,14 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bitte nur %s URLs über einfaches HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." #: actions/opensearch.php:64 msgid "People Search" -msgstr "Suche nach Nutzern" +msgstr "Suche nach Benutzern" #: actions/opensearch.php:67 msgid "Notice Search" @@ -2813,7 +2813,7 @@ msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (max. 50 Zeichen)." #: actions/otp.php:69 msgid "No user ID specified." -msgstr "Keine Benutzer ID angegeben" +msgstr "Keine Benutzer-ID angegeben" #: actions/otp.php:83 msgid "No login token specified." @@ -2897,7 +2897,7 @@ msgstr "Altes Passwort falsch" #: actions/passwordsettings.php:181 msgid "Error saving user; invalid." -msgstr "Fehler beim Speichern des Nutzers, ungültig." +msgstr "Fehler beim Speichern des Benutzers, ungültig." #: actions/passwordsettings.php:186 actions/recoverpassword.php:381 msgid "Can't save new password." @@ -3072,7 +3072,7 @@ msgstr "" #: actions/peoplesearch.php:58 msgid "People search" -msgstr "Suche nach anderen Nutzern" +msgstr "Suche nach anderen Benutzern" #: actions/peopletag.php:68 #, php-format @@ -3122,7 +3122,7 @@ msgstr "Vollständiger Name" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -3462,7 +3462,7 @@ msgstr "Passwort und seine Bestätigung stimmen nicht überein." #: actions/recoverpassword.php:388 actions/register.php:255 msgid "Error setting user." -msgstr "Fehler bei den Nutzereinstellungen." +msgstr "Fehler bei den Benutzereinstellungen." #: actions/recoverpassword.php:395 msgid "New password successfully saved. You are now logged in." @@ -3524,7 +3524,7 @@ msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-Mail" @@ -3637,7 +3637,7 @@ msgstr "Benutzername" #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "Nutzername des Nutzers, dem du folgen möchtest" +msgstr "Name des Benutzers, dem du folgen möchtest" #: actions/remotesubscribe.php:133 msgid "Profile URL" @@ -3685,7 +3685,7 @@ msgstr "Du kannst deine eigene Nachricht nicht wiederholen." msgid "You already repeated that notice." msgstr "Nachricht bereits wiederholt" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Wiederholt" @@ -3753,7 +3753,7 @@ msgstr "Antworten an %1$s auf %2$s!" #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." -msgstr "Du kannst die Rollen von Nutzern dieser Seite nicht widerrufen." +msgstr "Du kannst die Rollen von Benutzern dieser Seite nicht widerrufen." #: actions/revokerole.php:82 msgid "User doesn't have this role." @@ -3821,13 +3821,13 @@ msgid "Name" msgstr "Name" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beschreibung" @@ -4616,7 +4616,7 @@ msgstr "%s hat niemanden abonniert." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4743,7 +4743,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ungültiges Abonnement: „%1$s“ ist kein Benutzer" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4786,7 +4786,7 @@ msgstr "Einladungen aktivieren" #: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." -msgstr "Ist es Nutzern erlaubt neue Nutzer einzuladen." +msgstr "Ist es Benutzern erlaubt, neue Benutzer einzuladen." #: actions/useradminpanel.php:295 msgid "Save user settings" @@ -4803,7 +4803,7 @@ msgid "" "click “Reject”." msgstr "" "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " -"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"dieses Benutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " "„Abbrechen“." #. TRANS: Menu item for site administration @@ -4939,7 +4939,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" @@ -5000,7 +5000,7 @@ msgid "Plugins" msgstr "Erweiterungen" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -5008,29 +5008,25 @@ msgstr "Version" msgid "Author(s)" msgstr "Autor(en)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Zu Favoriten hinzufügen" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s markierte Nachricht %s als Favorit." - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Die URL „%s“ konnte nicht verarbeitet werden" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin denkt, dass etwas unmöglich ist." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5041,14 +5037,14 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Eine Datei dieser Größe überschreitet deine User Quota von %d Byte." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" @@ -5056,7 +5052,7 @@ msgstr "" "überschreiten." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ungültiger Dateiname." @@ -5075,13 +5071,28 @@ msgstr "Nicht Mitglied der Gruppe" msgid "Group leave failed." msgstr "Konnte Gruppe nicht verlassen" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Fehler beim Speichern des Benutzers, ungültig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Beitreten" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s ist der Gruppe „%2$s“ beigetreten." @@ -5104,17 +5115,17 @@ msgid "No database name or DSN found anywhere." msgstr "Nirgendwo einen Datenbanknamen oder DSN gefunden." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Direktes Senden von Nachrichten wurde blockiert" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Konnte Nachricht nicht einfügen." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Konnte Nachricht nicht mit neuer URI versehen." @@ -5171,26 +5182,26 @@ msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" "Der Methode saveKnownGroups wurde ein schlechter Wert zur Verfügung gestellt" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5199,7 +5210,7 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5252,15 +5263,11 @@ msgstr "Konnte OMB-Abonnement-Token nicht löschen." msgid "Could not delete subscription." msgstr "Konnte Abonnement nicht löschen." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Folgen" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s folgt nun %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5269,57 +5276,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Herzlich willkommen bei %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Konnte die Gruppen-URI nicht setzen." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Konnte die lokale Gruppen Information nicht speichern." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Avatar hochladen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Ändere dein Passwort" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Ändere die E-Mail-Verarbeitung" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Passe dein Profil an" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Sonstige Optionen" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Sonstige" @@ -5335,184 +5342,185 @@ msgid "Untitled page" msgstr "Seite ohne Titel" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Hauptnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Eigene" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, Avatar, Passwort und Profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Zum Dienst verbinden" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Verbinden" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Seiteneinstellung ändern" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Einladen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Von der Seite abmelden" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Abmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Neues Benutzerkonto erstellen" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrieren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Suchen" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Seitennachricht" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokale Ansichten" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Neue Nachricht" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Unternavigation" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hilfe" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Über" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "AGB" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privatsphäre" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Quellcode" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Plakette" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet-Software-Lizenz" @@ -5520,7 +5528,7 @@ msgstr "StatusNet-Software-Lizenz" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5530,7 +5538,7 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** ist ein Mikrobloggingdienst." @@ -5539,7 +5547,7 @@ msgstr "**%%site.name%%** ist ein Mikrobloggingdienst." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5551,20 +5559,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "StatusNet-Software-Lizenz" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhalte und Daten von %1$s sind privat und vertraulich." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5572,7 +5580,7 @@ msgstr "" "vorbehalten." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Urheberrecht von Inhalt und Daten liegt bei den Beteiligten. Alle Rechte " @@ -5580,45 +5588,45 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Alle Inhalte und Daten von %1$s sind unter der %2$s Lizenz verfügbar." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Seitenerstellung" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Später" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Vorher" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Root-Element eines Feeds erwartet, aber ganzes XML-Dokument erhalten." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Fremdinhalt kann noch nicht eingebunden werden." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Kann eingebundenen XML-Inhalt nicht verarbeiten." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Eingebundener Base64-Inhalt kann noch nicht verarbeitet werden." @@ -5743,7 +5751,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5758,188 +5766,208 @@ msgid "Icon for this application" msgstr "Programmsymbol" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Beschreibe dein Programm in %d Zeichen" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beschreibe dein Programm in %d Zeichen" +msgstr[1] "Beschreibe dein Programm in %d Zeichen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beschreibe dein Programm" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "Adresse der Homepage dieses Programms" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Quelladresse" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Für diese Anwendung verantwortliche Organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "Homepage der Gruppe oder des Themas" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "aufzurufende Adresse nach der Authentifizierung" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Arbeitsfläche" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typ der Anwendung, Browser oder Arbeitsfläche" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Schreibgeschützt" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lese/Schreibzugriff" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardeinstellung dieses Programms: Schreibgeschützt oder Lese/" "Schreibzugriff" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Abbrechen" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "Lese/Schreibzugriff" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "Schreibgeschützt" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Genehmigte %1$s - „%2$s“ Zugriff." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Widerrufen" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Anhänge" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Anbieter" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Nachrichten in denen dieser Anhang erscheint" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Stichworte für diesen Anhang" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Passwort konnte nicht geändert werden" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Passwort kann nicht geändert werden" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blockieren" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Befehl-Ergebnisse" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-Fehler" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Befehl ausgeführt" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Befehl fehlgeschlagen" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Nachricht mit dieser ID existiert nicht" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Benutzer hat keine letzte Nachricht" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Konnte keinen Benutzer mit dem Namen %s finden" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Konnte keinen lokalen Benutzer mit dem Nick %s finden" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Leider ist dieser Befehl noch nicht implementiert." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Es macht keinen Sinn dich selbst anzustupsen!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Stups an %s abgeschickt" @@ -5948,7 +5976,7 @@ msgstr "Stups an %s abgeschickt" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5960,52 +5988,53 @@ msgstr "" "Mitteilungen: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Nachricht als Favorit markiert." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s ist der Gruppe %2$s beigetreten." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s hat die Gruppe %2$s verlassen." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Vollständiger Name: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Standort: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Über: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6016,32 +6045,32 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" "Nachricht zu lang - maximal %1$d Zeichen erlaubt, du hast %2$d gesendet." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Fehler beim Senden der Nachricht" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Nachricht von %s wiederholt." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Fehler beim Wiederholen der Nachricht" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6049,100 +6078,100 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Antwort an %s gesendet" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Problem beim Speichern der Nachricht." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "OMB-Profile können nicht mit einem Kommando abonniert werden." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "%s abboniert" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Abgemeldet von %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Befehl noch nicht implementiert." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Benachrichtigung deaktiviert." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Konnte Benachrichtigung nicht deaktivieren." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Benachrichtigung aktiviert." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Konnte Benachrichtigung nicht aktivieren." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Die Anmeldung ist deaktiviert" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "Der Link ist nur einmal und für eine Dauer von 2 Minuten gültig: %s" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%s nicht mehr abonniert" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Du hast niemanden abonniert." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du hast diesen Benutzer bereits abonniert:" @@ -6150,14 +6179,14 @@ msgstr[1] "Du hast diese Benutzer bereits abonniert:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Niemand hat dich abonniert." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Die Gegenseite konnte dich nicht abonnieren." @@ -6165,21 +6194,21 @@ msgstr[1] "Die Gegenseite konnte dich nicht abonnieren." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Du bist in keiner Gruppe Mitglied." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du bist Mitglied dieser Gruppe:" msgstr[1] "Du bist Mitglied dieser Gruppen:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6259,39 +6288,61 @@ msgstr "" "tracks - noch nicht implementiert\n" "tracking - noch nicht implementiert\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Keine Konfigurationsdatei gefunden." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Ich habe an folgenden Stellen nach Konfigurationsdateien gesucht: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Bitte die Installation erneut starten um das Problem zu beheben." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Zur Installation gehen." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Aktualisierungen via Instant Messenger (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Aktualisierungen via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Verbindungen" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Programme mit Zugriffserlaubnis" @@ -6314,11 +6365,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Standard-Design wieder hergestellt." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Aus Favoriten entfernen" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Zu den Favoriten hinzufügen" @@ -6338,7 +6389,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -6428,7 +6479,7 @@ msgstr "%s-Gruppen-Mitglieder" #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Blockiert" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6436,7 +6487,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "Blockierte Benutzer der Gruppe „%s“" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6540,11 +6591,11 @@ msgstr "Verlassen" #: lib/logingroupnav.php:80 msgid "Login with a username and password" -msgstr "Mit Nutzernamen und Passwort anmelden" +msgstr "Mit Benutzernamen und Passwort anmelden" #: lib/logingroupnav.php:86 msgid "Sign up for a new account" -msgstr "Registriere ein neues Nutzerkonto" +msgstr "Registriere ein neues Benutzerkonto" #. TRANS: Subject for address confirmation email #: lib/mail.php:174 @@ -6872,7 +6923,7 @@ msgstr "" "schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir " "Nachrichten schicken, die nur du sehen kannst." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "von" @@ -7027,55 +7078,55 @@ msgstr "" "Bitte versuche es später wieder." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "O" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "in" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "Web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "im Zusammenhang" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Wiederholt von" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Antworten" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Nachricht wiederholt" @@ -7146,7 +7197,7 @@ msgid "Tags in %s's notices" msgstr "Stichworte in %ss Nachrichten" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Unbekannter Befehl" @@ -7417,7 +7468,7 @@ msgstr "Benutzeraktionen" #: lib/userprofile.php:237 msgid "User deletion in progress..." -msgstr "Löschung des Nutzers in Arbeit …" +msgstr "Löschung des Benutzers in Arbeit …" #: lib/userprofile.php:263 msgid "Edit profile settings" @@ -7531,11 +7582,16 @@ msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Keine Benutzer ID angegeben" +msgstr "Keine Benutzer-ID angegeben" #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s markierte Nachricht %s als Favorit." + +#~ msgid "%s is now following %s." +#~ msgstr "%s folgt nun %s." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index d394864fb3..8cddfc2b7d 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:41+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:01+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Save access settings" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Save" @@ -113,7 +113,7 @@ msgstr "No such page." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No such user." @@ -358,7 +358,7 @@ msgid "This status is already a favorite." msgstr "This status is already a favourite." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Could not create favourite." @@ -471,18 +471,18 @@ msgid "Group not found." msgstr "Group not found." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "You are already a member of that group." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "You have been blocked from that group by the admin." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Could not join user %1$s to group %2$s." @@ -494,7 +494,7 @@ msgstr "You are not a member of this group." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Could not remove user %1$s to group %2$s." @@ -612,7 +612,7 @@ msgstr "" "give access to your %4$s account to third parties you trust." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Account" @@ -626,7 +626,7 @@ msgstr "Nickname" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -656,12 +656,12 @@ msgid "No such notice." msgstr "No such notice." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Cannot repeat your own notice." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Already repeated that notice." @@ -771,7 +771,7 @@ msgstr "Invalid size." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -802,7 +802,7 @@ msgid "Preview" msgstr "Preview" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Delete" @@ -888,7 +888,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Block this user" @@ -907,8 +907,8 @@ msgstr "Failed to save block information." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "No such group." @@ -1024,7 +1024,7 @@ msgstr "You are not the owner of this application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1089,7 +1089,7 @@ msgid "Do not delete this notice" msgstr "Do not delete this notice" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Delete this notice" @@ -1120,7 +1120,7 @@ msgstr "Delete this user" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Design" @@ -1249,7 +1249,7 @@ msgstr "Reset back to default" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Save" @@ -1369,7 +1369,7 @@ msgid "Could not update group." msgstr "Could not update group." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Could not create aliases" @@ -1425,7 +1425,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel" @@ -1615,7 +1615,7 @@ msgstr "New incoming e-mail address added." msgid "This notice is already a favorite!" msgstr "This notice is already a favourite!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Disfavor favourite" @@ -1917,7 +1917,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s timeline" @@ -2198,7 +2198,7 @@ msgstr "You are already subscribed to these users:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2331,7 +2331,7 @@ msgid "You must be logged in to leave a group." msgstr "You must be logged in to leave a group." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "You are not a member of that group." @@ -2551,14 +2551,14 @@ msgid "New message" msgstr "New message" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "You can't send a message to this user." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "No content!" @@ -2567,7 +2567,7 @@ msgid "No recipient specified." msgstr "No recipient specified." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2579,12 +2579,12 @@ msgstr "Message sent" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Could not create application." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax Error" @@ -2721,8 +2721,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -3081,7 +3081,7 @@ msgstr "Full name" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -3472,7 +3472,7 @@ msgstr "Same as password above. Required." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3628,7 +3628,7 @@ msgstr "You can't repeat your own notice." msgid "You already repeated that notice." msgstr "You already repeated that notice." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repeated" @@ -3763,13 +3763,13 @@ msgid "Name" msgstr "Name" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organization" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -4544,7 +4544,7 @@ msgstr "%s is not listening to anyone." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4667,7 +4667,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profile" @@ -4864,7 +4864,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" @@ -4924,7 +4924,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -4932,29 +4932,25 @@ msgstr "Version" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Favour" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4963,20 +4959,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Invalid size." @@ -4996,13 +4992,28 @@ msgstr "Not part of group." msgid "Group leave failed." msgstr "Group leave failed." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Error saving user; invalid." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Join" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5025,17 +5036,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "You are banned from sending direct messages." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Could not insert message." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Could not update message with new URI." @@ -5090,32 +5101,32 @@ msgid "Problem saving notice." msgstr "Problem saving notice." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem saving group inbox." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5169,13 +5180,9 @@ msgstr "Could not delete subscription OMB token." msgid "Could not delete subscription." msgstr "Could not delete subscription." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5186,57 +5193,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Could not create group." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Could not set group URI." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Could not set group membership." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Could not save local group info." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Change your profile settings" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Upload an avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Change your password" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Change e-mail handling" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Design your profile" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Other options" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Other" @@ -5252,184 +5259,185 @@ msgid "Untitled page" msgstr "Untitled page" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Primary site navigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Change your email, avatar, password, profile" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connect to services" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connect" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Change site configuration" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Invite" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logout from the site" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Logout" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Create an account" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Register" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Login" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Search" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Site notice" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Local views" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Page notice" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Secondary site navigation" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Help" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "About" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "F.A.Q." #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacy" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Source" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contact" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Badge" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet software licence" @@ -5437,7 +5445,7 @@ msgstr "StatusNet software licence" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5447,7 +5455,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is a microblogging service." @@ -5456,7 +5464,7 @@ msgstr "**%%site.name%%** is a microblogging service." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5468,70 +5476,70 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Site content license" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "All %1$s content and data are available under the %2$s licence." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "After" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Before" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5656,7 +5664,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5673,191 +5681,211 @@ msgid "Icon for this application" msgstr "Do not delete this application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Describe your application in %d characters" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Describe your application in %d characters" +msgstr[1] "Describe your application in %d characters" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Describe your application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL of the homepage of this application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Source URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisation responsible for this application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL for the homepage of the organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancel" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoke" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 #, fuzzy msgid "Attachments" msgstr "No attachments." #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 #, fuzzy msgid "Author" msgstr "Authorise URL" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Provider" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "No such attachment." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Password changing failed" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Password changing is not allowed" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Block" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Command results" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax Error" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Command complete" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Command failed" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "No profile with that id." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "User has no last notice" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Could not find a user with nickname %s" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Sorry, this command is not yet implemented." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Nudge sent to %s" @@ -5866,7 +5894,7 @@ msgstr "Nudge sent to %s" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5875,52 +5903,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Notice marked as fave." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullname: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Location: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "About: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5929,133 +5958,133 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Message too long - maximum is %1$d characters, you sent %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Error sending direct message." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Notice posted" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Error repeating notice." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Notice too long - maximum is %d characters, you sent %d" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Reply to %s sent" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Error saving notice." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Specify the name of the user to subscribe to" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Can't subscribe to OMB profiles by command." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Specify the name of the user to unsubscribe from" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Command not yet implemented." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notification off." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Can't turn off notification." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notification on." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Can't turn on notification." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "You are not subscribed to anyone." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "You are already subscribed to these users:" @@ -6063,14 +6092,14 @@ msgstr[1] "You are already subscribed to these users:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "No one is subscribed to you." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Could not subscribe other to you." @@ -6078,21 +6107,21 @@ msgstr[1] "Could not subscribe other to you." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "You are not a member of any groups." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "You are not a member of that group." msgstr[1] "You are not a member of that group." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6172,39 +6201,61 @@ msgstr "" "tracks - not yet implemented.\n" "tracking - not yet implemented.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "No configuration file found" -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Go to the installer." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "I.M." -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Updates by instant messenger (I.M.)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Updates by SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connections" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Authorised connected applications" @@ -6227,11 +6278,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Design preferences saved." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Disfavour this notice" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Favour this notice" @@ -6251,7 +6302,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6700,7 +6751,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "from" @@ -6845,55 +6896,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in context" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repeated by" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Notice repeated" @@ -6964,7 +7015,7 @@ msgid "Tags in %s's notices" msgstr "Tags in %s's notices" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Unknown" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 0f92eec540..453327949a 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:42+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:03+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Konservu atingan agordon" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Konservu" @@ -115,7 +115,7 @@ msgstr "Ne estas tiu paĝo." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ne ekzistas tiu uzanto." @@ -358,7 +358,7 @@ msgid "This status is already a favorite." msgstr "Ĉi tiu stato jam estas ŝatata." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Malsukcesis krei ŝataton." @@ -472,18 +472,18 @@ msgid "Group not found." msgstr "Grupo ne troviĝas." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Vi estas jam grupano." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "La administranto blokis vin de tiu grupo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "La uzanto %1$*s ne povas aliĝi al la grupo %2$*s." @@ -495,7 +495,7 @@ msgstr "Vi ne estas grupano." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Malsukcesis forigi uzanton %1$s de grupo %2$s." @@ -612,7 +612,7 @@ msgstr "" "via %4$s konto al triaj partioj, kiujn vi fidas." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -626,7 +626,7 @@ msgstr "Kromnomo" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Pasvorto" @@ -656,12 +656,12 @@ msgid "No such notice." msgstr "Ne estas tiu avizo." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Vi ne povas ripeti vian propran avizon." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "La avizo jam ripetiĝis." @@ -771,7 +771,7 @@ msgstr "Grando nevalida." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Vizaĝbildo" @@ -802,7 +802,7 @@ msgid "Preview" msgstr "Antaŭrigardo" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Forigi" @@ -887,7 +887,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloki la uzanton" @@ -906,8 +906,8 @@ msgstr "Eraris konservi blokado-informon." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Ne estas tiu grupo." @@ -1023,7 +1023,7 @@ msgstr "Vi ne estas la posedanto de ĉi tiu aplikaĵo." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Problemo okazas pri via seancĵetono." @@ -1086,7 +1086,7 @@ msgid "Do not delete this notice" msgstr "Ne forigi la avizon" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Forigi la avizon" @@ -1117,7 +1117,7 @@ msgstr "Forigi la uzanton" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Aspekto" @@ -1243,7 +1243,7 @@ msgstr "Redefaŭltiĝi" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Konservi" @@ -1363,7 +1363,7 @@ msgid "Could not update group." msgstr "Malsukcesis ĝisdatigi grupon." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Malsukcesis krei alinomon." @@ -1419,7 +1419,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Nuligi" @@ -1609,7 +1609,7 @@ msgstr "Nova alvena retpoŝtadreso aldonita." msgid "This notice is already a favorite!" msgstr "Ĉi tiu avizo jam estas ŝatata." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Malŝati ŝataton." @@ -1907,7 +1907,7 @@ msgstr "Estrigi la uzanton" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Tempstrio de %s" @@ -2188,7 +2188,7 @@ msgstr "Vi jam abonas jenajn uzantojn:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2318,7 +2318,7 @@ msgid "You must be logged in to leave a group." msgstr "Ensalutu por eksaniĝi." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Vi ne estas grupano." @@ -2537,14 +2537,14 @@ msgid "New message" msgstr "Nova mesaĝo" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Vi ne povas sendi mesaĝon al la uzanto." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Neniu enhavo!" @@ -2553,7 +2553,7 @@ msgid "No recipient specified." msgstr "Neniu ricevonto speifiĝas." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Ne sendu mesaĝon al vi mem! Simple suspiru anstataŭ." @@ -2564,12 +2564,12 @@ msgstr "Mesaĝo sendita" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Rekta mesaĝo al %s sendiĝis." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Eraro de Ajax" @@ -2706,8 +2706,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bonvolu, nur %s-URL per plata HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Datumformato ne subteniĝas." @@ -3059,7 +3059,7 @@ msgstr "Plena nomo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hejmpaĝo" @@ -3449,7 +3449,7 @@ msgstr "Same kiel supra pasvorto. Bezonate." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Retpoŝto" @@ -3605,7 +3605,7 @@ msgstr "Vi ne povas ripeti vian propran avizon." msgid "You already repeated that notice." msgstr "La avizo jam ripetiĝis." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Ripetita" @@ -3741,13 +3741,13 @@ msgid "Name" msgstr "Nomo" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizaĵo" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Priskribo" @@ -4518,7 +4518,7 @@ msgstr "%s ne abonas iun ajn." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4640,7 +4640,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nevalida defaŭlta abono: '%1$s' ne estas uzanto." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" @@ -4830,7 +4830,7 @@ msgstr "Provu [serĉi grupojn](%%*action.*groupsearch%%) kaj aniĝi." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Ĝisdatiĝoj de %1$s ĉe %2$s!" @@ -4890,7 +4890,7 @@ msgid "Plugins" msgstr "Kromprogramo" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versio" @@ -4898,29 +4898,25 @@ msgstr "Versio" msgid "Author(s)" msgstr "Aŭtoro(j)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Ŝati" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Malsukcesis trakti URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin pensas ke io neeblas." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4931,20 +4927,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Dosiero tiel granda superos vian uzantan kvoton kun %d bajtoj." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Dosiero tiel granda superos vian monatan kvoton kun %d bajtoj." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nevalida dosiernomo." @@ -4963,13 +4959,28 @@ msgstr "Ne grupano." msgid "Group leave failed." msgstr "Malsukcesis foriri de grupo." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Eraris konservi uzanton: nevalida." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Aniĝi" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4992,17 +5003,17 @@ msgid "No database name or DSN found anywhere." msgstr "Ne troviĝas datumbaza nomo aŭ DSN ie ajn." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Vi blokiĝis de sendi rektan mesaĝon." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Malsukcesis enmeti mesaĝon." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Malsukcesis ĝisdatigi mesaĝon per nova URI" @@ -5056,32 +5067,32 @@ msgid "Problem saving notice." msgstr "Malsukcesis konservi avizon." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Fuŝa tipo donita al saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Malsukcesis konservi grupan alvenkeston." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Malsukcesis revoki rolon \"%1$s\" de uzanto #%2$d; ĝi ne ekzistas." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "Malsukcesis revoki rolon \"%1$s\" de uzanto #%2$d; datumbaza eraro." @@ -5131,13 +5142,9 @@ msgstr "Malsukcesis forigi abonan OMB-ĵetonon." msgid "Could not delete subscription." msgstr "Malsukcesis forigi abonon." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5148,57 +5155,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bonvenon al %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Malsukcesis krei grupon." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Malsukcesis ĝisdatigi grupan URI." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Malsukcesis ĝisdatigi grupan anecon." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Malsukcesis lokan grupan informon." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Ŝanĝi vian profilan agordon." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Alŝuti vizaĝbildon" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Ŝanĝi vian pasvorton." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Ŝanĝi retpoŝtan disponadon." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Desegni vian profilon" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Aliaj" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Alia" @@ -5214,184 +5221,185 @@ msgid "Untitled page" msgstr "Sentitola paĝo" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Unua reteja navigado" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Tempstrio pri vi kaj amikoj" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Persona" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ŝanĝu la retpoŝtadreson, vizaĝbildon, pasvorton aŭ la profilon" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Konekti al servoj" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Konekti" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ŝanĝi agordojn de la retejo" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administri" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviti amikojn kaj kolegojn al %s kun vi" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Inviti" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Elsaluti el la retejo" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr " Elsaluti" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Krei konton" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registriĝi" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ensaluti al la retejo" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Ensaluti" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Helpu min!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Helpo" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Serĉi homon aŭ tekston" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Serĉi" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Reteja anonco" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Loka vido" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Paĝa anonco" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Dua reteja navigado" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Helpo" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Enkonduko" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Oftaj demandoj" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Serva Kondiĉo" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privateco" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fontkodo" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insigno" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licenco de la programaro StatusNet" @@ -5399,7 +5407,7 @@ msgstr "Licenco de la programaro StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5409,7 +5417,7 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** estas mikrobloga servo." @@ -5418,7 +5426,7 @@ msgstr "**%%site.name%%** estas mikrobloga servo." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5430,27 +5438,27 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Reteja enhava permesilo" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Enhavo kaj datumo de %1$s estas privata kaj konfidenca." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Enhava kaj datuma aŭtorrajto apartenas al %1$s. Ĉiuj rajtoj rezervitaj." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Enhava kaj datuma aŭtorrajto apartenas al kontribuintoj. Ĉiuj rajtoj " @@ -5458,45 +5466,45 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Ĉiuj enhavo kaj datumo ĉe %1$s estas havebla sub permesilo %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paĝado" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Poste" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Antaŭe" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Ankoraŭ ne eblas trakti foran enhavon." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Ankoraŭ ne eblas trakti enigitan XML-aĵon." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Ankoraŭ ne eblas trakti enigitan Base64-enhavon." @@ -5621,7 +5629,7 @@ msgid "Tried to revoke unknown token." msgstr "Provis revoki nekonatan ĵetonon." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Malsukcesis forigi revokitan ĵetonon." @@ -5636,186 +5644,206 @@ msgid "Icon for this application" msgstr "Emblemo por tiu ĉi aplikaĵo" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Priskribu vian aplikaĵon per malpli ol %d literoj." +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Priskribu vian aplikaĵon per malpli ol %d literoj." +msgstr[1] "Priskribu vian aplikaĵon per malpli ol %d literoj." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Priskribu vian aplikaĵon" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL al la hejmpaĝo de tiu ĉi aplikaĵo" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Fonta URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizo, kiu prizorgi la aplikaĵon" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL al la hejmpaĝo de la organizo" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL por alidirekto post aŭtentigado" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Foliumilo" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Labortablo" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo de aplikaĵo, foliumilo aŭ labortablo" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Nur-lege" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Leg-skribe" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "Defaŭta aliro por la aplikaĵo: nur-lege aŭ leg-skribe." #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Nuligi" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "leg-skribe" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "nur-lege" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Permesita %1$s - aliro \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoki" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Aldonaĵo" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Aŭtoro" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Donanto" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Avizo, kie ĉi tiu aldonaĵo aperos" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etikedoj por ĉi tiu aldonaĵo" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "La ŝanĝo de pasvorto maltrafis" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Ne estas permesita ŝanĝi la pasvorton" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloki" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Komandaj rezultoj" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Eraro de Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Komando kompleta" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Komando maltrafis" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Avizo kun tiu identigaĵo ne ekzistas." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "La uzanto ne havas lastan averton." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Ne povas trovi uzanton kun kromnomo %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Ne troviĝas loka uzanto kun alnomo %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Pardonon, la komando ankoraŭ ne realiĝas." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Iom sensencas puŝeti vin mem!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Puŝeto sendiĝas al %s" @@ -5824,7 +5852,7 @@ msgstr "Puŝeto sendiĝas al %s" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5836,52 +5864,53 @@ msgstr "" "Avizoj: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Avizo ŝatiĝas." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s aniĝis al grupo %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s foriras de grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Plennomo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Loko: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Hejmpaĝo: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Biografio: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5892,31 +5921,31 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Mesaĝo tro longas - longlimo estas %1$d, via estas %2$d" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Eraris sendi rektan mesaĝon." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Avizo de %s ripetiĝas." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Eraris ripeti avizon." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5925,100 +5954,100 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Respondo al %s sendiĝas." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Eraris sendi avizon." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Specifu nomon de la abonota uzanto." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Malsukcesis aboni OMB-profilon per komando." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "%s abonita" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Specifu la nomon de uzanto malabonota." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "%s malabonita." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Komando ankoraŭ ne realigita." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Sciigo for." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Malsukcesis malŝalti sciigon." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Sciigo en." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Malsukcesis ŝalti sciigon." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Ensaluta komando malebliĝas." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "Ĉi tiu ligilo estas uzebla nur unufoje kaj valida nur 2 minutojn: %s." #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%s malaboniĝas." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Vi ne abonas iun ajn." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vi abonas jenan homon:" @@ -6026,14 +6055,14 @@ msgstr[1] "Vi abonas jenajn homojn:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Neniu abonas vin." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "La homo abonas vin:" @@ -6041,21 +6070,21 @@ msgstr[1] "La homoj abonas vin:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Vi ne estas grupano de iu ajn grupo." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vi estas grupano de jena grupo:" msgstr[1] "Vi estas grupano de jenaj grupoj:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6135,39 +6164,61 @@ msgstr "" "tracks - ankoraŭ ne realigita.\n" "tracking -ankoraŭ ne realigita.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ne troviĝas agorda dosiero. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Mi serĉis agordan dosieron je jenaj lokoj: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Vi eble volas uzi instalilon por ripari tiun ĉi." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Al la instalilo." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Tujmesaĝilo" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Ĝisdatiĝo per tujmesaĝilo." -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Ĝisdatiĝo per SMM" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Konektoj" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Konektitaj aplikaĵoj rajtigitaj" @@ -6189,11 +6240,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Desegnaj defaŭltoj konserviĝas." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Neŝati la avizon" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Ŝati la avizon" @@ -6213,7 +6264,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6746,7 +6797,7 @@ msgstr "" "Vi ne ricevis privatan mesaĝon. Vi povas sendi privatan mesaĝon al iu kaj " "interparoli kun ili. Homo sendas al vi mesaĝon al vi sole." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -6900,55 +6951,55 @@ msgstr "" "poste." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "al" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "TTT" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "kuntekste" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Ripetita de" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Respondi ĉi tiun avizon" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Respondi" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Avizo ripetiĝas" @@ -7019,7 +7070,7 @@ msgid "Tags in %s's notices" msgstr "Etikedoj en avizoj de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Nekonata" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 49fdce520b..c203a1d94d 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:43+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Guardar" @@ -117,7 +117,7 @@ msgstr "No existe tal página." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No existe ese usuario." @@ -361,7 +361,7 @@ msgid "This status is already a favorite." msgstr "Este status ya está en favoritos." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "No se pudo crear favorito." @@ -476,18 +476,18 @@ msgid "Group not found." msgstr "Grupo no encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Has sido bloqueado de ese grupo por el administrador." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No se pudo unir el usuario %s al grupo %s" @@ -499,7 +499,7 @@ msgstr "No eres miembro de este grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "No se pudo eliminar al usuario %1$s del grupo %2$s." @@ -619,7 +619,7 @@ msgstr "" "debes dar acceso a tu cuenta %4$s a terceras partes en las que confíes." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Cuenta" @@ -633,7 +633,7 @@ msgstr "Usuario" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contraseña" @@ -663,12 +663,12 @@ msgid "No such notice." msgstr "No existe ese mensaje." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "No puedes repetir tus propios mensajes" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Este mensaje ya se ha repetido." @@ -779,7 +779,7 @@ msgstr "Tamaño inválido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Imagen" @@ -810,7 +810,7 @@ msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Borrar" @@ -896,7 +896,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuario." @@ -915,8 +915,8 @@ msgstr "No se guardó información de bloqueo." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "No existe ese grupo." @@ -1033,7 +1033,7 @@ msgstr "No eres el propietario de esta aplicación." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1098,7 +1098,7 @@ msgid "Do not delete this notice" msgstr "No eliminar este mensaje" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Borrar este mensaje" @@ -1129,7 +1129,7 @@ msgstr "Borrar este usuario" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Diseño" @@ -1257,7 +1257,7 @@ msgstr "Volver a los valores predeterminados" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" @@ -1377,7 +1377,7 @@ msgid "Could not update group." msgstr "No se pudo actualizar el grupo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "No fue posible crear alias." @@ -1433,7 +1433,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1627,7 +1627,7 @@ msgstr "Nueva dirección de correo entrante agregada." msgid "This notice is already a favorite!" msgstr "¡Este mensaje ya está en favoritos!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Sacar favorito" @@ -1933,7 +1933,7 @@ msgstr "Convertir a este usuario en administrador" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "línea temporal de %s" @@ -2217,7 +2217,7 @@ msgstr "Ya estás suscrito a estos usuarios:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2350,7 +2350,7 @@ msgid "You must be logged in to leave a group." msgstr "Debes estar conectado para dejar un grupo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "No eres miembro de este grupo." @@ -2574,14 +2574,14 @@ msgid "New message" msgstr "Nuevo Mensaje " #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "No puedes enviar mensaje a este usuario." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "¡Ningún contenido!" @@ -2590,7 +2590,7 @@ msgid "No recipient specified." msgstr "No se especificó receptor." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." @@ -2601,12 +2601,12 @@ msgstr "Mensaje enviado" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Se ha enviado un mensaje directo a %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Error de Ajax" @@ -2747,8 +2747,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solamente %s URL sobre HTTP simples, por favor." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "No es un formato de datos compatible." @@ -3103,7 +3103,7 @@ msgstr "Nombre completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página de inicio" @@ -3508,7 +3508,7 @@ msgstr "Igual a la contraseña de arriba. Requerida" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correo electrónico" @@ -3671,7 +3671,7 @@ msgstr "No puedes repetir tus propios mensajes." msgid "You already repeated that notice." msgstr "Ya has repetido este mensaje." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetido" @@ -3807,13 +3807,13 @@ msgid "Name" msgstr "Nombre" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organización" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descripción" @@ -4602,7 +4602,7 @@ msgstr "%s no está escuchando a nadie." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4729,7 +4729,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4924,7 +4924,7 @@ msgstr "Intenta [buscar gupos](%%action.groupsearch%%) y unirte a ellos." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" @@ -4985,7 +4985,7 @@ msgid "Plugins" msgstr "Complementos" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versión" @@ -4993,29 +4993,25 @@ msgstr "Versión" msgid "Author(s)" msgstr "Autor(es)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Aceptar" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "No se puede procesar URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr " Robin piensa que algo es imposible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5026,7 +5022,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5034,13 +5030,13 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un archivo tan grande podría sobrepasar tu cuota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nombre de archivo inválido." @@ -5059,13 +5055,28 @@ msgstr "No es parte del grupo." msgid "Group leave failed." msgstr "Ha fallado la acción de abandonar el grupo" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Error al guardar el usuario; inválido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Unirse" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5088,17 +5099,17 @@ msgid "No database name or DSN found anywhere." msgstr "Ningún nombre de base de datos o DSN encontrado." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Se te ha inhabilitado para enviar mensajes directos." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "No se pudo insertar mensaje." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "No se pudo actualizar mensaje con nuevo URI." @@ -5154,32 +5165,32 @@ msgid "Problem saving notice." msgstr "Hubo un problema al guardar el mensaje." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Mal tipo proveído a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Hubo un problema al guarda la bandeja de entrada del grupo." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "No se puede revocar rol \"%1$s\" para usuario #%2$d; no existe." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5231,13 +5242,9 @@ msgstr "No se pudo eliminar la ficha OMB de suscripción." msgid "Could not delete subscription." msgstr "No se pudo eliminar la suscripción." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5248,57 +5255,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenido a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "No se pudo crear grupo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "No se pudo configurar el URI del grupo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "No se pudo configurar la membresía del grupo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "No se ha podido guardar la información del grupo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Subir una imagen." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cambia tu contraseña" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Cambiar el manejo del correo." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Diseñar tu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Otras opciones" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Otro" @@ -5314,184 +5321,185 @@ msgid "Untitled page" msgstr "Página sin título" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegación de sitio primario" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal y línea temporal de amistades" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, imagen, contraseña, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conectar a los servicios" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Conectarse" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Cambiar la configuración del sitio" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amistades y compañeros a unirse a tí en %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Cerrar sesión en el sitio" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Cerrar sesión" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear una cuenta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrarse" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar sesión en el sitio" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "¡Ayúdame!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Ayuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Mensaje de sitio" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistas locales" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Mensaje de página" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ayuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Acerca de" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Preguntas Frecuentes" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacidad" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fuente" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Ponerse en contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insignia" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" @@ -5499,7 +5507,7 @@ msgstr "Licencia de software de StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5509,7 +5517,7 @@ msgstr "" "[%%site.broughtby%%**](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblogueo." @@ -5518,7 +5526,7 @@ msgstr "**%%site.name%%** es un servicio de microblogueo." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5530,27 +5538,27 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licencia de contenido del sitio" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "El contenido y datos de %1$s son privados y confidenciales." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Copyright del contenido y los datos de%1$s. Todos los derechos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Derechos de autor de contenido y datos por los colaboradores. Todos los " @@ -5558,7 +5566,7 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5566,41 +5574,41 @@ msgstr "" "$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginación" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Después" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Antes" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "A espera de un elemento de alimentación de raíz, pero se obtuvo un documento " "XML entero." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Aún no se puede manejar contenido remoto." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Aún no se puede manejar contenido XML incrustado." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Aún no se puede manejar contenido incrustado Base64." @@ -5727,7 +5735,7 @@ msgid "Tried to revoke unknown token." msgstr "Se intentó revocar un token desconocido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "No se pudo eliminar el token revocado." @@ -5742,188 +5750,208 @@ msgid "Icon for this application" msgstr "Icono para esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Describe tu aplicación en %d caracteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Describe tu aplicación en %d caracteres" +msgstr[1] "Describe tu aplicación en %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Describe tu aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL de la página principal de esta aplicación" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "La URL de origen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organización responsable de esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL de la página principal de la organización" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL al que se redirigirá después de la autenticación" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Escritorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador o de escritorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Solo lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Solo escritura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lectura y escritura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "sólo lectura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprobado el %1$s - acceso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Adjuntos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Proveedor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Mensajes donde aparece este adjunto" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquetas de este archivo adjunto" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "El cambio de contraseña ha fallado" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "No está permitido cambiar la contraseña" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquear" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados de comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Error de Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comando completo" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comando falló" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "No existe ningún mensaje con ese ID." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "El/La usuario/a no tiene ningún último mensaje" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "No se pudo encontrar el usuario con el nombre de usuario %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" "No se pudo encontrar a ningún usuario local con el nombre de usuario %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Disculpa, todavía no se implementa este comando." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "¡No tiene sentido darte un toque a ti mismo!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Toque enviado a %s." @@ -5932,7 +5960,7 @@ msgstr "Toque enviado a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5944,52 +5972,53 @@ msgstr "" "Avisos: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Mensaje marcado como favorito." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s se unió al grupo %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s dejo el grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nombre completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Lugar: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Página de inicio: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Sobre: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6000,111 +6029,111 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaje muy largo - máximo %1$d caracteres, enviaste %2$d" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Error al enviar mensaje directo." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Se ha repetido el mensaje de %s." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Ha habido un error al repetir el mensaje." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaje demasiado largo - el máximo es de 140 caracteres, enviaste %d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Se ha enviado la respuesta a %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Error al guardar el mensaje." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Especificar el nombre del usuario al cual se quiere suscribir." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "No te puedes suscribir a perfiles de OMB por orden." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Suscrito a %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Especifica el nombre del usuario del cual cancelar la suscripción." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Cancelada la suscripción a %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Todavía no se implementa comando." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificación no activa." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "No se puede desactivar notificación." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificación activada." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "No se puede activar notificación." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "El comando de inicio de sesión está inhabilitado." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6113,20 +6142,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Cancelada la suscripción a %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "No estás suscrito a nadie." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ya estás suscrito a estos usuarios:" @@ -6134,14 +6163,14 @@ msgstr[1] "Ya estás suscrito a estos usuarios:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nadie está suscrito a ti." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "No se pudo suscribir otro a ti." @@ -6149,21 +6178,21 @@ msgstr[1] "No se pudo suscribir otro a ti." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "No eres miembro de ningún grupo" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Eres miembro de este grupo:" msgstr[1] "Eres miembro de estos grupos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6243,39 +6272,61 @@ msgstr "" "tracks - aún sin implementar.\n" "tracking - aún sin implementar.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ningún archivo de configuración encontrado. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "He buscado archivos de configuración en los siguientes lugares: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Quizá desees ejecutar el instalador para solucionar este problema." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir al instalador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualizaciones por mensajería instantánea" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualizaciones por sms" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conecciones" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicaciones conectadas autorizadas" @@ -6298,11 +6349,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Diseño predeterminado restaurado." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Excluir este mensaje de mis favoritos" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Incluir este mensaje en tus favoritos" @@ -6322,7 +6373,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Amistad de amistad" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6861,7 +6912,7 @@ msgstr "" "otros usuarios partícipes de la conversación. La gente puede enviarte " "mensajes que sólo puedas leer tú." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "desde" @@ -7015,55 +7066,55 @@ msgstr "" "favor, inténtalo más tarde." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "en" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "red" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "en contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetido por" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a este mensaje." -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Mensaje repetido" @@ -7134,7 +7185,7 @@ msgid "Tags in %s's notices" msgstr "Etiquetas en mensajes de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Desconocido" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 61e15d415b..b7769db2d5 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:44+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:05+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -85,7 +85,7 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "ذخیره" @@ -116,7 +116,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "چنین کاربری وجود ندارد." @@ -356,7 +356,7 @@ msgid "This status is already a favorite." msgstr "این پیغام را پیش‌تر به برگزیده‌های خود اضافه کرده‌اید" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "نمی‌توان پیام را برگزید." @@ -470,18 +470,18 @@ msgid "Group not found." msgstr "گروه یافت نشد." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "شما از پیش یک عضو این گروه هستید." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "دسترسی شما به گروه توسط مدیر آن محدود شده است." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "نمی‌توان کاربر %1$s را عضو گروه %2$s کرد." @@ -493,7 +493,7 @@ msgstr "شما یک عضو این گروه نیستید." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "خارج شدن %s از گروه %s نا موفق بود" @@ -610,7 +610,7 @@ msgstr "" "بدهید." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "حساب کاربری" @@ -624,7 +624,7 @@ msgstr "نام کاربری" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "گذرواژه" @@ -654,12 +654,12 @@ msgid "No such notice." msgstr "چنین پیامی وجود ندارد." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "نمی توانید پیام خود را تکرار کنید." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "قبلا آن پیام تکرار شده است." @@ -769,7 +769,7 @@ msgstr "اندازه نادرست است." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "چهره" @@ -801,7 +801,7 @@ msgid "Preview" msgstr "پیش‌نمایش" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "حذف" @@ -889,7 +889,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -908,8 +908,8 @@ msgstr "ذخیرهٔ ردیف اطلاعات شکست خورد." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "چنین گروهی وجود ندارد." @@ -1025,7 +1025,7 @@ msgstr "شما مالک این برنامه نیستید." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "یک مشکل با رمز نشست شما وجود داشت." @@ -1090,7 +1090,7 @@ msgid "Do not delete this notice" msgstr "این پیام را پاک نکن" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -1121,7 +1121,7 @@ msgstr "حذف این کاربر" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "طرح" @@ -1251,7 +1251,7 @@ msgstr "برگشت به حالت پیش گزیده" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "ذخیره‌کردن" @@ -1373,7 +1373,7 @@ msgid "Could not update group." msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "نمی‌توان نام‌های مستعار را ساخت." @@ -1429,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "انصراف" @@ -1622,7 +1622,7 @@ msgstr "نشانی ورودی جدید اضافه شد." msgid "This notice is already a favorite!" msgstr "این پیام ازقبل برگزیده شده است!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "خارج‌کردن از برگزیده‌ها" @@ -1922,7 +1922,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "خط‌زمانی %s" @@ -2201,7 +2201,7 @@ msgstr "شما هم‌اکنون مشترک این کاربران هستید:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2334,7 +2334,7 @@ msgid "You must be logged in to leave a group." msgstr "برای ترک یک گروه، شما باید وارد شده باشید." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "شما یک کاربر این گروه نیستید." @@ -2554,14 +2554,14 @@ msgid "New message" msgstr "پیام جدید" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "شما نمی توانید به این کاربر پیام بفرستید." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "محتوایی وحود ندارد!" @@ -2570,7 +2570,7 @@ msgid "No recipient specified." msgstr "هیچ گیرنده ای مشخص نشده" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "یک پیام را به خودتان نفرستید؛ در عوض آن را آهسته برای خود بگویید." @@ -2581,12 +2581,12 @@ msgstr "پیام فرستاده‌شد" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "پیام مستقیم به %s فرستاده شد." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "خطای آژاکس" @@ -2724,8 +2724,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "لطفا تنها از نشانی‌های اینترنتی %s از راه HTTP ساده استفاده کنید." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -3078,7 +3078,7 @@ msgstr "نام‌کامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "صفحهٔ خانگی" @@ -3470,7 +3470,7 @@ msgstr "با گذرواژهٔ بالا یکسان باشد. مورد نیاز ا #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "پست الکترونیکی" @@ -3629,7 +3629,7 @@ msgstr "شما نمی‌توانید پیام خودتان را تکرار کن msgid "You already repeated that notice." msgstr "شما قبلا آن پیام را تکرار کرده‌اید." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "تکرار شده" @@ -3766,13 +3766,13 @@ msgid "Name" msgstr "نام" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "سازمان" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "توصیف" @@ -4558,7 +4558,7 @@ msgstr "%s هیچ‌کس را دنبال نمی‌کند." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "پیامک" @@ -4682,7 +4682,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "اشتراک پیش‌فرض نامعتبر است: «%1$s» کاربر نیست." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "نمایه" @@ -4872,7 +4872,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "به روز رسانی‌های %1$s در %2$s" @@ -4931,7 +4931,7 @@ msgid "Plugins" msgstr "افزونه‌ها" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "نسخه" @@ -4939,29 +4939,25 @@ msgstr "نسخه" msgid "Author(s)" msgstr "مؤلف(ها)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "برگزیده‌کردن" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, fuzzy, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4972,7 +4968,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -4980,7 +4976,7 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" @@ -4988,7 +4984,7 @@ msgstr "" "بگذرد." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "نام‌پرونده نادرست است." @@ -5007,13 +5003,28 @@ msgstr "بخشی از گروه نیست." msgid "Group leave failed." msgstr "ترک کردن گروه شکست خورد." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "هنگام ذخیرهٔ کاربر خطا رخ داد؛ نامعتبر است." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "مشارکت کردن" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5036,17 +5047,17 @@ msgid "No database name or DSN found anywhere." msgstr "هیچ پایگاه‌داده یا DSN هیچ‌جا پیدا نشد." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "شما از فرستادن پیام مستقیم مردود شده اید." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "پیغام نمی تواند درج گردد" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "نمی‌توان پیام را تجزیه کرد." @@ -5103,32 +5114,32 @@ msgid "Problem saving notice." msgstr "هنگام ذخیرهٔ پیام مشکلی ایجاد شد." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "نمی‌توان نقش «%1$s» را از کاربر #%2$d گرفت، وجود ندارد." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5180,13 +5191,9 @@ msgstr "نمی‌توان اشتراک را ذخیره کرد." msgid "Could not delete subscription." msgstr "نمی‌توان اشتراک را ذخیره کرد." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5197,58 +5204,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s، به %1$s خوش آمدید!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "نمیتوان گروه را تشکیل داد" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 #, fuzzy msgid "Could not set group URI." msgstr "نمیتوان گروه را تشکیل داد" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "نمی‌توان عضویت گروه را تعیین کرد." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "نمی‌توان اطلاعات گروه محلی را ذخیره کرد." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "تنظیمات نمایه‌تان را تغییر دهید" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "بارگذاری یک چهره" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "تغییر گذرواژهٔ شما" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "تغیر تنظیمات ایمل ." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "نمایهٔ خود را طراحی کنید" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "انتخابات دیگر" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "دیگر" @@ -5264,184 +5271,185 @@ msgid "Untitled page" msgstr "صفحهٔ بدون عنوان" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "مسیریابی اصلی وب‌گاه" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "نمایهٔ شخصی و خط‌زمانی دوستان" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "شخصی" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "پست الکترونیکی، تصویر، گذرواژه یا نمایهٔ خودتان را تغییر دهید" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "اتصال به سرویس‌ها" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "وصل‌شدن" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "تغییر پیکربندی وب‌گاه" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "مدیر" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "دوستان و همکاران‌تان را دعوت کنید تا به شما در %s بپیوندند" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "دعوت‌کردن" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "خارج‌شدن از وب‌گاه" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "خروج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "ساختن یک جساب‌کاربری" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "ثبت‌نام" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "ورود به وب‌گاه" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "ورود" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "به من کمک کنید!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "کمک" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "جست‌وجو برای افراد یا متن" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "جست‌وجو" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "پیام وب‌گاه" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "دید محلی" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "پیام صفحه" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "مسیریابی فرعی وب‌گاه" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "کمک" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "دربارهٔ" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "سوال‌های رایج" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "شرایط سرویس" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "خصوصی" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "منبع" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "تماس" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "نشان" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet مجوز نرم افزار" @@ -5449,7 +5457,7 @@ msgstr "StatusNet مجوز نرم افزار" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5459,7 +5467,7 @@ msgstr "" "broughtbyurl%%) برای شما راه‌اندازی شده است." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است." @@ -5468,7 +5476,7 @@ msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5480,71 +5488,71 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html) در دسترس است." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "مجوز محتویات وب‌گاه" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "محتویات و داده‌های %1$s خصوصی و محرمانه هستند." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "حق تکثیر محتوا و داده‌ها با %1$s است. تمام حقوق محفوظ است." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "حق تکثیر محتوا و داده‌ها با مشارکت‌کنندگان است. تمام حقوق محفوظ است." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "تمام محتویات و داده‌های %1$s زیر مجوز %2$s در دسترس هستند." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "صفحه بندى" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "پس از" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "قبل از" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "در حال انتظار برای یک عامل خوراک ریشه‌ای، اما یک سند XML کامل دریافت شد." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "هنوز نمی‌توان محتویات ازراه‌دور را به‌کار برد." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "هنوز نمی‌توان محتویات XML جاسازی‌شده را به‌کار برد." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "هنوز نمی‌توان محتوای جاسازی‌شدهٔ Base64 را به‌کار برد." @@ -5671,7 +5679,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5686,187 +5694,206 @@ msgid "Icon for this application" msgstr "شمایل این برنامه" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "برنامهٔ خود را در %d نویسه توصیف کنید" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "برنامهٔ خود را در %d نویسه توصیف کنید" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "برنامهٔ خود را توصیف کنید" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "نشانی اینترنتی صفحهٔ خانگی این برنامه" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "نشانی اینترنتی منبع" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "سازمان مسئول این برنامه" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "نشانی اینترنتی برای صفحهٔ خانگی سازمان" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "نشانی اینترنتی برای دوباره‌هدایت‌کردن بعد از تصدیق" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "مرورگر" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "میزکار" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "نوع برنامه، مرورگر یا میزکار" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "تنها خواندنی" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "خواندن-نوشتن" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "دسترسی پیش‌فرض برای این برنامه: تنها خواندنی یا خواندن-نوشتن" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "انصراف" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "خواندن-نوشتن" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "تنها خواندنی" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "تایید شده %1$s - با دسترسی «%2$s»" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "لغو کردن" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "ضمائم" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "مؤلف" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "مهیا کننده" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "پیام‌هایی که این پیوست در آن‌جا ظاهر می‌شود" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "برچسب‌ها برای این پیوست" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "تغییر گذرواژه شکست خورد" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "تغییر گذرواژه مجاز نیست" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "بازداشتن" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "نتیجه دستور" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "خطای آژاکس" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "دستور انجام شد" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "فرمان شکست خورد" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "پیامی با آن شناسه وجود ندارد." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "کاربر آگهی آخر ندارد" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "نمی‌توان یک کاربر را با نام مستعار %s پیدا کرد." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "نمی‌توان یک کاربر را با نام مستعار %s پیدا کرد." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "متاسفانه این دستور هنوز پیاده نشده است." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "خیلی جالب نیست که به خودتان یادآوری کنید!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "یادآوری به %s فرستاده شد." @@ -5875,7 +5902,7 @@ msgstr "یادآوری به %s فرستاده شد." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5887,52 +5914,53 @@ msgstr "" "پیام‌ها: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "پیام به‌عنوان برگزیده مشخص شد." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s به گروه %2$s پیوست." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s گروه %2$s را ترک کرد." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "نام کامل : %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "موقعیت : %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "صفحه خانگی : %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "دربارهٔ: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5943,7 +5971,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5951,25 +5979,25 @@ msgstr "" "فرستادید." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "خطا در فرستادن پیام مستقیم." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "پیام %s تکرار شد." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "هنگام تکرار پیام خطایی رخ داد." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5978,80 +6006,80 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "پاسخ به %s فرستاده شد." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "هنگام ذخیرهٔ پیام خطا رخ داد." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "نمی‌توان با دستور مشترک نمایه‌های OMB شد." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "اشتراک از %s لغو شد." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "دستور هنوز پیاده نشده است." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "آگاه‌سازی خاموش شد." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "ناتوان در خاموش کردن آگاه سازی." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "آگاه سازی فعال است." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "ناتوان در روشن کردن آگاه سازی." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "فرمان ورود غیرفعال شده است." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6059,54 +6087,54 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%s لغو اشتراک شد." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "شما مشترک هیچ‌کسی نشده‌اید." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "شما مشترک این فرد شده‌اید:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "هیچ‌کس مشترک شما نشده است." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "این فرد مشترک شما شده است:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "شما در هیچ گروهی عضو نیستید ." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "شما یک عضو این گروه هستید:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6186,40 +6214,62 @@ msgstr "" "tracks - هنوز پیاده نشده است.\n" "tracking - هنوز پیاده نشده است.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "بدون کد تصدیق." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "من به دنبال پرونده‌های پیکربندی در مکان‌های زیر بودم: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "برو به نصاب." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "پیام‌رسان فوری" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "به‌هنگام‌سازی‌های انجام‌شده با پیام‌رسان فوری (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "پیامک" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "به‌روزرسانی با پیامک" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "اتصال‌ها" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "برنامه‌های وصل‌شدهٔ مجاز" @@ -6242,11 +6292,11 @@ msgstr "" msgid "Design defaults restored." msgstr "پیش‌فرض‌های طراحی برگردانده شدند." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "خارج‌کردن این پیام از برگزیده‌ها" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "برگزیده‌کردن این پیام" @@ -6267,7 +6317,7 @@ msgstr "مؤلف" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6799,7 +6849,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "از" @@ -6947,56 +6997,56 @@ msgstr "" "دوباره تلاش کنید." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "خیر" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "در" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "در زمینه" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "تکرار از" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "به این پیام پاسخ دهید" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "پاسخ" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "پیام تکرار شد" @@ -7067,7 +7117,7 @@ msgid "Tags in %s's notices" msgstr "برچسب‌ها در پیام‌های %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "ناشناخته" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 0886e5ad30..4d67811d4c 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:44+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:06+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -90,7 +90,7 @@ msgstr "Profiilikuva-asetukset" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Tallenna" @@ -121,7 +121,7 @@ msgstr "Sivua ei ole." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Käyttäjää ei ole." @@ -363,7 +363,7 @@ msgid "This status is already a favorite." msgstr "Tämä päivitys on jo suosikki!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Ei voitu lisätä suosikiksi." @@ -480,18 +480,18 @@ msgid "Group not found." msgstr "Ei löytynyt." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Sinä kuulut jo tähän ryhmään." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Sinut on estetty osallistumasta tähän ryhmään ylläpitäjän toimesta." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." @@ -503,7 +503,7 @@ msgstr "Sinä et kuulu tähän ryhmään." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." @@ -621,7 +621,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Käyttäjätili" @@ -635,7 +635,7 @@ msgstr "Tunnus" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Salasana" @@ -667,13 +667,13 @@ msgid "No such notice." msgstr "Päivitystä ei ole." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Ilmoituksia ei voi pistää päälle." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Tätä päivitystä ei voi poistaa." @@ -784,7 +784,7 @@ msgstr "Koko ei kelpaa." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Kuva" @@ -815,7 +815,7 @@ msgid "Preview" msgstr "Esikatselu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Poista" @@ -900,7 +900,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -919,8 +919,8 @@ msgstr "Käyttäjän estotiedon tallennus epäonnistui." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Tuota ryhmää ei ole." @@ -1037,7 +1037,7 @@ msgstr "Sinä et kuulu tähän ryhmään." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -1102,7 +1102,7 @@ msgid "Do not delete this notice" msgstr "Älä poista tätä päivitystä" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -1131,7 +1131,7 @@ msgstr "Poista käyttäjä" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Ulkoasu" @@ -1267,7 +1267,7 @@ msgstr "Käytä oletusasetuksia" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Tallenna" @@ -1401,7 +1401,7 @@ msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Ei voitu lisätä aliasta." @@ -1459,7 +1459,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1657,7 +1657,7 @@ msgstr "Uusi saapuvan sähköpostin osoite lisätty." msgid "This notice is already a favorite!" msgstr "Tämä päivitys on jo suosikki!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Poista suosikeista" @@ -1956,7 +1956,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s aikajana" @@ -2233,7 +2233,7 @@ msgstr "Olet jo tilannut seuraavien käyttäjien päivitykset:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2369,7 +2369,7 @@ msgid "You must be logged in to leave a group." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Sinä et kuulu tähän ryhmään." @@ -2599,14 +2599,14 @@ msgid "New message" msgstr "Uusi viesti" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Et voi lähettää viestiä tälle käyttäjälle." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Ei sisältöä!" @@ -2615,7 +2615,7 @@ msgid "No recipient specified." msgstr "Vastaanottajaa ei ole määritelty." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." @@ -2626,12 +2626,12 @@ msgstr "Viesti lähetetty" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Suora viesti käyttäjälle %s lähetetty" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-virhe" @@ -2773,8 +2773,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -3145,7 +3145,7 @@ msgstr "Koko nimi" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Kotisivu" @@ -3539,7 +3539,7 @@ msgstr "Sama kuin ylläoleva salasana. Pakollinen." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Sähköposti" @@ -3706,7 +3706,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." msgid "You already repeated that notice." msgstr "Sinä kuulut jo tähän ryhmään." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 #, fuzzy msgid "Repeated" msgstr "Luotu" @@ -3850,14 +3850,14 @@ msgid "Name" msgstr "Tunnus" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Sivutus" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Kuvaus" @@ -4626,7 +4626,7 @@ msgstr "%s ei seuraa ketään käyttäjää." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4755,7 +4755,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiili" @@ -4959,7 +4959,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -5008,7 +5008,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 #, fuzzy msgid "Version" msgstr "Omat" @@ -5017,29 +5017,25 @@ msgstr "Omat" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Lisää suosikiksi" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5048,20 +5044,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Koko ei kelpaa." @@ -5084,13 +5080,28 @@ msgstr "Ei voitu päivittää ryhmää." msgid "Group leave failed." msgstr "Ryhmän profiili" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Liity" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5114,18 +5125,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Tapahtui virhe suoran viestin lähetyksessä." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Viestin tallennus ei onnistunut." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." @@ -5182,33 +5193,33 @@ msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5262,13 +5273,9 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "Could not delete subscription." msgstr "Tilausta ei onnistuttu tallentamaan." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5279,59 +5286,59 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Ryhmän luonti ei onnistunut." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Tilausta ei onnistuttu tallentamaan." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Vaihda profiiliasetuksesi" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Lataa kuva" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Vaihda salasanasi" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Käyttäjän profiili" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Muita asetuksia" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Muut" @@ -5347,44 +5354,44 @@ msgid "Untitled page" msgstr "Nimetön sivu" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Omat" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Vaihda salasanasi" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Yhdistä" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" @@ -5392,82 +5399,82 @@ msgstr "Ensisijainen sivunavigointi" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Ylläpito" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Kutsu" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Kirjaudu sisään" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Luo uusi ryhmä" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rekisteröidy" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kirjaudu sisään" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Kirjaudu sisään" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ohjeet" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ohjeet" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Hae lisää ryhmiä" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5475,67 +5482,68 @@ msgstr "Haku" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Palvelun ilmoitus" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Paikalliset näkymät" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sivuilmoitus" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ohjeet" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Tietoa" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "UKK" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Yksityisyys" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Lähdekoodi" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Ota yhteyttä" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Tönäise" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" @@ -5543,7 +5551,7 @@ msgstr "StatusNet-ohjelmiston lisenssi" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5553,7 +5561,7 @@ msgstr "" "site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** on mikroblogipalvelu." @@ -5562,7 +5570,7 @@ msgstr "**%%site.name%%** on mikroblogipalvelu." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5574,71 +5582,71 @@ msgstr "" "www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Sivutus" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Myöhemmin" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Aiemmin" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5778,7 +5786,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5793,197 +5801,215 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" +msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Kuvaus" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Lähdekoodi" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Peruuta" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Poista" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 #, fuzzy msgid "Attachments" msgstr "Liitettä ei ole." #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 #, fuzzy msgid "Author" msgstr "Atom" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Esikatselu" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "Liitettä ei ole." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Salasanan vaihto" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Salasanan vaihto" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Estä" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Komennon tulos" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-virhe" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Komento suoritettu" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Komento epäonnistui" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Ei profiilia tuolla id:llä." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Käyttäjällä ei ole viimeistä päivitystä" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Valitettavasti tätä komentoa ei ole vielä toteutettu." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Tönäisy lähetetty" @@ -5992,7 +6018,7 @@ msgstr "Tönäisy lähetetty" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -6001,52 +6027,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Päivitys on merkitty suosikiksi." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Koko nimi: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Kotipaikka: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Kotisivu: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Tietoa: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6055,128 +6082,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Tapahtui virhe suoran viestin lähetyksessä." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Päivitys lähetetty" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Virhe tapahtui käyttäjän asettamisessa." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Vastaa tähän päivitykseen" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Ongelma päivityksen tallentamisessa." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Komentoa ei ole vielä toteutettu." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Ilmoitukset pois päältä." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Ilmoituksia ei voi pistää pois päältä." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Ilmoitukset päällä." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Ilmoituksia ei voi pistää päälle." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." @@ -6184,7 +6211,7 @@ msgstr "Et ole tilannut tämän käyttäjän päivityksiä." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 #, fuzzy msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" @@ -6193,7 +6220,7 @@ msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Toista ei voitu asettaa tilaamaan sinua." @@ -6201,7 +6228,7 @@ msgstr "Toista ei voitu asettaa tilaamaan sinua." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 #, fuzzy msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" @@ -6210,7 +6237,7 @@ msgstr[1] "Toista ei voitu asettaa tilaamaan sinua." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Sinä et kuulu tähän ryhmään." @@ -6218,14 +6245,14 @@ msgstr "Sinä et kuulu tähän ryhmään." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sinä et kuulu tähän ryhmään." msgstr[1] "Sinä et kuulu tähän ryhmään." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6267,42 +6294,63 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Varmistuskoodia ei ole annettu." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Kirjaudu sisään palveluun" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Pikaviestin" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Päivitykset pikaviestintä käyttäen (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Päivitykset SMS:llä" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Yhdistä" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6326,11 +6374,11 @@ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." msgid "Design defaults restored." msgstr "Ulkoasuasetukset tallennettu." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Poista tämä päivitys suosikeista" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Merkitse päivitys suosikkeihin" @@ -6350,7 +6398,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6802,7 +6850,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 #, fuzzy msgid "from" msgstr " lähteestä " @@ -6951,58 +6999,58 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "Ei" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Ei sisältöä!" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Luotu" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Vastaus" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Päivitys on poistettu." @@ -7074,7 +7122,7 @@ msgid "Tags in %s's notices" msgstr "Tagit käyttäjän %s päivityksissä" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "Tuntematon toiminto" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 683a2bd6d0..698242f28b 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:45+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -90,7 +90,7 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -121,7 +121,7 @@ msgstr "Page non trouvée." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utilisateur non trouvé." @@ -368,7 +368,7 @@ msgid "This status is already a favorite." msgstr "Cet avis est déjà un favori." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Impossible de créer le favori." @@ -483,18 +483,18 @@ msgid "Group not found." msgstr "Groupe non trouvé." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Vous avez été bloqué de ce groupe par l’administrateur." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." @@ -506,7 +506,7 @@ msgstr "Vous n’êtes pas membre de ce groupe." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Impossible de retirer l’utilisateur %1$s du groupe %2$s." @@ -630,7 +630,7 @@ msgstr "" "confiance." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Compte" @@ -644,7 +644,7 @@ msgstr "Pseudo" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Mot de passe" @@ -674,12 +674,12 @@ msgid "No such notice." msgstr "Avis non trouvé." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Vous ne pouvez pas reprendre votre propre avis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Vous avez déjà repris cet avis." @@ -791,7 +791,7 @@ msgstr "Taille incorrecte." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -824,7 +824,7 @@ msgid "Preview" msgstr "Aperçu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Supprimer" @@ -910,7 +910,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquer cet utilisateur" @@ -929,8 +929,8 @@ msgstr "Impossible d’enregistrer les informations de blocage." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Aucun groupe trouvé." @@ -1046,7 +1046,7 @@ msgstr "Vous n’êtes pas le propriétaire de cette application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1111,7 +1111,7 @@ msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -1142,13 +1142,13 @@ msgstr "Supprimer cet utilisateur" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Conception" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Paramètres de conception pour ce site StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1271,7 +1271,7 @@ msgstr "Revenir aux valeurs par défaut" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Enregistrer" @@ -1391,7 +1391,7 @@ msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Impossible de créer les alias." @@ -1447,7 +1447,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Annuler" @@ -1639,7 +1639,7 @@ msgstr "Nouvelle adresse de courriel entrant ajoutée." msgid "This notice is already a favorite!" msgstr "Cet avis a déjà été ajouté à vos favoris !" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Retirer ce favori" @@ -1922,7 +1922,7 @@ msgstr "Bloquer" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bloquer cet utilisateur" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1944,7 +1944,7 @@ msgstr "Faire de cet utilisateur un administrateur" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Activité de %s" @@ -2234,7 +2234,7 @@ msgstr "Vous êtes déjà abonné à ces utilisateurs :" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2370,7 +2370,7 @@ msgid "You must be logged in to leave a group." msgstr "Vous devez ouvrir une session pour quitter un groupe." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Vous n’êtes pas membre de ce groupe." @@ -2383,45 +2383,47 @@ msgstr "%1$s a quitté le groupe %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licence" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Licence de ce site StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Sélection de licence invalide." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Vous devez spécifier le propriétaire du contenu lorsque vous utilisez la " +"licence « Tous droits réservés »." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Titre de licence invalide. La taille maximale est de 255 caractères." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "URL de licence invalide." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "URL d’image de licence invalide." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "L’URL de la licence doit être vide ou valide." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "L’URL de l’image de la la licence doit être vide ou valide." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Sélection d’une licence" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2429,59 +2431,59 @@ msgstr "Privé" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Tous droits réservés" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Type" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Sélectionner une licence" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Détails de la licence" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Propriétaire" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nom du propriétaire du contenu du site (si applicable)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Titre de la licence" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Le titre de la licence." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL de la licence" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL où obtenir plus d'informations sur la licence." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL de l’image de la licence" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL d’une image à afficher avec la licence." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Enregistrer les paramètres de licence" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2598,14 +2600,14 @@ msgid "New message" msgstr "Nouveau message" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Aucun contenu !" @@ -2614,7 +2616,7 @@ msgid "No recipient specified." msgstr "Aucun destinataire n’a été spécifié." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2626,12 +2628,12 @@ msgstr "Message envoyé" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Message direct envoyé à %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Erreur Ajax" @@ -2729,6 +2731,7 @@ msgstr "Applications connectées." #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" +"Vous avez autorisé les applications suivantes à accéder à votre compte." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2771,8 +2774,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -2919,7 +2922,7 @@ msgstr "Chemins" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Paramètres de chemin et serveur pour ce site StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3127,7 +3130,7 @@ msgstr "Nom complet" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site personnel" @@ -3528,7 +3531,7 @@ msgstr "Identique au mot de passe ci-dessus. Requis." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Courriel" @@ -3692,7 +3695,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis." msgid "You already repeated that notice." msgstr "Vous avez déjà repris cet avis." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repris" @@ -3789,7 +3792,7 @@ msgstr "Sessions" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Paramètres de session pour ce site StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3831,13 +3834,13 @@ msgid "Name" msgstr "Nom" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -4633,7 +4636,7 @@ msgstr "%s ne suit actuellement personne." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4743,7 +4746,7 @@ msgstr "Utilisateur" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Paramètres des utilisateurs pour ce site StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4759,7 +4762,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4808,7 +4811,7 @@ msgstr "" #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Sauvegarder les paramètres utilisateur" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4959,7 +4962,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" @@ -5020,7 +5023,7 @@ msgid "Plugins" msgstr "Extensions" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -5028,29 +5031,25 @@ msgstr "Version" msgid "Author(s)" msgstr "Auteur(s)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Ajouter à mes favoris" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Impossible de traiter l’URL « %s »" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin pense que quelque chose est impossible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5061,20 +5060,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Un fichier aussi gros dépasserai votre quota utilisateur de %d octets." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un fichier aussi gros dépasserai votre quota mensuel de %d octets." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nom de fichier non valide." @@ -5093,16 +5092,31 @@ msgstr "N’appartient pas au groupe." msgid "Group leave failed." msgstr "La désinscription du groupe a échoué." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Erreur lors de l’enregistrement de l’utilisateur ; invalide." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Rejoindre" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s a rejoint le groupe %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5122,17 +5136,17 @@ msgid "No database name or DSN found anywhere." msgstr "Aucun nom de base de données ou DSN trouvé nulle part." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Il vous est interdit d’envoyer des messages directs." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Impossible d’insérer le message." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Impossible de mettre à jour le message avec un nouvel URI." @@ -5188,25 +5202,25 @@ msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Le type renseigné pour saveKnownGroups n’est pas valable" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5215,7 +5229,7 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5267,14 +5281,10 @@ msgstr "Impossible de supprimer le jeton OMB de l'abonnement." msgid "Could not delete subscription." msgstr "Impossible de supprimer l’abonnement" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "" +msgid "Follow" +msgstr "Suivre" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5284,57 +5294,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenue à %1$s, @%2$s !" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Impossible de créer le groupe." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Impossible de définir l'URI du groupe." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Impossible d’établir l’inscription au groupe." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Impossible d’enregistrer les informations du groupe local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Ajouter un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Modifier votre mot de passe" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Modifier le traitement des courriels" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Concevez votre profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Autres options" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Autres " @@ -5350,184 +5360,185 @@ msgid "Untitled page" msgstr "Page sans nom" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navigation primaire du site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personnel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifier votre adresse électronique, avatar, mot de passe, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Se connecter aux services" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connexion" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifier la configuration du site" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre sur %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Fermer la session" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Déconnexion" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Créer un compte" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "S’inscrire" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Connexion" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "À l’aide !" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Aide" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Rechercher" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Notice du site" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vues locales" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Avis de la page" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Aide" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "À propos" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "CGU" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Confidentialité" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Source" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contact" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insigne" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" @@ -5535,7 +5546,7 @@ msgstr "Licence du logiciel StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5545,7 +5556,7 @@ msgstr "" "%site.broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** est un service de micro-blogging." @@ -5554,7 +5565,7 @@ msgstr "**%%site.name%%** est un service de micro-blogging." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5566,20 +5577,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licence du contenu du site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contenu et les données de %1$s sont privés et confidentiels." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5587,7 +5598,7 @@ msgstr "" "réservés." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur du contributeur. Tous " @@ -5595,46 +5606,46 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Tous les contenus %1$s et les données sont disponibles sous la licence %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Après" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Avant" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Attendait un élément racine mais a reçu tout un document XML." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Impossible de gérer le contenu distant pour le moment." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Impossible de gérer le contenu XML embarqué pour le moment." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Impossible de gérer le contenu en Base64 embarqué pour le moment." @@ -5725,7 +5736,7 @@ msgstr "Configuration des instantanés" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Définir la licence du site" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5761,7 +5772,7 @@ msgid "Tried to revoke unknown token." msgstr "Révocation essayée d’un jeton inconnu." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Impossible de supprimer un jeton révoqué." @@ -5776,188 +5787,208 @@ msgid "Icon for this application" msgstr "Icône pour cette application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Décrivez votre application en %d caractères" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Décrivez votre application en %d caractères" +msgstr[1] "Décrivez votre application en %d caractères" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Décrivez votre application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL de la page d’accueil de cette application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL source" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisation responsable de cette application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL de la page d’accueil de l’organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL vers laquelle rediriger après l’authentification" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navigateur" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Bureau" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Type d’application, navigateur ou bureau" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lecture seule" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lecture-écriture" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accès par défaut pour cette application : en lecture seule ou en lecture-" "écriture" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Annuler" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lecture-écriture" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "lecture seule" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Accès « %2$s » approuvé le %1$s." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Révoquer" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Pièces jointes" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Auteur" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Fournisseur" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Avis sur lesquels cette pièce jointe apparaît." #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Marques de cette pièce jointe" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "La modification du mot de passe a échoué" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "La modification du mot de passe n’est pas autorisée" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquer" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Résultats de la commande" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Erreur Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Commande complétée" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Échec de la commande" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Aucun avis avec cet identifiant n’existe." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Aucun avis récent pour cet utilisateur." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Impossible de trouver un utilisateur avec le pseudo %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Impossible de trouver un utilisateur local portant le pseudo %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Désolé, cette commande n’a pas encore été implémentée." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Ça n’a pas de sens de se faire un clin d’œil à soi-même !" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Clin d’œil envoyé à %s." @@ -5966,7 +5997,7 @@ msgstr "Clin d’œil envoyé à %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5978,52 +6009,53 @@ msgstr "" "Messages : %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Avis ajouté aux favoris." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s a rejoint le groupe %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s a quitté le groupe %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nom complet : %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Emplacement : %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Site Web : %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "À propos : %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6034,7 +6066,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6042,25 +6074,25 @@ msgstr "" "entré %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Une erreur est survenue pendant l’envoi de votre message." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Avis de %s repris." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Erreur lors de la reprise de l’avis." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6069,81 +6101,81 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Réponse à %s envoyée." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Problème lors de l’enregistrement de l’avis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Indiquez le nom de l’utilisateur auquel vous souhaitez vous abonner." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossible de s'inscrire aux profils OMB par cette commande." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Abonné à %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" "Indiquez le nom de l’utilisateur duquel vous souhaitez vous désabonner." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Désabonné de %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Cette commande n’a pas encore été implémentée." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Avertissements désactivés." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Impossible de désactiver les avertissements." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Avertissements activés." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Impossible d’activer les avertissements." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "La commande d’ouverture de session est désactivée." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6152,20 +6184,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Désabonné de %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Vous n’êtes abonné(e) à personne." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vous êtes abonné à cette personne :" @@ -6173,14 +6205,14 @@ msgstr[1] "Vous êtes abonné à ces personnes :" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Personne ne s’est abonné à vous." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Cette personne est abonnée à vous :" @@ -6188,21 +6220,21 @@ msgstr[1] "Ces personnes sont abonnées à vous :" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Vous n’êtes membre d’aucun groupe." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vous êtes membre de ce groupe :" msgstr[1] "Vous êtes membre de ces groupes :" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6283,40 +6315,62 @@ msgstr "" "tracks - pas encore implémenté.\n" "tracking - pas encore implémenté.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Aucun fichier de configuration n’a été trouvé. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" "J’ai cherché des fichiers de configuration dans les emplacements suivants : " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Aller au programme d’installation" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Suivi des avis par messagerie instantanée" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Suivi des avis par SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexions" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Applications autorisées connectées" @@ -6339,11 +6393,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Les paramètre par défaut de la conception ont été restaurés." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Retirer des favoris" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Ajouter aux favoris" @@ -6363,9 +6417,9 @@ msgstr "Atom" msgid "FOAF" msgstr "Ami d’un ami" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Flux d’informations" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6904,7 +6958,7 @@ msgstr "" "pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent " "vous envoyer des messages destinés à vous seul(e)." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -7057,55 +7111,55 @@ msgstr "" "Veuillez réessayer plus tard." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "chez" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "dans le contexte" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repris par" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Répondre à cet avis" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Répondre" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Avis repris" @@ -7176,7 +7230,7 @@ msgid "Tags in %s's notices" msgstr "Marques dans les avis de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Inconnu" @@ -7565,14 +7619,19 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "Fichier de sauvegarde pour l’utilisateur %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Aucun identifiant d’utilisateur n’a été spécifié." +msgstr "Aucun utilisateur spécifié ; utilisation de l’utilisateur de secours." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d entrées dans la sauvegarde." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s a marqué l’avis %s comme favori." + +#~ msgid "%s is now following %s." +#~ msgstr "%s suit à présent %s." diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 79aa8d28c2..8380cbb393 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:46+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:07+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Configuracións de Twitter" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -119,7 +119,7 @@ msgstr "Non existe a etiqueta." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ningún usuario." @@ -360,7 +360,7 @@ msgid "This status is already a favorite." msgstr "Este chío xa é un favorito!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." @@ -478,18 +478,18 @@ msgid "Group not found." msgstr "Non atopado" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Xa estas suscrito a estes usuarios:" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." @@ -501,7 +501,7 @@ msgstr "Non estás suscrito a ese perfil" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." @@ -617,7 +617,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 #, fuzzy msgid "Account" msgstr "Sobre" @@ -632,7 +632,7 @@ msgstr "Alcume" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasinal" @@ -663,13 +663,13 @@ msgid "No such notice." msgstr "Ningún chío." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Non se pode activar a notificación." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Non se pode eliminar este chíos." @@ -781,7 +781,7 @@ msgstr "Tamaño inválido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -812,7 +812,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Eliminar chío" @@ -903,7 +903,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" @@ -923,8 +923,8 @@ msgstr "Erro ao gardar información de bloqueo." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 #, fuzzy msgid "No such group." msgstr "Non existe a etiqueta." @@ -1046,7 +1046,7 @@ msgstr "Non estás suscrito a ese perfil" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." @@ -1114,7 +1114,7 @@ msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 #, fuzzy msgid "Delete this notice" msgstr "Eliminar chío" @@ -1147,7 +1147,7 @@ msgstr "Eliminar chío" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "" @@ -1281,7 +1281,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1416,7 +1416,7 @@ msgid "Could not update group." msgstr "Non se puido actualizar o usuario." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." @@ -1476,7 +1476,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1673,7 +1673,7 @@ msgstr "Engadida nova dirección de correo entrante." msgid "This notice is already a favorite!" msgstr "Este chío xa é un favorito!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Desactivar favorito" @@ -1984,7 +1984,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Liña de tempo de %s" @@ -2261,7 +2261,7 @@ msgstr "Xa estas suscrito a estes usuarios:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2396,7 +2396,7 @@ msgid "You must be logged in to leave a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 #, fuzzy msgid "You are not a member of that group." msgstr "Non estás suscrito a ese perfil" @@ -2625,14 +2625,14 @@ msgid "New message" msgstr "Nova mensaxe" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Non podes enviar mensaxes a este usurio." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Sen contido!" @@ -2641,7 +2641,7 @@ msgid "No recipient specified." msgstr "Non se especificou ningún destinatario" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2655,12 +2655,12 @@ msgstr "Non hai mensaxes de texto!" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Mensaxe directo a %s enviado" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Erro de Ajax" @@ -2797,8 +2797,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -3168,7 +3168,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -3572,7 +3572,7 @@ msgstr "A mesma contrasinal que arriba. Requerido." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correo Electrónico" @@ -3736,7 +3736,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza." msgid "You already repeated that notice." msgstr "Xa estas suscrito a estes usuarios:" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Destacado" @@ -3873,14 +3873,14 @@ msgid "Name" msgstr "Alcume" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Invitación(s) enviada(s)." #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Subscricións" @@ -4658,7 +4658,7 @@ msgstr "%1$s está a escoitar os teus chíos %2$s." msgid "Jabber" msgstr "Jabber." -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4788,7 +4788,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4994,7 +4994,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -5043,7 +5043,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 #, fuzzy msgid "Version" msgstr "Persoal" @@ -5052,29 +5052,25 @@ msgstr "Persoal" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Gostame" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5083,20 +5079,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Tamaño inválido." @@ -5119,14 +5115,29 @@ msgstr "Non se puido actualizar o usuario." msgid "Group leave failed." msgstr "Non existe o perfil." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Acounteceu un erro gardando o usuario: é inválido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 #, fuzzy msgid "Join" msgstr "Inicio de sesión" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5150,18 +5161,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Erro ó enviar a mensaxe directa." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Non se pode inserir unha mensaxe." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe coa nova URI." @@ -5219,33 +5230,33 @@ msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chío." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5299,13 +5310,9 @@ msgstr "Non se pode gardar a subscrición." msgid "Could not delete subscription." msgstr "Non se pode gardar a subscrición." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5316,62 +5323,62 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 #, fuzzy msgid "Could not create group." msgstr "Non se puido crear o favorito." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Non se poden gardar as etiquetas." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 #, fuzzy msgid "Could not set group membership." msgstr "Non se pode gardar a subscrición." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Non se pode gardar a subscrición." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Configuración de perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 #, fuzzy msgid "Upload an avatar" msgstr "Acounteceu un fallo ó actualizar o avatar." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cambiar contrasinal" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Cambiar a xestión de email" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "O usuario non ten perfil." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Outras opcions" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Outros" @@ -5387,44 +5394,44 @@ msgid "Untitled page" msgstr "" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" @@ -5432,13 +5439,13 @@ msgstr "Navegación de subscricións" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -5447,71 +5454,71 @@ msgstr "" "este servizo." #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear nova conta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rexistrar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Axuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5519,69 +5526,70 @@ msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Novo chío" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Novo chío" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de subscricións" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Axuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Sobre" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Preguntas frecuentes" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacidade" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5599,7 +5607,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é un servizo de microbloguexo." @@ -5608,7 +5616,7 @@ msgstr "**%%site.name%%** é un servizo de microbloguexo." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5620,72 +5628,72 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "Atopar no contido dos chíos" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Outros" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 #, fuzzy msgid "Before" msgstr "Antes »" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5824,7 +5832,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5839,195 +5847,216 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgstr[1] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgstr[2] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgstr[3] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgstr[4] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 #, fuzzy msgid "Describe your application" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Fonte" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Recuperar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 #, fuzzy msgid "Provider" msgstr "Perfil" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Contrasinal gardada." -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Contrasinal gardada." #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquear" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados do comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Erro de Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comando completo" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comando fallido" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Non se atopou un perfil con ese ID." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "O usuario non ten último chio." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Desculpa, este comando todavía non está implementado." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Toque enviado" @@ -6036,7 +6065,7 @@ msgstr "Toque enviado" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -6048,52 +6077,53 @@ msgstr "" "Chíos: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Chío marcado coma favorito." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Ubicación: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Páxina persoal: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Sobre: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6102,128 +6132,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Erro ó enviar a mensaxe directa." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Chío publicado" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Acounteceu un erro configurando o usuario." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Non se pode eliminar este chíos." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Aconteceu un erro ó gardar o chío." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Especifica o nome do usuario ó que queres suscribirte" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Non estás suscrito a ese perfil" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Especifica o nome de usuario ó que queres deixar de seguir" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Comando non implementado." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificación desactivada." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "No se pode desactivar a notificación." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificación habilitada." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Non se pode activar a notificación." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Non estás suscrito a ese perfil" @@ -6231,7 +6261,7 @@ msgstr "Non estás suscrito a ese perfil" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Xa estas suscrito a estes usuarios:" @@ -6242,7 +6272,7 @@ msgstr[4] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Outro usuario non se puido suscribir a ti." @@ -6250,7 +6280,7 @@ msgstr "Outro usuario non se puido suscribir a ti." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Outro usuario non se puido suscribir a ti." @@ -6261,7 +6291,7 @@ msgstr[4] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Non estás suscrito a ese perfil" @@ -6269,7 +6299,7 @@ msgstr "Non estás suscrito a ese perfil" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Non estás suscrito a ese perfil" @@ -6279,7 +6309,7 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 #, fuzzy msgid "" "Commands:\n" @@ -6348,41 +6378,62 @@ msgstr "" "tracks - non implementado por agora.\n" "tracking - non implementado por agora.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Sen código de confirmación." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Chíos dende mensaxería instantánea (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Chíos dende SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conectar" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6405,11 +6456,11 @@ msgstr "Podes actualizar a túa información do perfil persoal aquí" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Chíos favoritos de %s" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Chíos favoritos de %s" @@ -6429,7 +6480,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6928,7 +6979,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 #, fuzzy msgid "from" msgstr " dende " @@ -7079,59 +7130,59 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "No" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Sen contido!" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Crear" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 #, fuzzy msgid "Reply to this notice" msgstr "Non se pode eliminar este chíos." -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Respostas" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Chío publicado" @@ -7206,7 +7257,7 @@ msgid "Tags in %s's notices" msgstr "O usuario non ten último chio." #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "Acción descoñecida" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 3b9b7a5e4c..da1a3411ce 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:47+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:08+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Gardar" @@ -112,7 +112,7 @@ msgstr "Esa páxina non existe." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Non existe tal usuario." @@ -358,7 +358,7 @@ msgid "This status is already a favorite." msgstr "Este estado xa é dos favoritos." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." @@ -473,18 +473,18 @@ msgid "Group not found." msgstr "Non se atopou o grupo." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Xa forma parte dese grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "O administrador bloqueouno nese grupo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." @@ -496,7 +496,7 @@ msgstr "Vostede non pertence a este grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "O usuario %1$s non se puido eliminar do grupo %2$s." @@ -615,7 +615,7 @@ msgstr "" "acceso á súa conta %4$s a xente de confianza." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Conta" @@ -629,7 +629,7 @@ msgstr "Alcume" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasinal" @@ -659,12 +659,12 @@ msgid "No such notice." msgstr "Non existe tal nota." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non pode repetir a súa propia nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Xa repetiu esa nota." @@ -776,7 +776,7 @@ msgstr "Tamaño non válido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -809,7 +809,7 @@ msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Borrar" @@ -895,7 +895,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuario" @@ -914,8 +914,8 @@ msgstr "Non se puido gardar a información do bloqueo." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Non existe tal grupo." @@ -1031,7 +1031,7 @@ msgstr "Non é o dono desa aplicación." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -1096,7 +1096,7 @@ msgid "Do not delete this notice" msgstr "Non borrar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Borrar esta nota" @@ -1127,7 +1127,7 @@ msgstr "Borrar o usuario" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Deseño" @@ -1256,7 +1256,7 @@ msgstr "Volver ao deseño por defecto" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1376,7 +1376,7 @@ msgid "Could not update group." msgstr "Non se puido actualizar o grupo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Non se puideron crear os pseudónimos." @@ -1432,7 +1432,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1630,7 +1630,7 @@ msgstr "Engadiuse un novo enderezo de correo electrónico entrante." msgid "This notice is already a favorite!" msgstr "A nota xa é unha das súas favoritas!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Desmarcar como favorita" @@ -1932,7 +1932,7 @@ msgstr "Converter a este usuario en administrador" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Liña do tempo de %s" @@ -2215,7 +2215,7 @@ msgstr "Xa está subscrito aos seguintes usuarios:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2348,7 +2348,7 @@ msgid "You must be logged in to leave a group." msgstr "Ten que identificarse para deixar un grupo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Non pertence a ese grupo." @@ -2574,14 +2574,14 @@ msgid "New message" msgstr "Mensaxe nova" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Non pode enviarlle unha mensaxe a este usuario." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Non hai contido ningún!" @@ -2590,7 +2590,7 @@ msgid "No recipient specified." msgstr "Non se especificou ningún destinatario." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non se envíe unha mensaxe, limítese a pensar nela." @@ -2601,12 +2601,12 @@ msgstr "Enviouse a mensaxe" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Enviouse a mensaxe directa a %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Houbo un erro de AJAX" @@ -2745,8 +2745,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Só %s enderezos URL sobre HTTP simple." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Non se soporta ese formato de datos." @@ -3103,7 +3103,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -3507,7 +3507,7 @@ msgstr "O mesmo contrasinal que o anterior. Obrigatorio." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correo electrónico" @@ -3671,7 +3671,7 @@ msgstr "Non pode repetir a súa propia nota." msgid "You already repeated that notice." msgstr "Xa repetiu esa nota." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetida" @@ -3807,13 +3807,13 @@ msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organización" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descrición" @@ -4604,7 +4604,7 @@ msgstr "%s non está seguindo a ninguén." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4731,7 +4731,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrición por defecto incorrecta. \"%1$s\" non é un usuario." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4926,7 +4926,7 @@ msgstr "Probe a [buscar grupos](%%action.groupsearch%%) e unirse a eles." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións de %1$s en %2$s!" @@ -4987,7 +4987,7 @@ msgid "Plugins" msgstr "Complementos" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versión" @@ -4995,29 +4995,25 @@ msgstr "Versión" msgid "Author(s)" msgstr "Autores" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Marcar como favorito" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Non se pode procesar o URL \"%s\"" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin pensa que algo é imposible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5028,7 +5024,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5036,13 +5032,13 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un ficheiro deste tamaño excedería a súa cota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nome de ficheiro incorrecto." @@ -5061,13 +5057,28 @@ msgstr "Non forma parte do grupo." msgid "Group leave failed." msgstr "Non se puido deixar o grupo." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Houbo un erro ao gardar o usuario. Incorrecto." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Unirse" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5090,17 +5101,17 @@ msgid "No database name or DSN found anywhere." msgstr "Non se atopou por ningures o nome da base de datos ou DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Prohibíuselle enviar mensaxes directas de momento." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Non se puido inserir a mensaxe." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe co novo URI." @@ -5156,25 +5167,25 @@ msgid "Problem saving notice." msgstr "Houbo un problema ao gardar a nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo dado para saveKnownGroups era incorrecto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Houbo un problema ao gardar a caixa de entrada do grupo." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5182,7 +5193,7 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5233,13 +5244,9 @@ msgstr "Non se puido borrar o pase de subscrición OMB." msgid "Could not delete subscription." msgstr "Non se puido borrar a subscrición." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5250,57 +5257,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvido a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Non se puido crear o grupo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Non se puido establecer o URI do grupo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Non se puido establecer a pertenza ao grupo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Non se puido gardar a información do grupo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Cambie a configuración do seu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Cargue un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cambie o seu contrasinal" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Cambie a xestión do correo electrónico" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Deseñe o seu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Outras opcións" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Outros" @@ -5316,184 +5323,185 @@ msgid "Untitled page" msgstr "Páxina sen título" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegación principal do sitio" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Liña do tempo do perfil persoal e os amigos" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Persoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambie o seu correo electrónico, avatar, contrasinal ou perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conectarse aos servizos" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Conectarse" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Cambiar a configuración do sitio" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrador" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide a amigos e compañeiros a unírselle en %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Saír ao anonimato" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Saír" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear unha conta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Rexistrarse" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Identificarse no sitio" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Identificarse" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Axuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Buscar persoas ou palabras" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Nota do sitio" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistas locais" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Nota da páxina" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegación secundaria do sitio" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Axuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Acerca de" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Preguntas máis frecuentes" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Condicións do servicio" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Protección de datos" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Código fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insignia" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licenza do software StatusNet" @@ -5501,7 +5509,7 @@ msgstr "Licenza do software StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5511,7 +5519,7 @@ msgstr "" "site.broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas." @@ -5520,7 +5528,7 @@ msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5532,20 +5540,20 @@ msgstr "" "GNU](http://www.fsf.org/licensing/licenses/agpl-3.0.html) (en inglés)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licenza dos contidos do sitio" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O contido e os datos de %1$s son privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5553,7 +5561,7 @@ msgstr "" "todos os dereitos." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Os contidos e datos son propiedade intelectual dos colaboradores. Quedan " @@ -5561,47 +5569,47 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Todos os contidos e datos de %1$s están dispoñibles baixo a licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paxinación" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Posteriores" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Anteriores" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Aínda non é posible manexar contidos remotos." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Aínda non se poden manexar contidos XML integrados." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Aínda non se poden manexar contidos Base64." @@ -5728,7 +5736,7 @@ msgid "Tried to revoke unknown token." msgstr "Intentouse revogar un pase descoñecido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Erro ao borrar o pase revogado." @@ -5743,187 +5751,207 @@ msgid "Icon for this application" msgstr "Icona para esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Describa a súa aplicación en %d caracteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Describa a súa aplicación en %d caracteres" +msgstr[1] "Describa a súa aplicación en %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Describa a súa aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL do sitio web desta aplicación" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL de orixe" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organización responsable desta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL do sitio web da organización" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL ao que ir tras a autenticación" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Escritorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador ou de escritorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lectura e escritura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Permisos por defecto para esta aplicación: lectura ou lectura e escritura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lectura e escritura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "lectura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprobado o %1$s - permisos de \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Ficheiros anexos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Provedor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notas nas que se anexou este ficheiro" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquetas para este ficheiro" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Non se puido cambiar o contrasinal" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Non se permite cambiar o contrasinal" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Excluír" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados da orde" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Houbo un erro de AJAX" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Completouse a orde" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "A orde fallou" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Non hai ningunha nota con esa id." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "O usuario non ten ningunha última nota." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Non se deu atopado ningún usuario co alcume %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Non se deu atopado ningún usuario local co alcume %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Esta orde aínda non está integrada." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Non ten sentido ningún facerse un aceno a un mesmo!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Fíxoselle un aceno a %s." @@ -5932,7 +5960,7 @@ msgstr "Fíxoselle un aceno a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5944,52 +5972,53 @@ msgstr "" "Notas: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Marcouse a nota como favorita." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s uniuse ao grupo %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s deixou o grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Localidade: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Sitio web: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Acerca de: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6000,112 +6029,112 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" "A mensaxe é longa de máis, o límite de caracteres é de %1$d, e enviou %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Houbo un erro ao enviar a mensaxe directa." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Repetiuse a nota de %s." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Houbo un erro ao repetir a nota." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "A nota é longa de máis. O límite son %1$d caracteres, e enviou %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Enviouse a resposta a %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Houbo un erro ao gardar a nota." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Introduza o nome do usuario ao que quere subscribirse." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Non se pode subscribir aos perfís OMB cunha orde." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subscribiuse a %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Introduza o nome do usuario ao que quer deixar de estar subscrito." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Cancelou a subscrición a %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Aínda non se integrou esa orde." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Desactivar a notificación." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Non se pode desactivar a notificación." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Activar a notificación." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Non se pode activar a notificación." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "A orde de identificación está desactivada." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6114,20 +6143,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Cancelou a subscrición a %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Non está subscrito a ninguén." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vostede está subscrito a esta persoa:" @@ -6135,14 +6164,14 @@ msgstr[1] "Vostede está subscrito a estas persoas:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Non hai ninguén subscrito a vostede." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta persoa está subscrita a vostede:" @@ -6150,21 +6179,21 @@ msgstr[1] "Estas persoas están subscritas a vostede:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Non forma parte de ningún grupo." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vostede pertence a este grupo:" msgstr[1] "Vostede pertence a estes grupos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6244,39 +6273,61 @@ msgstr "" "tracks - aínda non se integrou\n" "tracking - aínda non se integrou\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Non se atopou ningún ficheiro de configuración. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Buscáronse ficheiros de configuración nos seguintes lugares: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Pode que queira executar o instalador para arranxalo." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir ao instalador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualizacións por mensaxería instantánea (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualizacións por SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conexións" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicacións conectadas autorizadas" @@ -6299,11 +6350,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Restableceuse o deseño por defecto." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Desmarcar esta nota como favorita" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Marcar esta nota como favorita" @@ -6323,7 +6374,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Amigo dun amigo" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6861,7 +6912,7 @@ msgstr "" "Non ten mensaxes privadas. Pode enviar mensaxes privadas para conversar con " "outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -7013,55 +7064,55 @@ msgstr "" "intentar máis tarde" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "L" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "en" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a esta nota" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Repetiuse a nota" @@ -7132,7 +7183,7 @@ msgid "Tags in %s's notices" msgstr "Etiquetas nas notas de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Descoñecida" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 1c79ab228d..a5411edf75 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:48+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:09+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Přistupne nastajenja składować" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Składować" @@ -113,7 +113,7 @@ msgstr "Strona njeeksistuje." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Wužiwar njeeksistuje" @@ -348,7 +348,7 @@ msgid "This status is already a favorite." msgstr "Tutón status je hižo faworit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Faworit njeda so wutworić." @@ -463,18 +463,18 @@ msgid "Group not found." msgstr "Skupina njenamakana." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Sy hižo čłon teje skupiny." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Administratora tuteje skupiny je će zablokował." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." @@ -486,7 +486,7 @@ msgstr "Njejsy čłon tuteje skupiny." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Njebě móžno wužiwarja %1$s ze skupiny %2$s wotstronić." @@ -598,7 +598,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -612,7 +612,7 @@ msgstr "Přimjeno" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hesło" @@ -642,12 +642,12 @@ msgid "No such notice." msgstr "Zdźělenka njeeksistuje." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Njemóžno twoju zdźělenku wospjetować." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Tuta zdźělenka bu hižo wospjetowana." @@ -758,7 +758,7 @@ msgstr "Njepłaćiwa wulkosć." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Awatar" @@ -790,7 +790,7 @@ msgid "Preview" msgstr "Přehlad" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Zničić" @@ -873,7 +873,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -893,8 +893,8 @@ msgstr "Njeje móžno, sydłowu zdźělenku składować." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Skupina njeeksistuje." @@ -1011,7 +1011,7 @@ msgstr "Njejsy wobsedźer tuteje aplikacije." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1071,7 +1071,7 @@ msgid "Do not delete this notice" msgstr "Tutu zdźělenku njewušmórnyć" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -1100,7 +1100,7 @@ msgstr "Tutoho wužiwarja wušmórnyć" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Design" @@ -1229,7 +1229,7 @@ msgstr "Na standard wróćo stajić" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Składować" @@ -1351,7 +1351,7 @@ msgid "Could not update group." msgstr "Skupina njeje so dała aktualizować." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Aliasy njejsu so dali wutworić." @@ -1405,7 +1405,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Přetorhnyć" @@ -1596,7 +1596,7 @@ msgstr "Nowa adresa za dochadźace e-mejle přidata." msgid "This notice is already a favorite!" msgstr "Tuta zdźělenka je hižo faworit!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor favorite" msgstr "K faworitam přidać" @@ -1890,7 +1890,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2159,7 +2159,7 @@ msgstr "Sy tutych wužiwarjow hižo abonował:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2264,7 +2264,7 @@ msgid "You must be logged in to leave a group." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wopušćił." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Njejsy čłon teje skupiny." @@ -2484,14 +2484,14 @@ msgid "New message" msgstr "Nowa powěsć" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Njemóžeš tutomu wužiwarju powěsć pósłać." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Žadyn wobsah!" @@ -2500,7 +2500,7 @@ msgid "No recipient specified." msgstr "Žadyn přijimowar podaty." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2511,12 +2511,12 @@ msgstr "Powěsć pósłana" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Direktna powěsć do %s pósłana." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Zmylk Ajax" @@ -2648,8 +2648,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." @@ -3005,7 +3005,7 @@ msgstr "Dospołne mjeno" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Startowa strona" @@ -3387,7 +3387,7 @@ msgstr "Jenake kaž hesło horjeka. Trěbne." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mejl" @@ -3523,7 +3523,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować." msgid "You already repeated that notice." msgstr "Sy tutu zdźělenku hižo wospjetował." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Wospjetowany" @@ -3655,13 +3655,13 @@ msgid "Name" msgstr "Mjeno" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizacija" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Wopisanje" @@ -4409,7 +4409,7 @@ msgstr "%s čłon w žanej skupinje njeje." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4533,7 +4533,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Njepłaćiwy standardny abonement: '%1$s' wužiwar njeje." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4720,7 +4720,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualizacije wot %1$s na %2$s!" @@ -4769,7 +4769,7 @@ msgid "Plugins" msgstr "Tykače" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Wersija" @@ -4777,30 +4777,26 @@ msgstr "Wersija" msgid "Author(s)" msgstr "Awtorojo" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 #, fuzzy msgid "Favor" msgstr "Fawority" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4809,20 +4805,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Njepłaćiwe datajowe mjeno." @@ -4841,13 +4837,28 @@ msgstr "Njeje dźěl skupiny." msgid "Group leave failed." msgstr "Wopušćenje skupiny je so njeporadźiło." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Zmylk při składowanju wužiwarja; njepłaćiwy." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Zastupić" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4870,18 +4881,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Zmylk při słanju direktneje powěsće," #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Powěsć njeda so zasunyć." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "Powěsć njeda so analyzować." @@ -4938,32 +4949,32 @@ msgid "Problem saving notice." msgstr "Zmylk při składowanju powěsće" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5014,13 +5025,9 @@ msgstr "Znamjo OMB-abonementa njeda so zhašeć." msgid "Could not delete subscription." msgstr "Abonoment njeda so zhašeć ." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5031,58 +5038,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj do %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Skupina njeda so wutowrić." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "URI skupiny njeda so nastajić." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Skupinske čłonstwo njeda so stajić." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Informacije wo lokalnej skupinje njedachu so składować." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Twoje profilowe nastajenja změnić" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Awatar nahrać" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Twoje hesło změnić" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Wužiwarski profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Druhe opcije" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Druhe" @@ -5098,189 +5105,190 @@ msgid "Untitled page" msgstr "Strona bjez titula" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "Zakładna sydłowa konfiguracija" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Wosobinski" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Wašu e-mejl, waš awatar, waše hesło, waš profil změnić" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ze słužbami zwjazać" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Zwjazać" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Sydłowu konfiguraciju změnić" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Přeprosyć" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Ze sydła wotzjewić" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Wotzjewić" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Konto załožić" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrować" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Při sydle přizjewić" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Přizjewjenje" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomhaj!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Za ludźimi abo tekstom pytać" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Pytać" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Sydłowa zdźělenka" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 #, fuzzy msgid "Local views" msgstr "Lokalny" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Nowa zdźělenka" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "Zakładna sydłowa konfiguracija" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Pomoc" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Wo" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Huste prašenja" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Priwatnosć" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Žórło" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "" @@ -5288,7 +5296,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5296,7 +5304,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5305,7 +5313,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5314,72 +5322,72 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "Wobsah zdźělenkow přepytać" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "Registrowanje" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Po" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Před" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5507,7 +5515,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5522,188 +5530,210 @@ msgid "Icon for this application" msgstr "Symbol za tutu aplikaciju" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Wopisaj swoju aplikaciju z %d znamješkami" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Wopisaj swoju aplikaciju z %d znamješkami" +msgstr[1] "Wopisaj swoju aplikaciju z %d znamješkami" +msgstr[2] "Wopisaj swoju aplikaciju z %d znamješkami" +msgstr[3] "Wopisaj swoju aplikaciju z %d znamješkami" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Wopisaj swoju aplikaciju" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "URL za startowu stronu organizacije" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL žórła" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizacija, kotraž je za tutu aplikaciju zamołwita" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL za startowu stronu organizacije" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Wobhladowak" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Jenož čitajomny" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Popisujomny" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Přetorhnyć" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "popisujomny" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "jenož čitajomny" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Wotwołać" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Přiwěški" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Awtor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Poskićowar" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "Přiwěšk njeeksistuje." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Změnjenje hesła je so njeporadźiło" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Změnjenje hesła njeje dowolene" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokować" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Přikazowe wuslědki" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Zmylk Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Přikaz wuwjedźeny" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Přikaz je so njeporadźił" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Zdźělenka z tym ID njeeksistuje." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Wužiwar nima poslednju powěsć." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Tutón přikaz hišće njeje implementowany." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5712,7 +5742,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5721,53 +5751,54 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 #, fuzzy msgid "Notice marked as fave." msgstr "Tuta zdźělenka je hižo faworit!" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Dospołne mjeno: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Městno: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Startowa strona: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Wo: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5776,7 +5807,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5784,125 +5815,125 @@ msgstr "" "pósłał." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Zmylk při słanju direktneje powěsće," #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Powěsć wot %s wospjetowana." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Zmylk při wospjetowanju zdźělenki" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Wotmołwa na %s pósłana." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Zmylk při składowanju powěsće" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "OMB-profile njedadźa so přez přikaz abonować." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Přikaz hišće njeimplementowany." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Zdźělenje znjemóžnjene." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Zdźělenje njeda so znjemóžnić." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Zdźělenje zmóžnjene." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Zdźělenje njeda so zmóžnić." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Njejsy nikoho abonował." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Sy tutu wosobu abonował:" @@ -5912,14 +5943,14 @@ msgstr[3] "Sy tute wosoby abonował:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nichtó njeje će abonował." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Tuta wosoba je će abonowała:" @@ -5929,14 +5960,14 @@ msgstr[3] "Tute wosoby su će abonowali:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Njejsy čłon w žanej skupinje." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sy čłon tuteje skupiny:" @@ -5945,7 +5976,7 @@ msgstr[2] "Sy čłon tutych skupinow:" msgstr[3] "Sy čłon tutych skupinow:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5987,39 +6018,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Žana konfiguraciska dataja namakana. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Sym na slědowacych městnach za konfiguraciskimi datajemi pytał: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Móže być, zo chceš instalaciski program startować, zo by to porjedźił." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "K instalaciji" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Aktualizacije přez Instant Messenger (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Aktualizacije přez SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Zwiski" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Awtorizowane zwjazane aplikacije" @@ -6043,12 +6096,12 @@ msgstr "" msgid "Design defaults restored." msgstr "Designowe nastajenja składowane." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor this notice" msgstr "Tutu zdźělenku wušmórnyć" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 #, fuzzy msgid "Favor this notice" msgstr "Tutu zdźělenku wospjetować" @@ -6069,7 +6122,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6507,7 +6560,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "wot" @@ -6654,55 +6707,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "S" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "J" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "W" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Z" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "w" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "w konteksće" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Wospjetowany wot" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Na tutu zdźělenku wotmołwić" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Wotmołwić" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Zdźělenka wospjetowana" @@ -6775,7 +6828,7 @@ msgid "Tags in %s's notices" msgstr "Wužiwar nima poslednju powěsć" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Njeznaty" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 33230c399e..df39b10351 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:48+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:10+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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" @@ -84,7 +84,7 @@ msgstr "Hozzáférések beállításainak mentése" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Mentés" @@ -115,7 +115,7 @@ msgstr "Nincs ilyen lap." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Nincs ilyen felhasználó." @@ -354,7 +354,7 @@ msgid "This status is already a favorite." msgstr "Ez az állapotjelentés már a kedvenceid között van." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Nem sikerült létrehozni a kedvencet." @@ -467,18 +467,18 @@ msgid "Group not found." msgstr "A csoport nem található." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Már tagja vagy ennek a csoportnak." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Az adminisztrátor blokkolt ebből a csoportból." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nem sikerült %1$s felhasználót hozzáadni a %2$s csoporthoz." @@ -490,7 +490,7 @@ msgstr "Nem vagy tagja ennek a csoportnak." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nem sikerült %1$s felhasználót eltávolítani a %2$s csoportból." @@ -602,7 +602,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Kontó" @@ -616,7 +616,7 @@ msgstr "Becenév" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Jelszó" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "Nincs ilyen hír." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nem ismételheted meg a saját híredet." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Már megismételted azt a hírt." @@ -762,7 +762,7 @@ msgstr "Érvénytelen méret." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -793,7 +793,7 @@ msgid "Preview" msgstr "Előnézet" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Törlés" @@ -876,7 +876,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Felhasználó blokkolása" @@ -895,8 +895,8 @@ msgstr "Nem sikerült elmenteni a blokkolási információkat." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Nincs ilyen csoport." @@ -1012,7 +1012,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1072,7 +1072,7 @@ msgid "Do not delete this notice" msgstr "Ne töröljük ezt a hírt" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Töröljük ezt a hírt" @@ -1103,7 +1103,7 @@ msgstr "Töröljük ezt a felhasználót" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Megjelenés" @@ -1229,7 +1229,7 @@ msgstr "Visszaállítás az alapértelmezettre" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Mentés" @@ -1349,7 +1349,7 @@ msgid "Could not update group." msgstr "Nem sikerült a csoport frissítése." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nem sikerült létrehozni az álneveket." @@ -1406,7 +1406,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Mégse" @@ -1599,7 +1599,7 @@ msgstr "Új bejövő e-mail cím hozzáadva." msgid "This notice is already a favorite!" msgstr "Ez a hír már a kedvenceid között van!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Kedvenc eltávolítása" @@ -1896,7 +1896,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s története" @@ -2161,7 +2161,7 @@ msgstr "Ezen felhasználók híreire már feliratkoztál:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2267,7 +2267,7 @@ msgid "You must be logged in to leave a group." msgstr "Be kell jelentkezned hogy elhagyhass egy csoportot." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Nem vagy tagja annak a csoportnak." @@ -2486,14 +2486,14 @@ msgid "New message" msgstr "Új üzenet" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Ennek a felhasználónak nem küldhetsz üzenetet." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Nincs tartalom!" @@ -2502,7 +2502,7 @@ msgid "No recipient specified." msgstr "Nincs címzett megadva." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Ne küldj üzenetet magadnak, helyette mondd el halkan." @@ -2513,12 +2513,12 @@ msgstr "Üzenet elküldve" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Közvetlen üzenet ment %s részére." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-hiba" @@ -2647,8 +2647,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Nem támogatott adatformátum." @@ -3000,7 +3000,7 @@ msgstr "Teljes név" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Honlap" @@ -3384,7 +3384,7 @@ msgstr "Ugyanaz mint a jelszó fentebb. Szükséges." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3523,7 +3523,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "" @@ -3653,13 +3653,13 @@ msgid "Name" msgstr "Név" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Szervezet" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Leírás" @@ -4406,7 +4406,7 @@ msgstr "%s nem követ figyelemmel senkit." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4525,7 +4525,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4709,7 +4709,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4758,7 +4758,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "" @@ -4766,29 +4766,25 @@ msgstr "" msgid "Author(s)" msgstr "Szerző(k)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Kedvelem" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4797,20 +4793,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "" @@ -4829,13 +4825,28 @@ msgstr "" msgid "Group leave failed." msgstr "" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Hiba a felhasználó mentésekor; érvénytelen." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Csatlakozzunk" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4858,17 +4869,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "" @@ -4920,32 +4931,32 @@ msgid "Problem saving notice." msgstr "Probléma merült fel a hír mentése közben." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -4995,13 +5006,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5012,57 +5019,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Nem sikerült létrehozni a csoportot." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Nem sikerült beállítani a csoporttagságot." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Avatar feltöltése" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Változtasd meg a jelszavad" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Email kezelés megváltoztatása" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "További opciók" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Más egyéb" @@ -5078,184 +5085,185 @@ msgid "Untitled page" msgstr "Név nélküli oldal" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Elsődleges navigáció" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Kapcsolódás" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "A webhely híre" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Másodlagos navigáció" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Súgó" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Névjegy" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "GyIK" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Felhasználási feltételek" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Forrás" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kapcsolat" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "A StatusNet szoftver licence" @@ -5263,7 +5271,7 @@ msgstr "A StatusNet szoftver licence" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5271,7 +5279,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5280,7 +5288,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5289,70 +5297,70 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "A webhely tartalmára vonatkozó licenc" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Utána" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Előtte" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5477,7 +5485,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5492,186 +5500,206 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Jellemezd a csoportot vagy a témát %d karakterben" +msgstr[1] "Jellemezd a csoportot vagy a témát %d karakterben" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "A szervezet honlapjának URL-je" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "Hitelesítés után átirányítás erre az URL-re" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Böngésző" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Asztal" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Csak olvasható" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Írható-olvasható" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Mégse" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Csatolmányok" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Szerző" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Szolgáltató" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Hírek, ahol ez a melléklet megjelenik" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Címkék ehhez a melléklethez" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "A jelszó megváltoztatása sikertelen" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "A jelszó megváltoztatása nem engedélyezett" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkolás" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-hiba" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5680,7 +5708,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5692,52 +5720,53 @@ msgstr "" "Hírek: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "A hír kedveltként van megjelölve." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Teljes név: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Helyszín: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Honlap: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5746,131 +5775,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Hiba a közvetlen üzenet küldése közben." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Hiba a hír ismétlésekor." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Hiba a hír elmentésekor." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Ne legyenek értesítések." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Legyenek értesítések." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Senkinek sem iratkoztál fel a híreire." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ezen személy híreire iratkoztál fel:" @@ -5878,14 +5907,14 @@ msgstr[1] "Ezen emberek híreire iratkoztál fel:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Senki sem követ figyelemmel." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Ez a személy iratkozott fel a híreidre:" @@ -5893,21 +5922,21 @@ msgstr[1] "Ezek az emberek iratkoztak fel a híreidre:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Nem vagy tagja semmilyen csoportnak." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Ennek a csoportnak vagy tagja:" msgstr[1] "Ezeknek a csoportoknak vagy tagja:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5949,39 +5978,60 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Nem találtunk konfigurációs fájlt. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "A következő helyeken kerestem konfigurációs fájlokat: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "A telepítő futtatása kijavíthatja ezt." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Menj a telepítőhöz." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kapcsolatok" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6002,11 +6052,11 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Nem kedvelem ezt a hírt" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Kedvelem ezt a hírt" @@ -6026,7 +6076,7 @@ msgstr "Atom" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6528,7 +6578,7 @@ msgstr "" "keveredj más felhasználókkal. Olyan üzenetet küldhetnek neked emberek, amit " "csak te láthatsz." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "írta" @@ -6673,55 +6723,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "É" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "D" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "K" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Ny" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "előzmény" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Megismételte:" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Válaszoljunk erre a hírre" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Válasz" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "A hírt megismételtük" @@ -6792,7 +6842,7 @@ msgid "Tags in %s's notices" msgstr "Címkék %s híreiben" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 4ed5b1fef8..ec031153c6 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:49+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -110,7 +110,7 @@ msgstr "Pagina non existe." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Iste usator non existe." @@ -354,7 +354,7 @@ msgid "This status is already a favorite." msgstr "Iste stato es ja favorite." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Non poteva crear le favorite." @@ -467,18 +467,18 @@ msgid "Group not found." msgstr "Gruppo non trovate." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Tu es ja membro de iste gruppo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Le administrator te ha blocate de iste gruppo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." @@ -490,7 +490,7 @@ msgstr "Tu non es membro de iste gruppo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non poteva remover le usator %1$s del gruppo %2$s." @@ -610,7 +610,7 @@ msgstr "" "accesso a tu conto de %4$s a tertie personas in le quales tu ha confidentia." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Conto" @@ -624,7 +624,7 @@ msgstr "Pseudonymo" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasigno" @@ -654,12 +654,12 @@ msgid "No such notice." msgstr "Nota non trovate." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non pote repeter tu proprie nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Iste nota ha ja essite repetite." @@ -773,7 +773,7 @@ msgstr "Dimension invalide." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -805,7 +805,7 @@ msgid "Preview" msgstr "Previsualisation" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Deler" @@ -891,7 +891,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blocar iste usator" @@ -910,8 +910,8 @@ msgstr "Falleva de salveguardar le information del blocada." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Gruppo non existe." @@ -1027,7 +1027,7 @@ msgstr "Tu non es le proprietario de iste application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1092,7 +1092,7 @@ msgid "Do not delete this notice" msgstr "Non deler iste nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Deler iste nota" @@ -1123,7 +1123,7 @@ msgstr "Deler iste usator" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Apparentia" @@ -1253,7 +1253,7 @@ msgstr "Revenir al predefinitiones" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Salveguardar" @@ -1373,7 +1373,7 @@ msgid "Could not update group." msgstr "Non poteva actualisar gruppo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Non poteva crear aliases." @@ -1429,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" @@ -1621,7 +1621,7 @@ msgstr "Nove adresse de e-mail entrante addite." msgid "This notice is already a favorite!" msgstr "Iste nota es ja favorite!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Disfavorir favorite" @@ -1924,7 +1924,7 @@ msgstr "Facer iste usator un administrator" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Chronologia de %s" @@ -2208,7 +2208,7 @@ msgstr "Tu es ja subscribite a iste usatores:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2342,7 +2342,7 @@ msgid "You must be logged in to leave a group." msgstr "Tu debe aperir un session pro quitar un gruppo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Tu non es membro de iste gruppo." @@ -2567,14 +2567,14 @@ msgid "New message" msgstr "Nove message" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Tu non pote inviar un message a iste usator." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Nulle contento!" @@ -2583,7 +2583,7 @@ msgid "No recipient specified." msgstr "Nulle destinatario specificate." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2596,12 +2596,12 @@ msgstr "Message inviate" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Message directe a %s inviate." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Error de Ajax" @@ -2741,8 +2741,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solmente le URLs %s es permittite super HTTP simple." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -3096,7 +3096,7 @@ msgstr "Nomine complete" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina personal" @@ -3490,7 +3490,7 @@ msgstr "Identic al contrasigno hic supra. Requirite." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3652,7 +3652,7 @@ msgstr "Tu non pote repeter tu proprie nota." msgid "You already repeated that notice." msgstr "Tu ha ja repetite iste nota." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetite" @@ -3788,13 +3788,13 @@ msgid "Name" msgstr "Nomine" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -4581,7 +4581,7 @@ msgstr "%s non seque alcuno." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4707,7 +4707,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscription predefinite invalide: '%1$s' non es usator." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" @@ -4902,7 +4902,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualisationes de %1$s in %2$s!" @@ -4963,7 +4963,7 @@ msgid "Plugins" msgstr "Plug-ins" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -4971,29 +4971,25 @@ msgstr "Version" msgid "Author(s)" msgstr "Autor(es)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Favorir" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s marcava le nota %s como favorite." - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Impossibile processar le URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin pensa que alique es impossibile." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5004,20 +5000,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Un file de iste dimension excederea tu quota de usator de %d bytes." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un file de iste dimension excederea tu quota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nomine de file invalide." @@ -5036,13 +5032,28 @@ msgstr "Non es membro del gruppo." msgid "Group leave failed." msgstr "Le cancellation del membrato del gruppo ha fallite." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Error de salveguardar le usator; invalide." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Inscriber" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s se ha jungite al gruppo %2$s." @@ -5065,17 +5076,17 @@ msgid "No database name or DSN found anywhere." msgstr "Nulle nomine de base de datos o DSN trovate." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Il te es prohibite inviar messages directe." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Non poteva inserer message." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Non poteva actualisar message con nove URI." @@ -5131,32 +5142,32 @@ msgid "Problem saving notice." msgstr "Problema salveguardar nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Mal typo fornite a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Non pote revocar le rolo \"%1$s\" del usator #%2$d; non existe." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5208,15 +5219,11 @@ msgstr "Non poteva deler le indicio OMB del subscription." msgid "Could not delete subscription." msgstr "Non poteva deler subscription." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Sequer" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s seque ora %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5225,57 +5232,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenite a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Non poteva crear gruppo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Non poteva definir le URL del gruppo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Non poteva configurar le membrato del gruppo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Non poteva salveguardar le informationes del gruppo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Cambiar le optiones de tu profilo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Incargar un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cambiar tu contrasigno" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Modificar le tractamento de e-mail" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Designar tu profilo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Altere optiones" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Altere" @@ -5291,184 +5298,185 @@ msgid "Untitled page" msgstr "Pagina sin titulo" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navigation primari del sito" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personal e chronologia de amicos" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connecter a servicios" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connecter" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modificar le configuration del sito" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invitar amicos e collegas a accompaniar te in %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar le session del sito" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Clauder session" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear un conto" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Crear conto" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Authenticar te a iste sito" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Aperir session" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Cercar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Aviso del sito" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistas local" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Aviso de pagina" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navigation secundari del sito" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Adjuta" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "A proposito" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "CdS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Confidentialitate" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insignia" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licentia del software StatusNet" @@ -5476,7 +5484,7 @@ msgstr "Licentia del software StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5486,7 +5494,7 @@ msgstr "" "%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblog." @@ -5495,7 +5503,7 @@ msgstr "**%%site.name%%** es un servicio de microblog." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5507,73 +5515,73 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licentia del contento del sito" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contento e datos de %1$s es private e confidential." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Contento e datos sub copyright del contributores. Tote le derectos reservate." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Tote le contento e datos de %1$s es disponibile sub le licentia %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Post" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Ante" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Expectava le elemento-radice de un syndication, ma recipeva un documento XML " "integre." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Non pote ancora tractar contento remote." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Non pote ancora tractar contento XML incastrate." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Non pote ancora tractar contento Base64 incastrate." @@ -5700,7 +5708,7 @@ msgid "Tried to revoke unknown token." msgstr "Tentava revocar un indicio non cognoscite." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Falleva de deler le indicio revocate." @@ -5715,188 +5723,208 @@ msgid "Icon for this application" msgstr "Icone pro iste application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Describe tu application in %d characteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Describe tu application in %d characteres" +msgstr[1] "Describe tu application in %d characteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Describe tu application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL del pagina initial de iste application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL de origine" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisation responsabile de iste application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL del pagina initial del organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL verso le qual rediriger post authentication" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navigator" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Scriptorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typo de application, navigator o scriptorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lectura solmente" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lectura e scriptura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinite pro iste application: lectura solmente, o lectura e " "scriptura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancellar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lectura-scriptura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "lectura solmente" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Accesso \"%2$s\" approbate le %1$s." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Annexos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Providitor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notas ubi iste annexo appare" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquettas pro iste annexo" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Cambio del contrasigno fallite" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Cambio del contrasigno non permittite" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blocar" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultatos del commando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Error de Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Commando complete" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Commando fallite" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Non existe un nota con iste ID." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Le usator non ha un ultime nota." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Non poteva trovar un usator con pseudonymo %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Non poteva trovar un usator local con pseudonymo %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Pardono, iste commando non es ancora implementate." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Non ha multe senso pulsar te mesme!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Pulsata inviate a %s." @@ -5905,7 +5933,7 @@ msgstr "Pulsata inviate a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5917,52 +5945,53 @@ msgstr "" "Notas: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Nota marcate como favorite." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s se jungeva al gruppo %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s quitava le gruppo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nomine complete: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Loco: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Pagina personal: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "A proposito: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5973,111 +6002,111 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Message troppo longe - maximo es %1$d characteres, tu inviava %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Error durante le invio del message directe." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Nota de %s repetite." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Error durante le repetition del nota." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Nota troppo longe - maximo es %d characteres, tu inviava %d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Responsa a %s inviate." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Errur durante le salveguarda del nota." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Specifica le nomine del usator al qual subscriber te." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossibile subscriber se a profilos OMB per medio de un commando." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subscribite a %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Specifica le nomine del usator al qual cancellar le subscription." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Subscription a %s cancellate." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Commando non ancora implementate." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notification disactivate." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Non pote disactivar notification." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notification activate." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Non pote activar notification." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Le commando de apertura de session es disactivate." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6086,20 +6115,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Subscription de %s cancellate." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Tu non es subscribite a alcuno." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Tu es subscribite a iste persona:" @@ -6107,14 +6136,14 @@ msgstr[1] "Tu es subscribite a iste personas:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Necuno es subscribite a te." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Iste persona es subscribite a te:" @@ -6122,21 +6151,21 @@ msgstr[1] "Iste personas es subscribite a te:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Tu non es membro de alcun gruppo." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Tu es membro de iste gruppo:" msgstr[1] "Tu es membro de iste gruppos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6216,39 +6245,61 @@ msgstr "" "tracks - non ancora implementate.\n" "tracking - non ancora implementate.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Nulle file de configuration trovate. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Io cercava files de configuration in le sequente locos: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Considera executar le installator pro reparar isto." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir al installator." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualisationes per messageria instantanee (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualisationes per SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexiones" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Applicationes autorisate connectite" @@ -6271,11 +6322,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Apparentia predefinite restaurate." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Disfavorir iste nota" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Favorir iste nota" @@ -6295,7 +6346,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Amico de un amico" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Syndicationes" @@ -6830,7 +6881,7 @@ msgstr "" "altere usatores in conversation. Altere personas pote inviar te messages que " "solmente tu pote leger." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "via" @@ -6983,55 +7034,55 @@ msgstr "" "previste. Per favor reproba plus tarde." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "in" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetite per" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a iste nota" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Nota repetite" @@ -7102,7 +7153,7 @@ msgid "Tags in %s's notices" msgstr "Etiquettas in le notas de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Incognite" @@ -7488,16 +7539,21 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s non es un color valide! Usa 3 o 6 characteres hexadecimal." #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" -msgstr "File de copia de reserva pro le usator %s (%s)\n" +msgstr "File de copia de reserva pro le usator %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Nulle usator specificate; le usator de reserva es usate.\n" +msgstr "Nulle usator specificate; le usator de reserva es usate." #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." -msgstr "%d entratas in copia de reserva.\n" +msgstr "%d entratas in copia de reserva." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s marcava le nota %s como favorite." + +#~ msgid "%s is now following %s." +#~ msgstr "%s seque ora %s." diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 5bbff5b7ed..c58390a607 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:50+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:13+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -85,7 +85,7 @@ msgstr "Stillingar fyrir mynd" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -118,7 +118,7 @@ msgstr "Ekkert þannig merki." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Enginn svoleiðis notandi." @@ -357,7 +357,7 @@ msgid "This status is already a favorite." msgstr "Þetta babl er nú þegar í uppáhaldi!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Gat ekki búið til uppáhald." @@ -478,19 +478,19 @@ msgid "Group not found." msgstr "Fannst ekki." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "Þú ert nú þegar meðlimur í þessum hópi" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Gat ekki skráð hópmeðlimi." @@ -503,7 +503,7 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Gat ekki búið til hóp." @@ -620,7 +620,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Aðgangur" @@ -634,7 +634,7 @@ msgstr "Stuttnefni" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Lykilorð" @@ -665,13 +665,13 @@ msgid "No such notice." msgstr "Ekkert svoleiðis babl." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Get ekki kveikt á tilkynningum." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Get ekki eytt þessu babli." @@ -783,7 +783,7 @@ msgstr "Ótæk stærð." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Mynd" @@ -814,7 +814,7 @@ msgid "Preview" msgstr "Forsýn" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Eyða" @@ -902,7 +902,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -921,8 +921,8 @@ msgstr "Mistókst að vista upplýsingar um notendalokun" #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Enginn þannig hópur." @@ -1043,7 +1043,7 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -1106,7 +1106,7 @@ msgid "Do not delete this notice" msgstr "Get ekki eytt þessu babli." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Eyða þessu babli" @@ -1139,7 +1139,7 @@ msgstr "Eyða þessu babli" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Vista" @@ -1406,7 +1406,7 @@ msgid "Could not update group." msgstr "Gat ekki uppfært hóp." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Gat ekki búið til uppáhald." @@ -1464,7 +1464,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1661,7 +1661,7 @@ msgstr "Nýju móttökutölvupóstfangi bætt við." msgid "This notice is already a favorite!" msgstr "Þetta babl er nú þegar í uppáhaldi!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Ekki lengur í uppáhaldi" @@ -1975,7 +1975,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Rás %s" @@ -2254,7 +2254,7 @@ msgstr "Þú ert nú þegar í áskrift að þessum notendum:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2390,7 +2390,7 @@ msgid "You must be logged in to leave a group." msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Þú ert ekki meðlimur í þessum hópi." @@ -2622,14 +2622,14 @@ msgid "New message" msgstr "Ný skilaboð" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Þú getur ekki sent þessum notanda skilaboð." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Ekkert innihald!" @@ -2638,7 +2638,7 @@ msgid "No recipient specified." msgstr "Enginn móttökuaðili tilgreindur." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2652,12 +2652,12 @@ msgstr "Skilaboð" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Bein skilaboð send til %s" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax villa" @@ -2794,8 +2794,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -3164,7 +3164,7 @@ msgstr "Fullt nafn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimasíða" @@ -3555,7 +3555,7 @@ msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Tölvupóstur" @@ -3721,7 +3721,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." msgid "You already repeated that notice." msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 #, fuzzy msgid "Repeated" msgstr "Í sviðsljósinu" @@ -3859,14 +3859,14 @@ msgid "Name" msgstr "Stuttnefni" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Uppröðun" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Lýsing" @@ -4629,7 +4629,7 @@ msgstr "%1$s er að hlusta á bablið þitt á %2$s." msgid "Jabber" msgstr "Jabber snarskilaboðaþjónusta" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4758,7 +4758,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Persónuleg síða" @@ -4962,7 +4962,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" @@ -5011,7 +5011,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 #, fuzzy msgid "Version" msgstr "Persónulegt" @@ -5020,29 +5020,25 @@ msgstr "Persónulegt" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Uppáhald" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5051,20 +5047,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Ótæk stærð." @@ -5087,13 +5083,28 @@ msgstr "Gat ekki uppfært hóp." msgid "Group leave failed." msgstr "Hópssíðan" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Villa kom upp í vistun notanda: ótækt." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Gerast meðlimur" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5117,18 +5128,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Villa kom upp við að senda bein skilaboð" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Gat ekki skeytt skilaboðum inn í." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Gat ekki uppfært skilaboð með nýju veffangi." @@ -5186,33 +5197,33 @@ msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5266,13 +5277,9 @@ msgstr "Gat ekki vistað áskrift." msgid "Could not delete subscription." msgstr "Gat ekki vistað áskrift." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5283,59 +5290,59 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Skilaboð til %1$s á %2$s" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Gat ekki búið til hóp." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Gat ekki búið til hóp." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Gat ekki skráð hópmeðlimi." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Gat ekki vistað áskrift." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Breyta persónulegu stillingunum þínum" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Hlaða upp einkennismynd" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Breyta lykilorðinu þínu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Breyta tölvupóstumsjón" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Persónuleg síða notanda" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Aðrir valkostir" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Annað" @@ -5351,44 +5358,44 @@ msgid "Untitled page" msgstr "Ónafngreind síða" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Stikl aðalsíðu" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persónuleg síða og vinarás" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persónulegt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Breyta lykilorðinu þínu" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Gat ekki framsent til vefþjóns: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Tengjast" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" @@ -5396,84 +5403,84 @@ msgstr "Stikl aðalsíðu" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Stjórnandi" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Bjóða" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Skrá þig inn á síðuna" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Einkennismerki" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Búa til nýjan hóp" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Nýskrá" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Skrá þig inn á síðuna" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Innskráning" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjálp" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjálp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Leita að fólki eða texta" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5481,67 +5488,68 @@ msgstr "Leita" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Babl vefsíðunnar" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Staðbundin sýn" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Babl síðunnar" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Stikl undirsíðu" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hjálp" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Um" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Spurt og svarað" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Friðhelgi" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Frumþula" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Tengiliður" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Pot" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" @@ -5549,7 +5557,7 @@ msgstr "Hugbúnaðarleyfi StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5559,7 +5567,7 @@ msgstr "" "broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er örbloggsþjónusta." @@ -5568,7 +5576,7 @@ msgstr "**%%site.name%%** er örbloggsþjónusta." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5580,71 +5588,71 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "Hugbúnaðarleyfi StatusNet" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Uppröðun" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Eftir" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Áður" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5783,7 +5791,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5798,194 +5806,212 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" +msgstr[1] "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Lýsing" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Frumþula" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Hætta við" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Endurheimta" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 #, fuzzy msgid "Provider" msgstr "Forsýn" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Lykilorðabreyting" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Lykilorðabreyting" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Loka" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Niðurstöður skipunar" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax villa" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Fullkláruð skipun" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Misheppnuð skipun" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Enginn persónuleg síða með þessu einkenni." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Notandi hefur ekkert nýtt babl" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Fyrirgefðu en þessi skipun hefur ekki enn verið útbúin." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Ýtt við notanda" @@ -5994,7 +6020,7 @@ msgstr "Ýtt við notanda" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -6003,52 +6029,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Babl gert að uppáhaldi." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullt nafn: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Staðsetning: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Heimasíða: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Um: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6057,128 +6084,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Villa kom upp við að senda bein skilaboð" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Babl sent inn" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Villa kom upp í stillingu notanda." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Svara þessu babli" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Vandamál komu upp við að vista babl." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Þú ert ekki áskrifandi." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Skipun hefur ekki verið fullbúin" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Tilkynningar af." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Get ekki slökkt á tilkynningum." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Tilkynningar á." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Get ekki kveikt á tilkynningum." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Þú ert ekki áskrifandi." @@ -6186,7 +6213,7 @@ msgstr "Þú ert ekki áskrifandi." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:" @@ -6194,7 +6221,7 @@ msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." @@ -6202,7 +6229,7 @@ msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér." @@ -6210,7 +6237,7 @@ msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Þú ert ekki meðlimur í þessum hópi." @@ -6218,14 +6245,14 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Þú ert ekki meðlimur í þessum hópi." msgstr[1] "Þú ert ekki meðlimur í þessum hópi." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6267,42 +6294,63 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Enginn staðfestingarlykill." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Skrá þig inn á síðuna" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Snarskilaboð" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Færslur sendar með snarskilaboðaþjónustu (instant messaging)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Færslur sendar með SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Tengjast" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6325,11 +6373,11 @@ msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Taka þetta babl út sem uppáhald" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Setja þetta babl í uppáhald" @@ -6349,7 +6397,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6790,7 +6838,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 #, fuzzy msgid "from" msgstr "frá" @@ -6940,58 +6988,58 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "Nei" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Ekkert innihald!" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Í sviðsljósinu" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Svara þessu babli" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Babl sent inn" @@ -7063,7 +7111,7 @@ msgid "Tags in %s's notices" msgstr "Merki í babli %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "Óþekkt aðgerð" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 6b4bb2721d..cf0a5fffaf 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:51+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:14+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Salva" @@ -114,7 +114,7 @@ msgstr "Pagina inesistente." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utente inesistente." @@ -356,7 +356,7 @@ msgid "This status is already a favorite." msgstr "Questo messaggio è già un preferito." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Impossibile creare un preferito." @@ -472,18 +472,18 @@ msgid "Group not found." msgstr "Gruppo non trovato." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Fai già parte di quel gruppo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "L'amministratore ti ha bloccato l'accesso a quel gruppo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." @@ -495,7 +495,7 @@ msgstr "Non fai parte di questo gruppo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %2$s." @@ -614,7 +614,7 @@ msgstr "" "accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Account" @@ -628,7 +628,7 @@ msgstr "Soprannome" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -658,12 +658,12 @@ msgid "No such notice." msgstr "Nessun messaggio." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non puoi ripetere un tuo messaggio." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Hai già ripetuto quel messaggio." @@ -774,7 +774,7 @@ msgstr "Dimensione non valida." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Immagine" @@ -806,7 +806,7 @@ msgid "Preview" msgstr "Anteprima" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Elimina" @@ -892,7 +892,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blocca questo utente" @@ -911,8 +911,8 @@ msgstr "Salvataggio delle informazioni per il blocco non riuscito." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Nessuna gruppo." @@ -1028,7 +1028,7 @@ msgstr "Questa applicazione non è di tua proprietà." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1092,7 +1092,7 @@ msgid "Do not delete this notice" msgstr "Non eliminare il messaggio" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -1123,7 +1123,7 @@ msgstr "Elimina questo utente" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Aspetto" @@ -1251,7 +1251,7 @@ msgstr "Reimposta i valori predefiniti" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Salva" @@ -1371,7 +1371,7 @@ msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Impossibile creare gli alias." @@ -1428,7 +1428,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Annulla" @@ -1622,7 +1622,7 @@ msgstr "Nuovo indirizzo email di ricezione aggiunto." msgid "This notice is already a favorite!" msgstr "Questo messaggio è già un preferito!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Rimuovi preferito" @@ -1926,7 +1926,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Attività di %s" @@ -2210,7 +2210,7 @@ msgstr "Hai già un abbonamento a questi utenti:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2343,7 +2343,7 @@ msgid "You must be logged in to leave a group." msgstr "Devi eseguire l'accesso per lasciare un gruppo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Non fai parte di quel gruppo." @@ -2564,14 +2564,14 @@ msgid "New message" msgstr "Nuovo messaggio" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Non puoi inviare un messaggio a questo utente." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Nessun contenuto!" @@ -2580,7 +2580,7 @@ msgid "No recipient specified." msgstr "Nessun destinatario specificato." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." @@ -2591,12 +2591,12 @@ msgstr "Messaggio inviato" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Messaggio diretto a %s inviato." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Errore di Ajax" @@ -2736,8 +2736,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solo URL %s attraverso HTTP semplice." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -3093,7 +3093,7 @@ msgstr "Nome" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina web" @@ -3487,7 +3487,7 @@ msgstr "Stessa password di sopra; richiesta" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" @@ -3649,7 +3649,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi." msgid "You already repeated that notice." msgstr "Hai già ripetuto quel messaggio." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Ripetuti" @@ -3783,13 +3783,13 @@ msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizzazione" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descrizione" @@ -4572,7 +4572,7 @@ msgstr "%s non sta seguendo nessuno." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4700,7 +4700,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" @@ -4894,7 +4894,7 @@ msgstr "Prova a [cercare dei gruppi](%%action.groupsearch%%) e iscriviti." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Messaggi da %1$s su %2$s!" @@ -4955,7 +4955,7 @@ msgid "Plugins" msgstr "Plugin" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versione" @@ -4963,29 +4963,25 @@ msgstr "Versione" msgid "Author(s)" msgstr "Autori" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Preferisci" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, fuzzy, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4996,7 +4992,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5004,14 +5000,14 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Un file di questa dimensione supererebbe la tua quota mensile di %d byte." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Dimensione non valida." @@ -5031,13 +5027,28 @@ msgstr "Non si fa parte del gruppo." msgid "Group leave failed." msgstr "Uscita dal gruppo non riuscita." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Errore nel salvare l'utente; non valido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Iscriviti" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5060,17 +5071,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Ti è proibito inviare messaggi diretti." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Impossibile inserire il messaggio." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Impossibile aggiornare il messaggio con il nuovo URI." @@ -5126,32 +5137,32 @@ msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5203,13 +5214,9 @@ msgstr "Impossibile salvare l'abbonamento." msgid "Could not delete subscription." msgstr "Impossibile salvare l'abbonamento." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5220,57 +5227,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Impossibile creare il gruppo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Impossibile impostare l'URI del gruppo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Impossibile impostare la membership al gruppo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Impossibile salvare le informazioni del gruppo locale." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Modifica le impostazioni del tuo profilo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Carica un'immagine" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Modifica la tua password" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Modifica la gestione dell'email" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Progetta il tuo profilo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Altre opzioni" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Altro" @@ -5286,184 +5293,185 @@ msgid "Untitled page" msgstr "Pagina senza nome" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personale" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connettiti con altri servizi" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connetti" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifica la configurazione del sito" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Amministra" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Invita" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Esci" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un account" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrati" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Accedi" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Aiuto" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca persone o del testo" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Messaggio del sito" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Viste locali" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Pagina messaggio" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Aiuto" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Informazioni" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacy" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Sorgenti" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contatti" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Badge" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licenza del software StatusNet" @@ -5471,7 +5479,7 @@ msgstr "Licenza del software StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5481,7 +5489,7 @@ msgstr "" "(%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** è un servizio di microblog." @@ -5490,7 +5498,7 @@ msgstr "**%%site.name%%** è un servizio di microblog." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5502,27 +5510,27 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licenza del contenuto del sito" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "I contenuti e i dati di %1$s sono privati e confidenziali." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " @@ -5530,7 +5538,7 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5538,39 +5546,39 @@ msgstr "" "licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginazione" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Successivi" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Precedenti" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Atteso un elemento root del feed, ma ricevuto un documento XML intero." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Impossibile gestire contenuti remoti." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Impossibile gestire contenuti XML incorporati." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Impossibile gestire contenuti Base64." @@ -5697,7 +5705,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5712,187 +5720,207 @@ msgid "Icon for this application" msgstr "Icona per questa applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Descrivi l'applicazione in %d caratteri" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Descrivi l'applicazione in %d caratteri" +msgstr[1] "Descrivi l'applicazione in %d caratteri" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Descrivi l'applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL della pagina web di questa applicazione" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL sorgente" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizzazione responsabile per questa applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL della pagina web dell'organizzazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL verso cui redirigere dopo l'autenticazione" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo di applicazione, browser o desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Sola lettura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lettura-scrittura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Annulla" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "Lettura-scrittura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "Sola lettura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Approvata %1$s - Accesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Allegati" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autore" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Provider" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Messaggi in cui appare questo allegato" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etichette per questo allegato" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Modifica della password non riuscita" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "La modifica della password non è permessa" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blocca" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Risultati comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Errore di Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comando completato" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comando non riuscito" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Un messaggio con quel ID non esiste." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "L'utente non ha un ultimo messaggio." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Impossibile trovare un utente col soprannome %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Questo comando non è ancora implementato." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Non ha molto senso se cerchi di richiamarti!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Richiamo inviato a %s." @@ -5901,7 +5929,7 @@ msgstr "Richiamo inviato a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5913,52 +5941,53 @@ msgstr "" "Messaggi: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Messaggio indicato come preferito." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Posizione: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Pagina web: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Informazioni: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5969,131 +5998,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Errore nell'inviare il messaggio diretto." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Messaggio da %s ripetuto." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Errore nel ripetere il messaggio." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Risposta a %s inviata." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Errore nel salvare il messaggio." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Specifica il nome dell'utente a cui abbonarti." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossibile abbonarsi ai profili OMB attraverso un comando." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Comando non ancora implementato." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notifiche disattivate." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Impossibile disattivare le notifiche." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notifiche attivate." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Impossibile attivare le notifiche." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Il comando di accesso è disabilitato." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Il tuo abbonamento è stato annullato." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Persona di cui hai già un abbonamento:" @@ -6101,14 +6130,14 @@ msgstr[1] "Persone di cui hai già un abbonamento:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nessuno è abbonato ai tuoi messaggi." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Questa persona è abbonata ai tuoi messaggi:" @@ -6116,21 +6145,21 @@ msgstr[1] "Queste persone sono abbonate ai tuoi messaggi:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Non fai parte di alcun gruppo." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Non fai parte di questo gruppo:" msgstr[1] "Non fai parte di questi gruppi:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6212,41 +6241,63 @@ msgstr "" "tracks - non ancora implementato\n" "tracking - non ancora implementato\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Non è stato trovato alcun file di configurazione. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "I file di configurazione sono stati cercati in questi posti: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" "Potrebbe essere necessario lanciare il programma d'installazione per " "correggere il problema." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Vai al programma d'installazione." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Messaggi via messaggistica istantanea (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Messaggi via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connessioni" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Applicazioni collegate autorizzate" @@ -6269,11 +6320,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Valori predefiniti ripristinati." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Togli questo messaggio dai preferiti" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Rendi questo messaggio un preferito" @@ -6293,7 +6344,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6830,7 +6881,7 @@ msgstr "" "iniziare una conversazione con altri utenti. Altre persone possono mandare " "messaggi riservati solamente a te." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "via" @@ -6980,55 +7031,55 @@ msgstr "" "previsto. Riprova più tardi." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "presso" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in una discussione" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Ripetuto da" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Rispondi" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Messaggio ripetuto" @@ -7099,7 +7150,7 @@ msgid "Tags in %s's notices" msgstr "Etichette nei messaggi di %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Sconosciuto" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 22bd4a67f1..30b84e9691 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:16+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "アクセス設定の保存" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -114,7 +114,7 @@ msgstr "そのようなタグはありません。" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "そのようなユーザはいません。" @@ -357,7 +357,7 @@ msgid "This status is already a favorite." msgstr "このステータスはすでにお気に入りです。" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "お気に入りを作成できません。" @@ -474,18 +474,18 @@ msgid "Group not found." msgstr "見つかりません。" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "すでにこのグループのメンバーです。" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "管理者によってこのグループからブロックされています。" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ユーザ %1$s はグループ %2$s に参加できません。" @@ -497,7 +497,7 @@ msgstr "このグループのメンバーではありません。" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "ユーザ %1$s をグループ %2$s から削除できません。" @@ -612,7 +612,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "アカウント" @@ -626,7 +626,7 @@ msgstr "ニックネーム" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "パスワード" @@ -656,12 +656,12 @@ msgid "No such notice." msgstr "そのようなつぶやきはありません。" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "あなたのつぶやきを繰り返せません。" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "すでにつぶやきを繰り返しています。" @@ -771,7 +771,7 @@ msgstr "不正なサイズ。" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "アバター" @@ -802,7 +802,7 @@ msgid "Preview" msgstr "プレビュー" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "削除" @@ -891,7 +891,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "このユーザをブロックする" @@ -910,8 +910,8 @@ msgstr "ブロック情報の保存に失敗しました。" #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "そのようなグループはありません。" @@ -1027,7 +1027,7 @@ msgstr "このアプリケーションのオーナーではありません。" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -1092,7 +1092,7 @@ msgid "Do not delete this notice" msgstr "このつぶやきを削除できません。" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "このつぶやきを削除" @@ -1123,7 +1123,7 @@ msgstr "このユーザを削除" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "デザイン" @@ -1252,7 +1252,7 @@ msgstr "デフォルトへリセットする" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1372,7 +1372,7 @@ msgid "Could not update group." msgstr "グループを更新できません。" #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "別名を作成できません。" @@ -1428,7 +1428,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1627,7 +1627,7 @@ msgstr "新しい入ってくるメールアドレスが追加されました。 msgid "This notice is already a favorite!" msgstr "このつぶやきはすでにお気に入りです!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "お気に入りをやめる" @@ -1935,7 +1935,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s のタイムライン" @@ -2218,7 +2218,7 @@ msgstr "すでにこれらのユーザをフォローしています:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2354,7 +2354,7 @@ msgid "You must be logged in to leave a group." msgstr "グループから離れるにはログインしていなければなりません。" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "あなたはそのグループのメンバーではありません。" @@ -2576,14 +2576,14 @@ msgid "New message" msgstr "新しいメッセージ" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "このユーザにメッセージを送ることはできません。" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "コンテンツがありません!" @@ -2592,7 +2592,7 @@ msgid "No recipient specified." msgstr "受取人が書かれていません。" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2604,12 +2604,12 @@ msgstr "メッセージを送りました" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "ダイレクトメッセージを %s に送りました" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax エラー" @@ -2748,8 +2748,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" @@ -3103,7 +3103,7 @@ msgstr "フルネーム" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "ホームページ" @@ -3498,7 +3498,7 @@ msgstr "上のパスワードと同じです。 必須。" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "メール" @@ -3656,7 +3656,7 @@ msgstr "自分のつぶやきは繰り返せません。" msgid "You already repeated that notice." msgstr "すでにそのつぶやきを繰り返しています。" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "繰り返された" @@ -3792,13 +3792,13 @@ msgid "Name" msgstr "名前" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "組織" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "概要" @@ -4599,7 +4599,7 @@ msgstr "%s はだれも言うことを聞いていません。" msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4724,7 +4724,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "プロファイル" @@ -4919,7 +4919,7 @@ msgstr "[グループを探して](%%action.groupsearch%%)それに加入して #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%1$s から %2$s 上の更新をしました!" @@ -4970,7 +4970,7 @@ msgid "Plugins" msgstr "プラグイン" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "バージョン" @@ -4978,29 +4978,25 @@ msgstr "バージョン" msgid "Author(s)" msgstr "作者" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "お気に入り" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, fuzzy, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5012,7 +5008,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5020,14 +5016,14 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "これほど大きいファイルはあなたの%dバイトの毎月の割当てを超えているでしょう。" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "不正なサイズ。" @@ -5047,13 +5043,28 @@ msgstr "グループの一部ではありません。" msgid "Group leave failed." msgstr "グループ脱退に失敗しました。" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "ユーザ保存エラー; 不正なユーザ" + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "参加" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5077,17 +5088,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "あなたはダイレクトメッセージを送るのが禁止されています。" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "メッセージを追加できません。" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "新しいURIでメッセージをアップデートできませんでした。" @@ -5142,32 +5153,32 @@ msgid "Problem saving notice." msgstr "つぶやきを保存する際に問題が発生しました。" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5218,13 +5229,9 @@ msgstr "フォローを保存できません。" msgid "Could not delete subscription." msgstr "フォローを保存できません。" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5235,58 +5242,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "ようこそ %1$s、@%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "グループを作成できません。" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "グループを作成できません。" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "グループメンバーシップをセットできません。" #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "フォローを保存できません。" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "プロファイル設定の変更" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "アバターのアップロード" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "パスワードの変更" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "メールの扱いを変更" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "あなたのプロファイルをデザイン" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "その他のオプション" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "その他" @@ -5302,126 +5309,126 @@ msgid "Untitled page" msgstr "名称未設定ページ" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "パーソナルプロファイルと友人のタイムライン" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "パーソナル" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "パスワードの変更" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "接続" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "接続" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "基本サイト設定" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "管理者" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "友人や同僚が %s で加わるよう誘ってください。" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "招待" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "サイトのテーマ" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "ロゴ" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "新しいグループを作成" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "登録" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "サイトへログイン" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ログイン" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "ヘルプ" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "ヘルプ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "もっとグループを検索" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5429,66 +5436,67 @@ msgstr "検索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "サイトつぶやき" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "ローカルビュー" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "ページつぶやき" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "セカンダリサイトナビゲーション" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "ヘルプ" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "About" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "よくある質問" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "プライバシー" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "ソース" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "連絡先" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "バッジ" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" @@ -5496,7 +5504,7 @@ msgstr "StatusNet ソフトウェアライセンス" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5506,7 +5514,7 @@ msgstr "" "イクロブログサービスです。 " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** はマイクロブログサービスです。" @@ -5515,7 +5523,7 @@ msgstr "**%%site.name%%** はマイクロブログサービスです。" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5527,70 +5535,70 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)。" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "サイト内容ライセンス" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "ページ化" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "<<後" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "前>>" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5721,7 +5729,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5736,192 +5744,211 @@ msgid "Icon for this application" msgstr "このアプリケーションのアイコン" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "あなたのアプリケーションを %d 字以内記述" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "あなたのアプリケーションを %d 字以内記述" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "あなたのアプリケーションを記述" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "このアプリケーションのホームページの URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "ソース URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "このアプリケーションに責任がある組織" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "組織のホームページのURL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "認証の後にリダイレクトするURL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "ブラウザ" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "デスクトップ" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "アプリケーション、ブラウザ、またはデスクトップのタイプ" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "リードオンリー" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "リードライト" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "このアプリケーションのためのデフォルトアクセス: リードオンリー、またはリード" "ライト" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "中止" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 #, fuzzy msgid "read-write" msgstr "リードライト" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 #, fuzzy msgid "read-only" msgstr "リードオンリー" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "回復" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "添付" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "作者" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "プロバイダ" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "この添付が現れるつぶやき" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "この添付のタグ" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "パスワード変更に失敗しました" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "パスワード変更は許可されていません" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "ブロック" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "コマンド結果" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax エラー" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "コマンド完了" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "コマンド失敗" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "その ID によるつぶやきは存在していません" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "利用者はまだつぶやいていません" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "ユーザを更新できません" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "すみません、このコマンドはまだ実装されていません。" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "それは自分自身への合図で多くは意味がありません!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "%s へ合図を送りました" @@ -5930,7 +5957,7 @@ msgstr "%s へ合図を送りました" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5942,52 +5969,53 @@ msgstr "" "つぶやき: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "お気に入りにされているつぶやき。" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "フルネーム: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "場所: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "ホームページ: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "About: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5996,169 +6024,169 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "メッセージが長すぎます - 最大 %1$d 字、あなたが送ったのは %2$d。" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "ダイレクトメッセージ送信エラー。" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "%s からつぶやきが繰り返されています" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "つぶやき繰り返しエラー" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "つぶやきが長すぎます - 最大 %d 字、あなたが送ったのは %d" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "%s へ返信を送りました" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "つぶやき保存エラー。" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "フォローする利用者の名前を指定してください" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "あなたはそのプロファイルにフォローされていません。" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "フォローをやめるユーザの名前を指定してください" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "コマンドはまだ実装されていません。" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "通知オフ。" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "通知をオフできません。" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "通知オン。" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "通知をオンできません。" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 #, fuzzy msgid "Login command is disabled." msgstr "ログインコマンドが無効になっています。" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "あなたはだれにもフォローされていません。" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "あなたはこの人にフォローされています:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "誰もフォローしていません。" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "この人はあなたにフォローされている:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "あなたはどのグループのメンバーでもありません。" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "あなたはこのグループのメンバーではありません:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6200,41 +6228,63 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "コンフィギュレーションファイルがありません。 " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "私は以下の場所でコンフィギュレーションファイルを探しました: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" "あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ" "ん。" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "インストーラへ。" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "インスタントメッセンジャー(IM)での更新" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "SMSでの更新" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "接続" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "承認された接続アプリケーション" @@ -6257,11 +6307,11 @@ msgstr "" msgid "Design defaults restored." msgstr "デフォルトのデザインを回復。" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "このつぶやきのお気に入りをやめる" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "このつぶやきをお気に入りにする" @@ -6281,7 +6331,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6786,7 +6836,7 @@ msgstr "" "に引き込むプライベートメッセージを送ることができます。人々はあなただけへの" "メッセージを送ることができます。" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "from" @@ -6940,59 +6990,59 @@ msgstr "" "度試みてください" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "北" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 #, fuzzy msgid "S" msgstr "南" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 #, fuzzy msgid "E" msgstr "東" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 #, fuzzy msgid "W" msgstr "西" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "at" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "このつぶやきへ返信" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "返信" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "つぶやきを繰り返しました" @@ -7063,7 +7113,7 @@ msgid "Tags in %s's notices" msgstr "%s のつぶやきのタグ" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "不明" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index db46dcaab4..9f1cb23744 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:55+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:17+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "შეინახე შესვლის პარამეტრე #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "შეინახე" @@ -110,7 +110,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "ასეთი მომხმარებელი არ არსებობს." @@ -352,7 +352,7 @@ msgid "This status is already a favorite." msgstr "ეს სტატუსი უკვე ფავორიტია." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "ფავორიტის შექმნა ვერ მოხერხდა." @@ -465,18 +465,18 @@ msgid "Group not found." msgstr "ჯგუფი ვერ მოიძებნა." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "თქვენ უკვე ხართ ამ ჯგუფის წევრი." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "თქვენ დაბლოკილი ხართ ამ ჯგუფიდან ადმინისტრატორის მიერ." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ვერ მოხერხდა მომხმარებელ %1$s-სთან ერთად ჯგუფ %2$s-ში გაერთიანება." @@ -488,7 +488,7 @@ msgstr "თვენ არ ხართ ამ ჯგუფის წევრ #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "მომხმარებლ %1$s-ის გარიცხვა ჯგუფიდან %2$s ვერ მოხერხდა." @@ -600,7 +600,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "ანგარიში" @@ -614,7 +614,7 @@ msgstr "მეტსახელი" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "პაროლი" @@ -644,12 +644,12 @@ msgid "No such notice." msgstr "ასეთი შეტყობინება არ არსებობს." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "ეს შეტყობინება უკვე გამეორებულია." @@ -759,7 +759,7 @@ msgstr "ზომა არასწორია." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "ავატარი" @@ -791,7 +791,7 @@ msgid "Preview" msgstr "წინასწარი გადახედვა" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "წაშლა" @@ -874,7 +874,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "დაბლოკე ეს მომხმარებელი" @@ -893,8 +893,8 @@ msgstr "დაბლოკვის შესახებ ინფორმა #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "ასეთი ჯგუფი ვერ მოიძებნა." @@ -1010,7 +1010,7 @@ msgstr "თქვენ არ ხართ ამ აპლიკაციი #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1072,7 +1072,7 @@ msgid "Do not delete this notice" msgstr "არ წაშალო ეს შეტყობინება" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "შეტყობინების წაშლა" @@ -1103,7 +1103,7 @@ msgstr "ამ მომხმარებლის წაშლა" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "ამ მომხმარებლის წაშლა" @@ -1232,7 +1232,7 @@ msgstr "პირვანდელის პარამეტრების #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "შენახვა" @@ -1352,7 +1352,7 @@ msgid "Could not update group." msgstr "ჯგუფის განახლება ვერ მოხერხდა." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "" @@ -1408,7 +1408,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "გაუქმება" @@ -1601,7 +1601,7 @@ msgstr "დამატებულია ახალი შემომავ msgid "This notice is already a favorite!" msgstr "ეს შეტყობინება უკვე რჩეულია!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "რჩეულის გაუქმება" @@ -1903,7 +1903,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s-ის ნაკადი" @@ -2185,7 +2185,7 @@ msgstr "თქვენ უკვე გამოწერილი გაქვ #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2321,7 +2321,7 @@ msgid "You must be logged in to leave a group." msgstr "გჯუფის დატოვებისათვის საჭიროა ავტორიზაცია." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "თვენ არ ხართ ამ ჯგუფის წევრი." @@ -2542,14 +2542,14 @@ msgid "New message" msgstr "ახალი შეტყობინება" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "ამ მომხმარებელს შეტყობინებას ვერ გაუგზავნი." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "შიგთავსი არ არის!" @@ -2558,7 +2558,7 @@ msgid "No recipient specified." msgstr "მიმღები მითითებული არ არის." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "ნუ გაუგზავნი შეტყობინებას საკუთარ თავს; უბრალოდ ჩუმად ჩაუჩურჩულე." @@ -2569,12 +2569,12 @@ msgstr "შეტყობინება გაგზავნილია" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "პირდაპირი შეტყობინება გაეგზავნა %s–ს." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax შეცდომა" @@ -2710,8 +2710,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "გთხოვთ გამოიყენოთ მხოლოდ %s URL–ები წმინდა HTTP მეთოდით." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "მონაცემთა ფორმატი მხარდაჭერილი არ არის." @@ -3066,7 +3066,7 @@ msgstr "სრული სახელი" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "ვებ. გვერსი" @@ -3457,7 +3457,7 @@ msgstr "იგივე, რაც პაროლი ზევით. სავ #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "ელ. ფოსტა" @@ -3619,7 +3619,7 @@ msgstr "საკუთარი შეტყობინების გამ msgid "You already repeated that notice." msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "გამეორებული" @@ -3753,13 +3753,13 @@ msgid "Name" msgstr "დასახელება" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "ორგანიზაცია" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "აღწერა" @@ -4520,7 +4520,7 @@ msgstr "%s არავის უსმენს." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4647,7 +4647,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "პროფილი" @@ -4842,7 +4842,7 @@ msgstr "სცადეთ [ჯგუფების მოძებნა](%%ac #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%1$s-ს განახლებები %2$s-ზე!" @@ -4903,7 +4903,7 @@ msgid "Plugins" msgstr "დამატებები" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "ვერსია" @@ -4911,29 +4911,25 @@ msgstr "ვერსია" msgid "Author(s)" msgstr "ავტორი(ები)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "რჩეული" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "ვერ ვამოუშავებ URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "რობინი ფიქრობს რაღაც შეუძლებელია." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4944,7 +4940,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -4952,7 +4948,7 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" @@ -4960,7 +4956,7 @@ msgstr "" "ბაიტს." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "ფაილის არასწორი სახელი." @@ -4979,13 +4975,28 @@ msgstr "ჯგუფის წევრი არ ხართ." msgid "Group leave failed." msgstr "ჯგუფის დატოვება ვერ მოხერხდა." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "შეცდომა მომხმარებლის შენახვისას; არასწორი." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "გაერთიანება" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5008,17 +5019,17 @@ msgid "No database name or DSN found anywhere." msgstr "ბაზის სახელი ან DSN ვერსად ვერ მოიძებნა." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "თქვენ აგეკრძალათ პირდაპირი შეტყობინებების გაგზავნის უფლება." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "შეტყობინების ჩასმა ვერ მოხერხდა." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "შეტყობინების ახალი URI-თ განახლება ვერ მოხერხდა." @@ -5074,25 +5085,25 @@ msgid "Problem saving notice." msgstr "პრობლემა შეტყობინების შენახვისას." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "saveKnownGroups-სათვის არასწორი ტიპია მოწოდებული" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5100,7 +5111,7 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5152,13 +5163,9 @@ msgstr "გამოწერის წაშლა ვერ მოხერხ msgid "Could not delete subscription." msgstr "გამოწერის წაშლა ვერ მოხერხდა." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5169,57 +5176,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "გამარჯობა @%2$s, კეთილი იყოს თქვენი მობრძანება %1$s-ზე!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "ჯგუფის შექმნა ვერ მოხერხდა." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "ჯგუფის URI-ს მინიჭება ვერ მოხერხდა." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "ჯგუფის წევრობის მინიჭება ვერ მოხერხდა." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "შეცვალე პროფილის პარამეტრები" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "ატვირთე ავატარი" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "შეცვალე პაროლი" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "ელ. ფოსტის მართვა" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "პროფილის პარამეტრები" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "სხვა ოფციები" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "სხვა" @@ -5235,184 +5242,185 @@ msgid "Untitled page" msgstr "უსათაურო გვერდი" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "საიტის ძირითადი ნავიგაცია" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "პირადი პროფილი და მეგობრების ნაკადი" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "პირადი" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "შეცვალე ელ. ფოსტა, ავატარი, პაროლი, პროფილი" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "სერვისებთან დაკავშირება" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "კავშირი" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "საიტის კონფიგურაცია" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "ადმინი" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "მოწვევა" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "გასვლა საიტიდან" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "გასვლა" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "გახსენი ანგარიში" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "რეგისტრაცია" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "საიტზე შესვლა" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "შესვლა" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "დამეხმარეთ!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "დახმარება" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "მოძებნე ხალხი ან ტექსტი" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "ძიება" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "საიტის შეტყობინება" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "ლოკალური ხედები" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "გვერდის შეტყობინება" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "საიტის მეორადი ნავიგაცია" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "დახმარება" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "საიტის შესახებ" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ხდკ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "მპ" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "პირადი" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "წყარო" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "კონტაქტი" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "იარლიყი" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet კოდის ლიცენზია" @@ -5420,7 +5428,7 @@ msgstr "StatusNet კოდის ლიცენზია" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5430,7 +5438,7 @@ msgstr "" "(%%site.broughtbyurl%%)-ს მიერ." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** არის მიკრობლოგინგის სერვისი." @@ -5439,7 +5447,7 @@ msgstr "**%%site.name%%** არის მიკრობლოგინგი #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5451,71 +5459,71 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "საიტის შიგთავსის ლიცენზია" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s ის შიგთავსი და მონაცემები არის პირადული და კონფიდენციალური." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "შიგთავსი და მონაცემები %1$s-ის საკუთრებაა. ყველა უფლება დაცულია." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "შიგთავსი და მონაცემები წვლილის შემტანების საკუთრებაა. ყველა უფლება დაცულია." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "%1$s-ს მთლიანი შიგთავსი და მონაცემები ხელმისაწვდომია %2$s ლიცენზიით." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "გვერდებათ დაყოფა" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "შემდეგი" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "წინა" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "ჯერჯერობით ვერ ვამუშავებ დაშორებულ შიგთავსს." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5642,7 +5650,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5657,188 +5665,207 @@ msgid "Icon for this application" msgstr "ამ აპლიკაციის ხატულა" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "აღწერეთ თქვენი აპლიკაცია %d სიმბოლოთი" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "აღწერეთ თქვენი აპლიკაცია %d სიმბოლოთი" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "აღწერეთ თქვენი აპლიკაცია" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "აპლიკაციის საწყისი გვერდის URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "წყაროს URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "ამ აპლიკაციაზე პასუხისმგებელი ორგანიზაცია" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "ორგანიზაციის საწყისი გვერდის URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "ავტორიზაციის შემდეგ გადასამისამართებელი URL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "ბროუზერი" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "ინსტალირებადი" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "აპლიკაციის ტიპი, ბროუზერისთვის ან ინსტალირებადი" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "მხოლოდ წაკითხვადი" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "კიტხვა-წერადი" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "შესვლის პირვანდელი მდგომარეობა ამ აპლიკაციისთვის: მხოლოდ წაკითხვადი, ან " "კითხვა-წერადი" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "გაუქმება" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "კიტხვა-წერადი" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "მხოლოდ წაკითხვადი" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "დამტკიცებულია %1$s - \"%2$s\" შესვლა" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "უკუგება" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "მიმაგრებები" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "ავტორი" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "მომწოდებელი" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "შეტყობინებები სადაც ეს მიმაგრება გამოჩენილა" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "ამ მიმაგრების სანიშნეები" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "პაროლის ცვლილება ჩაიშალა" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "პაროლის ცვლილება არ არის ნებადართული" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "ბლოკირება" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "ბრძანების შედეგები" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax შეცდომა" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "ბრძანება დასრულდა" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "ბრძანება ჩაიშალა" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "შეტყობინებები ამ ID-თ არ არსებობს." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "მომხმარებელს არ გააჩნია ბოლო შეტყობინება." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "მომხმარებელი მეტსახელით %s ვერ მოიძებნა." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "ლოკალური მომხმარებელი მეტსახელით %s ვერ მოიძებნა." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "ბოდიში, ეს ბრძანება ჯერ არ არის განხორციელებული." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5847,7 +5874,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5859,52 +5886,53 @@ msgstr "" "შეტყობინებები: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "შეტყობინება მონიშნულია რჩეულად." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s გაწევრიანდა ჯგუფში %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s-მა დატოვა ჯგუფი %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "სრული სახელი: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "მდებარეობა: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "გვერდი: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "%s-ის შესახებ" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5915,7 +5943,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5923,25 +5951,25 @@ msgstr "" "გააგზავნეთ %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "შეცდომა პირდაპირი შეტყობინების გაგზავნისას." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "შეტყობინება %s-გან გამეორდა." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "შეცდომა შეტყობინების გამეორებისას." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5950,134 +5978,134 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "პასუხი %s-ს გაეგზავნა." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "შეცდომა შეტყობინების შენახვისას." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "მიუთითეთ მომხმარებლის სახელი, რომელსაც გინდათ ყური დაუგდოთ." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "%s-ს გამოწერა დასრულდა წარმატებით." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "მიუთითეთ მომხმარებლის სახელი, რომ გამოწერა გააუქმოთ." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "%s-ს გამოწერა გაუქმდა." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "ბრძანება ჯერ არ არის შემუშავებული." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6119,39 +6147,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "კონფიგურაციის ფაილი ვერ მოიძებნა. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "კონფიგურაციის ფაილები შემდეგ ადგილებში ვეძებე: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "თუ გინდათ ინსტალატორი გაუშვით ამის გასასწორებლად." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "გადადი ამ ინსტალატორზე." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "განახლებები ჩათ კლიენტისგან (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "განახლებები SMS-თ" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "შეერთებები" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "ავტორიზირებული შეერთებული აპლიკაციები" @@ -6174,11 +6224,11 @@ msgstr "" msgid "Design defaults restored." msgstr "დიზაინის პირველადი პარამეტრები დაბრუნებულია." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "ამოშალე რჩეულებიდან ეს შეტყობინება" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "ჩაამატე რჩეულებში ეს შეტყობინება" @@ -6198,7 +6248,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6714,7 +6764,7 @@ msgstr "" "შეტყობინებები, რომ ჩაერთოთ საუბრებში სხვა ხალხთან. ხალხს შეუძლია " "გამოგიგზავნონ შეტყობინებები მხოლოდ თქვენ დასანახად." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "ვისგან" @@ -6867,55 +6917,55 @@ msgstr "" "სჭირდება, გთხოვთ სცადოთ მოგვიანებით" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "ჩ" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ს" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "ა" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "დ" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "უპასუხე ამ შეტყობინებას" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "პასუხი" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "შეტყობინება გამეორებულია" @@ -6986,7 +7036,7 @@ msgid "Tags in %s's notices" msgstr "%s-ს შეტყობინებებში გამოყენებული სანიშნეები" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "უცნობი" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 78fac49375..0b09eecb30 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:56+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:18+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "접근 설정을 저장" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "저장" @@ -112,7 +112,7 @@ msgstr "해당하는 페이지 없음" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "해당하는 이용자 없음" @@ -348,7 +348,7 @@ msgid "This status is already a favorite." msgstr "이 소식은 이미 관심소식으로 등록되어 있습니다." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "관심소식을 생성할 수 없습니다." @@ -464,18 +464,18 @@ msgid "Group not found." msgstr "찾을 수가 없습니다." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "당신은 이미 이 그룹의 멤버입니다." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "이미 차단된 이용자입니다." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." @@ -487,7 +487,7 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." @@ -602,7 +602,7 @@ msgstr "" "$s 계정의 접근을 허용해야 합니다." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "계정" @@ -616,7 +616,7 @@ msgstr "별명" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "비밀 번호" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "그러한 통지는 없습니다." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "자기 자신의 소식은 재전송할 수 없습니다." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "이미 재전송된 소식입니다." @@ -761,7 +761,7 @@ msgstr "옳지 않은 크기" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "아바타" @@ -792,7 +792,7 @@ msgid "Preview" msgstr "미리보기" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "삭제" @@ -877,7 +877,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -896,8 +896,8 @@ msgstr "정보차단을 저장하는데 실패했습니다." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "그러한 그룹이 없습니다." @@ -1014,7 +1014,7 @@ msgstr "이 응용프로그램 삭제 않기" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -1077,7 +1077,7 @@ msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -1106,7 +1106,7 @@ msgstr "이 사용자 삭제" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "디자인" @@ -1233,7 +1233,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "저장" @@ -1357,7 +1357,7 @@ msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "관심소식을 생성할 수 없습니다." @@ -1413,7 +1413,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "취소" @@ -1604,7 +1604,7 @@ msgstr "새로운 받는 메일 주소를 추가했습니다." msgid "This notice is already a favorite!" msgstr "이 게시글은 이미 좋아하는 게시글입니다." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "좋아하는글 취소" @@ -1906,7 +1906,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s 타임라인" @@ -2177,7 +2177,7 @@ msgstr "당신은 다음 사용자를 이미 구독하고 있습니다." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2304,7 +2304,7 @@ msgid "You must be logged in to leave a group." msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." @@ -2528,14 +2528,14 @@ msgid "New message" msgstr "새로운 메시지입니다." #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "내용이 없습니다!" @@ -2544,7 +2544,7 @@ msgid "No recipient specified." msgstr "수신자를 지정하지 않았습니다." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2556,12 +2556,12 @@ msgstr "쪽지가 전송되었습니다." #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "%s에게 보낸 직접 메시지" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax 에러입니다." @@ -2696,8 +2696,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." @@ -3052,7 +3052,7 @@ msgstr "실명" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "홈페이지" @@ -3437,7 +3437,7 @@ msgstr "위와 같은 비밀 번호. 필수 사항." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "메일" @@ -3597,7 +3597,7 @@ msgstr "자신의 글은 재전송할 수 없습니다." msgid "You already repeated that notice." msgstr "이미 재전송된 소식입니다." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "재전송됨" @@ -3727,13 +3727,13 @@ msgid "Name" msgstr "이름" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "기관 이름이 필요합니다." #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "설명" @@ -4493,7 +4493,7 @@ msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다. msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4615,7 +4615,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "프로필" @@ -4814,7 +4814,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -4863,7 +4863,7 @@ msgid "Plugins" msgstr "플러그인" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "버전" @@ -4872,29 +4872,25 @@ msgstr "버전" msgid "Author(s)" msgstr "작성자" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "좋아합니다" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4903,20 +4899,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "옳지 않은 크기" @@ -4937,13 +4933,28 @@ msgstr "그룹을 업데이트 할 수 없습니다." msgid "Group leave failed." msgstr "그룹에 가입하지 못했습니다." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "사용자 저장 오류; 무효한 사용자" + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "가입" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4967,18 +4978,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "직접 메시지 보내기 오류." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "메시지를 삽입할 수 없습니다." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." @@ -5036,33 +5047,33 @@ msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "통지를 저장하는데 문제가 발생했습니다." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5115,15 +5126,11 @@ msgstr "구독을 저장할 수 없습니다." msgid "Could not delete subscription." msgstr "구독을 저장할 수 없습니다." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "팔로우" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "" - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5132,58 +5139,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "%s에 답신" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "새 그룹을 만들 수 없습니다." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "새 그룹을 만들 수 없습니다." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "그룹 맴버십을 세팅할 수 없습니다." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "새 그룹을 만들 수 없습니다." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "프로필 세팅 바꾸기" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "아바타를 업로드하세요." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "비밀번호 바꾸기" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "메일 처리 변경" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "이용자 프로필" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "다른 옵션들" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "기타" @@ -5199,186 +5206,187 @@ msgid "Untitled page" msgstr "제목없는 페이지" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "주 사이트 네비게이션" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "개인 프로필과 친구 타임라인" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "개인" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "당신의 메일, 아바타, 비밀 번호, 프로필을 변경하세요." #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "연결" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "연결" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "메일 주소 확인" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "관리" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "초대" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "이 사이트에서 로그아웃" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "로그아웃" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "새 계정 만들기" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "등록" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "이 사이트에 로그인" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "로그인" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "도움말" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "도움말" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "검색" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "사이트 공지" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "로컬 뷰" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "페이지 공지" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "도움말" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "정보" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "자주 묻는 질문" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "서비스 약관" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "개인정보 취급방침" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "소스 코드" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "연락하기" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "배지" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet 소프트웨어 라이선스" @@ -5386,7 +5394,7 @@ msgstr "StatusNet 소프트웨어 라이선스" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5396,7 +5404,7 @@ msgstr "" "마이크로블로깅서비스입니다." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." @@ -5405,7 +5413,7 @@ msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5417,71 +5425,71 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "사이트 컨텐츠 라이선스" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s의 컨텐츠와 데이터는 외부 유출을 금지합니다." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "컨텐츠와 데이터의 저작권은 %1$s의 소유입니다. All rights reserved." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "컨텐츠와 데이터의 저작권은 각 이용자의 소유입니다. All rights reserved." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "%1$s의 모든 컨텐츠와 데이터는 %2$s 라이선스에 따라 이용할 수 있습니다." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "페이지수" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "뒷 페이지" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "앞 페이지" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5610,7 +5618,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5626,194 +5634,211 @@ msgid "Icon for this application" msgstr "이 응용프로그램 삭제 않기" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "응용프로그램 삭제" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "응용프로그램 삭제" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "응용프로그램 삭제" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "소스 코드 URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "이 응용프로그램 삭제 않기" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "브라우저" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "데스크톱" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "읽기 전용" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "읽기 쓰기" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "취소" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "읽기 쓰기" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "읽기 전용" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "제거" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "첨부파일" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "작성자" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "미리보기" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "해당하는 첨부파일이 없습니다." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "비밀번호 변경" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "비밀번호 변경" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "차단하기" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "실행결과" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax 에러입니다." + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "실행 완료" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "실행 실패" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "해당 id의 프로필이 없습니다." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "이용자의 지속적인 게시글이 없습니다." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "죄송합니다. 이 명령은 아직 실행되지 않았습니다." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "찔러 보기를 보냈습니다." @@ -5822,7 +5847,7 @@ msgstr "찔러 보기를 보냈습니다." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5831,52 +5856,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "게시글이 좋아하는 글로 지정되었습니다." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "전체이름: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "위치: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "홈페이지: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "자기소개: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5885,127 +5911,127 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "직접 메시지 보내기 오류." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "게시글이 등록되었습니다." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "사용자 세팅 오류" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "이 게시글에 대해 답장하기" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "사용자 세팅 오류" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "구독하려는 사용자의 이름을 지정하십시오." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "당신은 이 프로필에 구독되지 않고있습니다." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "명령이 아직 실행되지 않았습니다." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "알림끄기." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "알림을 끌 수 없습니다." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "알림이 켜졌습니다." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "알림을 켤 수 없습니다." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "당신은 이 프로필에 구독되지 않고있습니다." @@ -6013,14 +6039,14 @@ msgstr "당신은 이 프로필에 구독되지 않고있습니다." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다." #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "다른 사람을 구독 하실 수 없습니다." @@ -6028,14 +6054,14 @@ msgstr "다른 사람을 구독 하실 수 없습니다." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "다른 사람을 구독 하실 수 없습니다." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "당신은 해당 그룹의 멤버가 아닙니다." @@ -6043,13 +6069,13 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6091,40 +6117,62 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "확인 코드가 없습니다." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "이 사이트에 로그인" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "메신저" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "인스턴트 메신저에 의한 업데이트" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "SMS에 의한 업데이트" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "연결" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "응용프로그램 삭제" @@ -6147,11 +6195,11 @@ msgstr "개인 아바타를 올릴 수 있습니다. 최대 파일 크기는 2MB msgid "Design defaults restored." msgstr "메일 설정이 저장되었습니다." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "이 게시글 좋아하기 취소" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "이 게시글을 좋아합니다." @@ -6171,7 +6219,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6608,7 +6656,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "방법" @@ -6754,55 +6802,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "북" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "남" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "동" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "서" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "위치" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "웹" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "문맥" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "재전송됨" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "답장하기" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "게시글이 등록되었습니다." @@ -6874,7 +6922,7 @@ msgid "Tags in %s's notices" msgstr "%s의 게시글의 태그" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "알려지지 않은 행동" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index ee2205dd05..d9ff54241d 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:57+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Зачувај нагодувања на пристап" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -113,7 +113,7 @@ msgstr "Нема таква страница." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Нема таков корисник." @@ -357,7 +357,7 @@ msgid "This status is already a favorite." msgstr "Овој статус веќе Ви е омилен." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Не можам да создадам омилина забелешка." @@ -473,18 +473,18 @@ msgid "Group not found." msgstr "Групата не е пронајдена." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Веќе членувате во таа група." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Блокирани сте од таа група од администраторот." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s." @@ -496,7 +496,7 @@ msgstr "Не членувате во оваа група." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не можев да го отстранам корисникот %1$s од групата %2$s." @@ -613,7 +613,7 @@ msgstr "" "пристап до Вашата %4$s сметка само на трети страни на кои им верувате." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Сметка" @@ -627,7 +627,7 @@ msgstr "Прекар" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Лозинка" @@ -657,12 +657,12 @@ msgid "No such notice." msgstr "Нема таква забелешка." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Не можете да ја повторувате сопствената забелешка." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Забелешката е веќе повторена." @@ -774,7 +774,7 @@ msgstr "Погрешна големина." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватар" @@ -807,7 +807,7 @@ msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Бриши" @@ -894,7 +894,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Блокирај го корисников" @@ -913,8 +913,8 @@ msgstr "Не можев да ги снимам инофрмациите за б #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Нема таква група." @@ -1030,7 +1030,7 @@ msgstr "Не сте сопственик на овој програм." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1095,7 +1095,7 @@ msgid "Do not delete this notice" msgstr "Не ја бриши оваа забелешка" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Бриши ја оваа забелешка" @@ -1126,7 +1126,7 @@ msgstr "Избриши овој корисник" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Изглед" @@ -1254,7 +1254,7 @@ msgstr "Врати по основно" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Зачувај" @@ -1374,7 +1374,7 @@ msgid "Could not update group." msgstr "Не можев да ја подновам групата." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Не можеше да се создадат алијаси." @@ -1430,7 +1430,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" @@ -1624,7 +1624,7 @@ msgstr "Додадена е нова влезна е-поштенска адре msgid "This notice is already a favorite!" msgstr "Оваа белешка е веќе омилена!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Тргни од омилени" @@ -1930,7 +1930,7 @@ msgstr "Назначи го корисников за администратор #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Историја на %s" @@ -2215,7 +2215,7 @@ msgstr "Веќе сте претплатени на овие корисници: #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2349,7 +2349,7 @@ msgid "You must be logged in to leave a group." msgstr "Мора да сте најавени за да можете да ја напуштите групата." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Не членувате во таа група." @@ -2576,14 +2576,14 @@ msgid "New message" msgstr "Нова порака" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Не можете да испратите порака до овојо корисник." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Нема содржина!" @@ -2592,7 +2592,7 @@ msgid "No recipient specified." msgstr "Нема назначено примач." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2605,12 +2605,12 @@ msgstr "Пораката е испратена" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Директната порака до %s е испратена." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-грешка" @@ -2749,8 +2749,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Ве молиме користете само %s URL-адреси врз прост HTTP-код." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -3106,7 +3106,7 @@ msgstr "Цело име" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Домашна страница" @@ -3506,7 +3506,7 @@ msgstr "Исто што и лозинката погоре. Задолжител #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Е-пошта" @@ -3668,7 +3668,7 @@ msgstr "Не можете да повторувате сопствена заб msgid "You already repeated that notice." msgstr "Веќе ја имате повторено таа забелешка." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Повторено" @@ -3804,13 +3804,13 @@ msgid "Name" msgstr "Име" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организација" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Опис" @@ -4602,7 +4602,7 @@ msgstr "%s не следи никого." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "СМС" @@ -4727,7 +4727,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" @@ -4924,7 +4924,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Подновувања од %1$s на %2$s!" @@ -4985,7 +4985,7 @@ msgid "Plugins" msgstr "Приклучоци" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Верзија" @@ -4993,29 +4993,25 @@ msgstr "Верзија" msgid "Author(s)" msgstr "Автор(и)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Омилено" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s ја означи забелешката %s како омилена." - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Не можам да ја обработам URL-адресата „%s“" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Робин мисли дека нешто е невозможно." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5026,7 +5022,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5034,13 +5030,13 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "ВОлку голема податотека ќе ја надмине Вашата месечна квота од %d бајти" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Погрешно податотечно име." @@ -5059,13 +5055,28 @@ msgstr "Не е дел од групата." msgid "Group leave failed." msgstr "Напуштањето на групата не успеа." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Грешка во зачувувањето на корисникот; неправилен." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Придружи се" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s се зачлени во групата %2$s." @@ -5088,17 +5099,17 @@ msgid "No database name or DSN found anywhere." msgstr "Никаде не е пронајдено име на базата или DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Забрането Ви е испраќање на директни пораки." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Не можев да ја испратам пораката." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Не можев да ја подновам пораката со нов URI." @@ -5154,25 +5165,25 @@ msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "На saveKnownGroups му е уакажан грешен тип" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5181,7 +5192,7 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5234,15 +5245,11 @@ msgstr "Не можам да го избришам OMB-жетонот за пр msgid "Could not delete subscription." msgstr "Не можам да ја избришам претплатата." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Следи" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s сега го/ја следи %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5251,57 +5258,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добредојдовте на %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Не можев да ја создадам групата." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Не можев да поставам URI на групата." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Не можев да назначам членство во групата." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Не можев да ги зачувам информациите за локалните групи." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Смени профилни нагодувања" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Подигни аватар" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Смени лозинка" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Смени ракување со е-пошта" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Наместете изглед на Вашиот профил" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Други нагодувања" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Друго" @@ -5317,184 +5324,185 @@ msgid "Untitled page" msgstr "Страница без наслов" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Главна навигација" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личен профил и хронологија на пријатели" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промена на е-пошта, аватар, лозинка, профил" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Поврзи се со услуги" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Поврзи се" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промена на поставките на мрежното место" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Админ" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете пријатели и колеги да Ви се придружат на %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Одјава" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Одјава" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создај сметка" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Регистрација" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Најава" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Најава" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Напомош!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарајте луѓе или текст" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Барај" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Напомена за мрежното место" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Локални прегледи" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Напомена за страницата" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Споредна навигација" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Помош" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "За" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ЧПП" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Услови" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Приватност" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Изворен код" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Контакт" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Значка" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Лиценца на програмот StatusNet" @@ -5502,7 +5510,7 @@ msgstr "Лиценца на програмот StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5512,7 +5520,7 @@ msgstr "" "%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е сервис за микроблогирање." @@ -5521,7 +5529,7 @@ msgstr "**%%site.name%%** е сервис за микроблогирање." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5533,20 +5541,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Лиценца на содржините на мрежното место" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содржината и податоците на %1$s се лични и доверливи." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5554,7 +5562,7 @@ msgstr "" "права задржани." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " @@ -5562,45 +5570,45 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Сите содржини и податоци на %1$s се достапни под лиценцата %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Прелом на страници" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Следно" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Претходно" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Се очекува коренски каналски елемент, но добив цел XML документ." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Сè уште не е поддржана обработката на далечинска содржина." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Сè уште не е поддржана обработката на XML содржина." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Сè уште не е достапна обработката на вметната Base64 содржина." @@ -5727,7 +5735,7 @@ msgid "Tried to revoke unknown token." msgstr "Се обидовте да отповикате непознат жетон." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Не успеав да го избришам отповиканиот жетон." @@ -5742,187 +5750,207 @@ msgid "Icon for this application" msgstr "Икона за овој програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Опишете го програмот со %d знаци" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Опишете го програмот со %d знаци" +msgstr[1] "Опишете го програмот со %d знаци" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Опишете го Вашиот програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL на страницата на програмот" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Изворна URL-адреса" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Организацијата одговорна за овој програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL на страницата на организацијата" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL за пренасочување по заверката" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Прелистувач" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Работна површина" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Тип на програм, прелистувач или работна површина" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Само читање" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Читање-пишување" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Основно-зададен пристап за овој програм: само читање, или читање-пишување" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Откажи" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "читање-пишување" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "само читање" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Одобрено %1$s - „%2$s“ пристап." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Одземи" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Прилози" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Автор" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Обезбедувач" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Забелешки кадешто се јавува овој прилог" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Ознаки за овој прилог" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Менувањето на лозинката не успеа" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Менувањето на лозинка не е дозволено" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Блокирај" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Резултати од наредбата" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-грешка" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Наредбата е завршена" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Наредбата не успеа" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Не постои забелешка со таков id." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Корисникот нема последна забелешка" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Не можев да пронајдам корисник со прекар %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Не можев да најдам локален корисник со прекар %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Жалиме, оваа наредба сè уште не е имплементирана." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Нема баш логика да се подбуцнувате сами себеси." #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Испратено подбуцнување на %s." @@ -5931,7 +5959,7 @@ msgstr "Испратено подбуцнување на %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5943,52 +5971,53 @@ msgstr "" "Забелешки: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Забелешката е обележана како омилена." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s се зачлени во групата %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s ја напушти групата %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Име и презиме: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Местоположба: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "За: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5999,32 +6028,32 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" "Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Грашка при испаќањето на директната порака." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Забелешката од %s е повторена." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Грешка при повторувањето на белешката." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6033,100 +6062,100 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Одговорот на %s е испратен." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Грешка при зачувувањето на белешката." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Назначете го името на корисникот на којшто сакате да се претплатите." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Не можете да се претплаќате на OMB профили по наредба." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Претплатено на %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Назначете го името на корисникот од кого откажувате претплата." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Откажана претплата на %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Наредбата сè уште не е имплементирана." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Известувањето е исклучено." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Не можам да исклучам известување." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Известувањето е вклучено." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Не можам да вклучам известување." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Наредбата за најава е оневозможена." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "Оваа врска може да се употреби само еднаш, и трае само 2 минути: %s" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Откажана претплата на %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Не сте претплатени никому." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Не ни го испративте тој профил." @@ -6134,14 +6163,14 @@ msgstr[1] "Не ни го испративте тој профил." #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Никој не е претплатен на Вас." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Оддалечена претплата" @@ -6149,21 +6178,21 @@ msgstr[1] "Оддалечена претплата" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Не членувате во ниедна група." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6242,39 +6271,61 @@ msgstr "" "tracks - сè уште не е имплементирано.\n" "tracking - сè уште не е имплементирано.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Нема пронајдено конфигурациска податотека. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Побарав конфигурациони податотеки на следниве места: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Препорачуваме да го пуштите инсталатерот за да го поправите ова." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Оди на инсталаторот." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Подновувања преку инстант-пораки (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Подновувања по СМС" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Сврзувања" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Овластени поврзани програми" @@ -6297,11 +6348,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Основно-зададениот изглед е вратен." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Отстрани ја белешкава од омилени" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Означи ја забелешкава како омилена" @@ -6321,7 +6372,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Канали" @@ -6859,7 +6910,7 @@ msgstr "" "впуштите во разговор со други корисници. Луѓето можат да Ви испраќаат пораки " "што ќе можете да ги видите само Вие." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "од" @@ -7014,55 +7065,55 @@ msgstr "" "Обидете се подоцна." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "С" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Ј" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "И" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "З" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "во" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "интернет" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "во контекст" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Повторено од" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Одговори на забелешкава" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Одговор" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Забелешката е повторена" @@ -7133,7 +7184,7 @@ msgid "Tags in %s's notices" msgstr "Ознаки во забелешките на %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Непознато" @@ -7515,16 +7566,21 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s не е важечка боја! Користете 3 или 6 шеснаесетни (hex) знаци." #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" -msgstr "Резервна податотека за корисникот %s (%s)\n" +msgstr "Резервна податотека за корисникот %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Нема назначено корисник. Ќе го употребам резервниот корисник.\n" +msgstr "Нема назначено корисник. Ќе го употребам резервниот корисник." #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." -msgstr "%d резервни ставки.\n" +msgstr "%d резервни ставки." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s ја означи забелешката %s како омилена." + +#~ msgid "%s is now following %s." +#~ msgstr "%s сега го/ја следи %s." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 9c920a6b89..10f0bc9758 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:59+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:22+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Lagre" @@ -111,7 +111,7 @@ msgstr "Ingen slik side." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ingen slik bruker" @@ -355,7 +355,7 @@ msgid "This status is already a favorite." msgstr "Denne statusen er allerede en favoritt." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Kunne ikke opprette favoritt." @@ -468,18 +468,18 @@ msgid "Group not found." msgstr "Gruppe ikke funnet." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du er allerede medlem av den gruppen." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Du har blitt blokkert fra den gruppen av administratoren." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." @@ -491,7 +491,7 @@ msgstr "Du er ikke et medlem av denne gruppen." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikke fjerne bruker %1$s fra gruppe %2$s." @@ -606,7 +606,7 @@ msgstr "" "$s-konto til tredjeparter du stoler på." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -620,7 +620,7 @@ msgstr "Nick" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -650,12 +650,12 @@ msgid "No such notice." msgstr "Ingen slik notis." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kan ikke gjenta din egen notis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Allerede gjentatt den notisen." @@ -765,7 +765,7 @@ msgstr "Ugyldig størrelse" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Brukerbilde" @@ -796,7 +796,7 @@ msgid "Preview" msgstr "Forhåndsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Slett" @@ -882,7 +882,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blokker denne brukeren" @@ -901,8 +901,8 @@ msgstr "Kunne ikke lagre blokkeringsinformasjon." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Ingen slik gruppe." @@ -1018,7 +1018,7 @@ msgstr "Du er ikke eieren av dette programmet." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 #, fuzzy msgid "There was a problem with your session token." msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen." @@ -1084,7 +1084,7 @@ msgid "Do not delete this notice" msgstr "Ikke slett denne notisen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1115,7 +1115,7 @@ msgstr "Slett denne brukeren" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Utseende" @@ -1242,7 +1242,7 @@ msgstr "Tilbakestill til standardverdier" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Lagre" @@ -1362,7 +1362,7 @@ msgid "Could not update group." msgstr "Kunne ikke oppdatere gruppe." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kunne ikke opprette alias." @@ -1418,7 +1418,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" @@ -1608,7 +1608,7 @@ msgstr "Ny innkommende e-postadresse lagt til." msgid "This notice is already a favorite!" msgstr "Denne notisen er allerede en favoritt." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Fjern favoritt" @@ -1910,7 +1910,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidslinje" @@ -2190,7 +2190,7 @@ msgstr "Du abonnerer allerede på disse brukerne:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2319,7 +2319,7 @@ msgid "You must be logged in to leave a group." msgstr "Du må være innlogget for å forlate en gruppe." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Du er ikke et medlem av den gruppen." @@ -2540,14 +2540,14 @@ msgid "New message" msgstr "Ny melding" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Du kan ikke sende en melding til denne brukeren." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Inget innhold." @@ -2556,7 +2556,7 @@ msgid "No recipient specified." msgstr "Ingen mottaker oppgitt." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2568,12 +2568,12 @@ msgstr "Melding sendt" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Direktemelding til %s sendt." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-feil" @@ -2711,8 +2711,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bare %s-nettadresser over vanlig HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Ikke et støttet dataformat." @@ -3064,7 +3064,7 @@ msgstr "Fullt navn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hjemmesiden" @@ -3458,7 +3458,7 @@ msgstr "Samme som passord over. Kreves." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-post" @@ -3618,7 +3618,7 @@ msgstr "Du kan ikke gjenta din egen notis." msgid "You already repeated that notice." msgstr "Du har allerede gjentatt den notisen." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Gjentatt" @@ -3752,13 +3752,13 @@ msgid "Name" msgstr "Navn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisasjon" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrivelse" @@ -4540,7 +4540,7 @@ msgstr "%s lytter ikke til noen." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4669,7 +4669,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ugyldig standardabonnement: '%1$s' er ikke bruker." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4858,7 +4858,7 @@ msgstr "Prøv å [søke etter grupper](%%action.groupsearch%%) og bli med i dem. #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar fra %1$s på %2$s!" @@ -4909,7 +4909,7 @@ msgid "Plugins" msgstr "Programtillegg" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versjon" @@ -4917,30 +4917,26 @@ msgstr "Versjon" msgid "Author(s)" msgstr "Forfatter(e)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 #, fuzzy msgid "Favor" msgstr "Favoritter" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4949,20 +4945,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ugyldig filnavn." @@ -4981,13 +4977,28 @@ msgstr "Kunne ikke oppdatere gruppe." msgid "Group leave failed." msgstr "Gruppeprofil" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Feil ved lagring av bruker; ugyldig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Bli med" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5010,18 +5021,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Feil ved sending av direktemelding." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Kunne ikke sette inn melding." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Kunne ikke oppdatere melding med ny nettadresse." @@ -5074,32 +5085,32 @@ msgid "Problem saving notice." msgstr "Problem ved lagring av notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem ved lagring av gruppeinnboks." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5153,13 +5164,9 @@ msgstr "Kunne ikke slette favoritt." msgid "Could not delete subscription." msgstr "Kunne ikke slette favoritt." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5170,57 +5177,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Velkommen til %1$s, @%2$s." #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kunne ikke opprette gruppe." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Kunne ikke stille inn gruppe-URI." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Kunne ikke stille inn gruppemedlemskap." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Kunne ikke lagre lokal gruppeinformasjon." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Endre profilinnstillingene dine" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Last opp en avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Endre passordet ditt" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Endre eposthåndtering" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Brukerprofil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Andre valg" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Andre" @@ -5236,187 +5243,188 @@ msgid "Untitled page" msgstr "Side uten tittel" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "Endre nettstedskonfigurasjon" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personlig" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endre e-posten, avateren, passordet og profilen din" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Koble til tjenester" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Koble til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Endre nettstedskonfigurasjon" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter venner og kollegaer til å bli med deg på %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg ut fra nettstedet" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett en konto" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrer" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Log inn på nettstedet" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp meg." -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter personer eller tekst" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Nettstedsnotis" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokale visninger" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sidenotis" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hjelp" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Om" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "OSS/FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 #, fuzzy msgid "Privacy" msgstr "Privat" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Kilde" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Knuff" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Programvarelisens for StatusNet" @@ -5424,7 +5432,7 @@ msgstr "Programvarelisens for StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5434,7 +5442,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er en mikrobloggingtjeneste." @@ -5443,7 +5451,7 @@ msgstr "**%%site.name%%** er en mikrobloggingtjeneste." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5452,72 +5460,72 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "Programvarelisens for StatusNet" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "Registrering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Etter" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Før" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5648,7 +5656,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5663,191 +5671,211 @@ msgid "Icon for this application" msgstr "Ikon for dette programmet" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Beskriv programmet ditt med %d tegn" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beskriv programmet ditt med %d tegn" +msgstr[1] "Beskriv programmet ditt med %d tegn" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beskriv programmet ditt" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "Nettadresse til hjemmesiden for dette programmet" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Nettadresse til kilde" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "Ikon for dette programmet" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL til organisasjonens hjemmeside" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Nettleser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Skrivebord" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Type program, nettleser eller skrivebord" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Skrivebeskyttet" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Les og skriv" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardtilgang for dette programmet: skrivebeskyttet eller lese- og " "skrivetilgang" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "les og skriv" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "skrivebeskyttet" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Tilbakekall" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Vedlegg" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Forfatter" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Leverandør" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notiser hvor dette vedlegget forekommer" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "Ingen slike vedlegg." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Endring av passord mislyktes" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Endring av passord er ikke tillatt" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkér" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Kommandoresultat" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-feil" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Kommando fullført" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Kommando feilet" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Brukeren har ingen profil." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Beklager, denne kommandoen er ikke implementert ennå." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Det gir ikke så mye mening å knuffe seg selv." #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5856,7 +5884,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5868,52 +5896,53 @@ msgstr "" "Notiser: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Notis markert som favoritt." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullt navn: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Posisjon: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Hjemmeside: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Om: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5922,128 +5951,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Melding for lang - maks er %1$d tegn, du sendte %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Feil ved sending av direktemelding." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Nytt nick" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Feil ved repetering av notis." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Svar til %s" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Feil ved lagring av notis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "Beklager, denne kommandoen er ikke implementert ennå." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "Ingen bekreftelseskode." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "Ingen bekreftelseskode." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 #, fuzzy msgid "Can't turn on notification." msgstr "Kan ikke gjenta din egen notis." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Ikke autorisert." @@ -6051,7 +6080,7 @@ msgstr "Ikke autorisert." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ikke autorisert." @@ -6059,7 +6088,7 @@ msgstr[1] "Ikke autorisert." #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Svar til %s" @@ -6067,7 +6096,7 @@ msgstr "Svar til %s" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Svar til %s" @@ -6075,21 +6104,21 @@ msgstr[1] "Svar til %s" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Du er ikke et medlem av den gruppen." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du er allerede logget inn!" msgstr[1] "Du er allerede logget inn!" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6131,40 +6160,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ingen konfigurasjonsfil funnet. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Jeg så etter konfigurasjonfiler på følgende seter: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Log inn på nettstedet" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Oppdatert med SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Tilkoblinger" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "Tilkoblede program" @@ -6188,12 +6238,12 @@ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." msgid "Design defaults restored." msgstr "Utseende lagret." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor this notice" msgstr "Slett denne notisen" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 #, fuzzy msgid "Favor this notice" msgstr "Repeter denne notisen" @@ -6214,7 +6264,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Venn av en venn" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6748,7 +6798,7 @@ msgstr "" "engasjere andre brukere i en samtale. Personer kan sende deg meldinger som " "bare du kan se." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "fra" @@ -6897,56 +6947,56 @@ msgstr "" "igjen senere" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "Ø" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "V" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "på" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Inget innhold." -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetert av" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Notis repetert" @@ -7018,7 +7068,7 @@ msgid "Tags in %s's notices" msgstr "Bruker har ingen siste notis" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Ukjent" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index f0abf6e735..f0d5df52ff 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:58+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -113,7 +113,7 @@ msgstr "Deze pagina bestaat niet." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Onbekende gebruiker." @@ -360,7 +360,7 @@ msgid "This status is already a favorite." msgstr "Deze mededeling staat al in uw favorietenlijst." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Het was niet mogelijk een favoriet aan te maken." @@ -480,18 +480,18 @@ msgid "Group not found." msgstr "De groep is niet aangetroffen." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "U bent al lid van die groep." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Een beheerder heeft ingesteld dat u geen lid mag worden van die groep." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." @@ -503,7 +503,7 @@ msgstr "U bent geen lid van deze groep." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: 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." @@ -626,7 +626,7 @@ msgstr "" "toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Gebruiker" @@ -640,7 +640,7 @@ msgstr "Gebruikersnaam" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Wachtwoord" @@ -670,12 +670,12 @@ msgid "No such notice." msgstr "De mededeling bestaat niet." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "U kunt uw eigen mededeling niet herhalen." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "U hebt die mededeling al herhaald." @@ -787,7 +787,7 @@ msgstr "Ongeldige afmetingen." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -819,7 +819,7 @@ msgid "Preview" msgstr "Voorvertoning" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Verwijderen" @@ -906,7 +906,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Deze gebruiker blokkeren" @@ -925,8 +925,8 @@ msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "De opgegeven groep bestaat niet." @@ -1042,7 +1042,7 @@ msgstr "U bent niet de eigenaar van deze applicatie." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1107,7 +1107,7 @@ msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -1139,13 +1139,13 @@ msgstr "Gebruiker verwijderen" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Uiterlijk" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Instellingen voor de vormgeving van deze StatusNet-website" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1267,7 +1267,7 @@ msgstr "Standaardinstellingen toepassen" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Opslaan" @@ -1387,7 +1387,7 @@ msgid "Could not update group." msgstr "Het was niet mogelijk de groep bij te werken." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." @@ -1443,7 +1443,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" @@ -1636,7 +1636,7 @@ msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." msgid "This notice is already a favorite!" msgstr "Deze mededeling staat al in uw favorietenlijst." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Van favotietenlijst verwijderen" @@ -1947,7 +1947,7 @@ msgstr "Deze gebruiker beheerder maken" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tijdlijn" @@ -2233,7 +2233,7 @@ msgstr "U bent al geabonneerd op deze gebruikers:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2369,7 +2369,7 @@ msgid "You must be logged in to leave a group." msgstr "U moet aangemeld zijn om een groep te kunnen verlaten." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "U bent geen lid van deze groep" @@ -2594,14 +2594,14 @@ msgid "New message" msgstr "Nieuw bericht" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "U kunt geen bericht naar deze gebruiker zenden." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Geen inhoud!" @@ -2610,7 +2610,7 @@ msgid "No recipient specified." msgstr "Er is geen ontvanger aangegeven." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." @@ -2621,12 +2621,12 @@ msgstr "Bericht verzonden." #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Het directe bericht aan %s is verzonden." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Er is een Ajax-fout opgetreden" @@ -2724,6 +2724,7 @@ msgstr "Verbonden applicaties" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" +"U hebt de volgende applicaties toegang gegeven tot uw gebruikersgegevens." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2769,8 +2770,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Alleen URL's voor %s via normale HTTP alstublieft." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -2916,7 +2917,7 @@ msgstr "Paden" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Pad- en serverinstellingen voor de StatusNet-website" #: actions/pathsadminpanel.php:157 #, php-format @@ -3124,7 +3125,7 @@ msgstr "Volledige naam" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Thuispagina" @@ -3527,7 +3528,7 @@ msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3688,7 +3689,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen." msgid "You already repeated that notice." msgstr "U hent die mededeling al herhaald." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Herhaald" @@ -3782,7 +3783,7 @@ msgstr "Sessies" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Sessieinstellingen voor deze StatusNet-website" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3824,13 +3825,13 @@ msgid "Name" msgstr "Naam" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisatie" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beschrijving" @@ -3862,7 +3863,7 @@ msgstr "Gebruikerssleutel" #: actions/showapplication.php:268 msgid "Consumer secret" -msgstr "Gebruikerswachtwoord" +msgstr "Gebruikersgeheim" #: actions/showapplication.php:273 msgid "Request token URL" @@ -4629,7 +4630,7 @@ msgstr "%s volgt niemand." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4740,7 +4741,7 @@ msgstr "Gebruiker" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Gebruikersinstellingen voor deze StatusNet-website" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4756,7 +4757,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" @@ -4953,7 +4954,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates van %1$s op %2$s." @@ -5014,7 +5015,7 @@ msgid "Plugins" msgstr "Plug-ins" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versie" @@ -5022,29 +5023,25 @@ msgstr "Versie" msgid "Author(s)" msgstr "Auteur(s)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Aan favorieten toevoegen" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Het was niet mogelijk de URL \"%s\" te verwerken." #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin denkt dat iets onmogelijk is." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5055,7 +5052,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5063,14 +5060,14 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Een bestand van deze grootte overschijdt uw maandelijkse quota van %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ongeldige bestandsnaam." @@ -5089,16 +5086,31 @@ msgstr "Geen lid van groep." msgid "Group leave failed." msgstr "Groepslidmaatschap opzeggen is mislukt." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Fout bij opslaan gebruiker; ongeldig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Toetreden" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s is lid geworden van de groep %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5118,17 +5130,17 @@ msgid "No database name or DSN found anywhere." msgstr "Geen databasenaam of DSN gevonden." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "U mag geen directe berichten verzenden." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Het was niet mogelijk het bericht in te voegen." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." @@ -5189,12 +5201,12 @@ msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Het gegevenstype dat is opgegeven aan saveKnownGroups is onjuist" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " @@ -5202,14 +5214,14 @@ msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5218,7 +5230,7 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5271,15 +5283,11 @@ msgstr "" msgid "Could not delete subscription." msgstr "Kon abonnement niet verwijderen." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Volgen" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s volgt nu $s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5288,57 +5296,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Het was niet mogelijk de groep aan te maken." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Het was niet mogelijk de groeps-URI in te stellen." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Uw profielgegevens wijzigen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Avatar uploaden" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Uw wachtwoord wijzigen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "E-mailafhandeling wijzigen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Uw profiel ontwerpen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Overige instellingen" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Overige" @@ -5354,184 +5362,185 @@ msgid "Untitled page" msgstr "Naamloze pagina" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Primaire sitenavigatie" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persoonlijk profiel en tijdlijn van vrienden" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Persoonlijk" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Met andere diensten koppelen" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Koppelen" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Websiteinstellingen wijzigen" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Beheer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Uitnodigingen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Gebruiker afmelden" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Afmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Gebruiker aanmaken" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registreren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Gebruiker aanmelden" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Naar gebruikers of tekst zoeken" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Zoeken" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Mededeling van de website" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokale weergaven" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Mededeling van de pagina" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Secundaire sitenavigatie" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Help" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Over" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Veel gestelde vragen" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Gebruiksvoorwaarden" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacy" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Broncode" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contact" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Widget" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licentie van de StatusNet-software" @@ -5539,7 +5548,7 @@ msgstr "Licentie van de StatusNet-software" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5549,7 +5558,7 @@ msgstr "" "broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is een microblogdienst." @@ -5558,7 +5567,7 @@ msgstr "**%%site.name%%** is een microblogdienst." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5570,20 +5579,20 @@ msgstr "" "www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licentie voor siteinhoud" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5591,7 +5600,7 @@ msgstr "" "voorbehouden." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " @@ -5599,46 +5608,46 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Alle inhoud en gegevens van %1$s zijn beschikbaar onder de licentie %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Later" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Eerder" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Verwachtte een root-feed element maar kreeg een heel XML-document." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Het is nog niet mogelijk inhoud uit andere omgevingen te verwerken." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Het is nog niet mogelijk ingebedde XML-inhoud te verwerken" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Het is nog niet mogelijk ingebedde Base64-inhoud te verwerken" @@ -5765,7 +5774,7 @@ msgid "Tried to revoke unknown token." msgstr "Er is geprobeerd een onbekend token in te trekken." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Het was niet mogelijk een ingetrokken token te verwijderen." @@ -5780,187 +5789,207 @@ msgid "Icon for this application" msgstr "Icoon voor deze applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Beschrijf uw applicatie in %d tekens" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beschrijf uw applicatie in %d tekens" +msgstr[1] "Beschrijf uw applicatie in %d tekens" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beschrijf uw applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "De URL van de homepage van deze applicatie" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Bron-URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisatie verantwoordelijk voor deze applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "De URL van de homepage van de organisatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL om naar door te verwijzen na authenticatie" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Type applicatie; browser of desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Alleen-lezen" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lezen en schrijven" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Annuleren" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lezen en schrijven" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "alleen-lezen" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Goedgekeurd op %1$s met toegang \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Intrekken" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Bijlagen" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Auteur" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Provider" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Mededelingen die deze bijlage bevatten" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Labels voor deze bijlage" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Wachtwoord wijzigen is mislukt" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Wachtwoord wijzigen is niet toegestaan" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkeren" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Commandoresultaten" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Er is een Ajax-fout opgetreden" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Het commando is uitgevoerd" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Het uitvoeren van het commando is mislukt" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Er bestaat geen mededeling met dat ID." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Deze gebruiker heeft geen laatste mededeling." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "De gebruiker %s is niet aangetroffen." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "De lokale gebruiker %s is niet aangetroffen." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Dit commando is nog niet geïmplementeerd." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Het heeft niet zoveel zin om uzelf te porren..." #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "De por naar %s is verzonden." @@ -5969,7 +5998,7 @@ msgstr "De por naar %s is verzonden." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5981,52 +6010,53 @@ msgstr "" "Mededelingen: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "De mededeling is op de favorietenlijst geplaatst." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s is lid geworden van de groep %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s heeft de groep %2$s verlaten." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Volledige naam: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Locatie: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Thuispagina: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Over: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6037,7 +6067,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6045,25 +6075,25 @@ msgstr "" "bericht was %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Er is een fout opgetreden bij het verzonden van het directe bericht." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "De mededeling van %s is herhaald." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Er is een fout opgetreden bij het herhalen van de mededeling." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6072,81 +6102,81 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Het antwoord aan %s is verzonden." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Geef de naam op van de gebruiker waarop u zich wilt abonneren." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Abonneren op OMB-profielen op commando is niet mogelijk." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Geabonneerd op %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" "Geef de naam op van de gebruiker waarop u het abonnement wilt opzeggen." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Uw abonnement op %s is opgezegd." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Dit commando is nog niet geïmplementeerd." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificaties uitgeschakeld." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Het is niet mogelijk de mededelingen uit te schakelen." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificaties ingeschakeld." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Het is niet mogelijk de notificatie uit te schakelen." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Het aanmeldcommando is uitgeschakeld." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6155,20 +6185,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Het abonnement van %s is opgeheven." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "U bent op geen enkele gebruiker geabonneerd." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "U bent geabonneerd op deze gebruiker:" @@ -6176,14 +6206,14 @@ msgstr[1] "U bent geabonneerd op deze gebruikers:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Niemand heeft een abonnenment op u." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Deze gebruiker is op u geabonneerd:" @@ -6191,21 +6221,21 @@ msgstr[1] "Deze gebruikers zijn op u geabonneerd:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "U bent lid van geen enkele groep." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "U bent lid van deze groep:" msgstr[1] "U bent lid van deze groepen:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6287,40 +6317,62 @@ msgstr "" "tracks - nog niet beschikbaar\n" "tracking - nog niet beschikbaar\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Er is geen instellingenbestand aangetroffen. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" "U kunt proberen de installer uit te voeren om dit probleem op te lossen." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Naar het installatieprogramma gaan." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Updates via instant messenger (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Updates via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Verbindingen" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Geautoriseerde verbonden applicaties" @@ -6343,11 +6395,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Het standaardontwerp is weer ingesteld." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Uit de favorietenlijst verwijderen" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Op de favorietenlijst plaatsen" @@ -6367,7 +6419,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Vrienden van vrienden (FOAF)" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -6904,7 +6956,7 @@ msgstr "" "U hebt geen privéberichten. U kunt privéberichten verzenden aan andere " "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "van" @@ -7059,55 +7111,55 @@ msgstr "" "nog eens" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Z" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "O" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "op" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in context" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Herhaald door" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Op deze mededeling antwoorden" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Antwoorden" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Mededeling herhaald" @@ -7178,7 +7230,7 @@ msgid "Tags in %s's notices" msgstr "Labels in de mededelingen van %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Onbekend" @@ -7566,16 +7618,21 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s is geen geldige kleur. Gebruik drie of zes hexadecimale tekens." #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" msgstr "Back-upbestand voor gebruiker %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt." #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." msgstr "%d regels in de back-up." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s heeft de mededeling %s als favoriet gemarkeerd." + +#~ msgid "%s is now following %s." +#~ msgstr "%s volgt nu $s." diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 53bcb443db..28da648ee1 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:59+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:21+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -87,7 +87,7 @@ msgstr "Avatar-innstillingar" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -120,7 +120,7 @@ msgstr "Dette emneord finst ikkje." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Brukaren finst ikkje." @@ -360,7 +360,7 @@ msgid "This status is already a favorite." msgstr "Denne notisen er alt ein favoritt!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Kunne ikkje lagre favoritt." @@ -476,19 +476,19 @@ msgid "Group not found." msgstr "Finst ikkje." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "Du er allereie medlem av den gruppa" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikkje bli med i gruppa." @@ -501,7 +501,7 @@ msgstr "Du er ikkje medlem av den gruppa." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikkje laga gruppa." @@ -618,7 +618,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -632,7 +632,7 @@ msgstr "Kallenamn" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -663,13 +663,13 @@ msgid "No such notice." msgstr "Denne notisen finst ikkje." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Kan ikkje slå på notifikasjon." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Kan ikkje sletta notisen." @@ -781,7 +781,7 @@ msgstr "Ugyldig storleik." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Brukarbilete" @@ -812,7 +812,7 @@ msgid "Preview" msgstr "Forhandsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Slett" @@ -899,7 +899,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -918,8 +918,8 @@ msgstr "Lagring av informasjon feila." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Denne gruppa finst ikkje." @@ -1039,7 +1039,7 @@ msgstr "Du er ikkje medlem av den gruppa." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -1106,7 +1106,7 @@ msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1139,7 +1139,7 @@ msgstr "Slett denne notisen" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "" @@ -1273,7 +1273,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Lagra" @@ -1404,7 +1404,7 @@ msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." @@ -1462,7 +1462,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1658,7 +1658,7 @@ msgstr "La til ny innkomande epostadresse." msgid "This notice is already a favorite!" msgstr "Denne notisen er alt ein favoritt!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Fjern favoritt" @@ -1969,7 +1969,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidsline" @@ -2242,7 +2242,7 @@ msgstr "Du tingar allereie oppdatering frå desse brukarane:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2373,7 +2373,7 @@ msgid "You must be logged in to leave a group." msgstr "Du må være innlogga for å melde deg ut av ei gruppe." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Du er ikkje medlem av den gruppa." @@ -2603,14 +2603,14 @@ msgid "New message" msgstr "Ny melding" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Du kan ikkje sende melding til denne brukaren." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Ingen innhald." @@ -2619,7 +2619,7 @@ msgid "No recipient specified." msgstr "Ingen mottakar spesifisert." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2633,12 +2633,12 @@ msgstr "Melding" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Direkte melding til %s sendt" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax feil" @@ -2774,8 +2774,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -3141,7 +3141,7 @@ msgstr "Fullt namn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimeside" @@ -3533,7 +3533,7 @@ msgstr "Samme som passord over. Påkrevd." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Epost" @@ -3698,7 +3698,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." msgid "You already repeated that notice." msgstr "Du har allereie blokkert denne brukaren." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Framheva" @@ -3836,14 +3836,14 @@ msgid "Name" msgstr "Kallenamn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Paginering" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beskriving" @@ -4607,7 +4607,7 @@ msgstr "%1$s høyrer no på notisane dine på %2$s." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4735,7 +4735,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4939,7 +4939,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -4988,7 +4988,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 #, fuzzy msgid "Version" msgstr "Personleg" @@ -4997,29 +4997,25 @@ msgstr "Personleg" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Tjeneste" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5028,20 +5024,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ugyldig filnamn." @@ -5063,13 +5059,28 @@ msgstr "Kann ikkje oppdatera gruppa." msgid "Group leave failed." msgstr "Gruppe profil" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Feil ved lagring av brukar; fungerer ikkje." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Bli med" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5093,18 +5104,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Ein feil oppstod ved sending av direkte melding." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Kunne ikkje lagre melding." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Kunne ikkje oppdatere melding med ny URI." @@ -5160,33 +5171,33 @@ msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5240,13 +5251,9 @@ msgstr "Kunne ikkje lagra abonnement." msgid "Could not delete subscription." msgstr "Kunne ikkje lagra abonnement." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5257,59 +5264,59 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s på %2$s" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kunne ikkje laga gruppa." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Kunne ikkje laga gruppa." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Kunne ikkje lagra abonnement." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Endra profilinnstillingane dine" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Last opp ein avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Endra passordet ditt" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Endra eposthandtering" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Brukarprofil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Andre val" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Anna" @@ -5325,44 +5332,44 @@ msgid "Untitled page" msgstr "Ingen tittel" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personleg" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endra passordet ditt" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Klarte ikkje å omdirigera til tenaren: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Kopla til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" @@ -5370,83 +5377,83 @@ msgstr "Navigasjon for hovudsida" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til å bli med deg på %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitér" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg inn " #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Logo" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett ei ny gruppe" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrér" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logg inn " -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5454,67 +5461,68 @@ msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Statusmelding" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokale syningar" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sidenotis" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hjelp" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Om" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "OSS" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Personvern" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Kjeldekode" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Dult" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" @@ -5522,7 +5530,7 @@ msgstr "StatusNets programvarelisens" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5532,7 +5540,7 @@ msgstr "" "broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er ei mikrobloggingteneste." @@ -5541,7 +5549,7 @@ msgstr "**%%site.name%%** er ei mikrobloggingteneste." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5553,71 +5561,71 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "StatusNets programvarelisens" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "« Etter" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Før »" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5757,7 +5765,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5772,193 +5780,211 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Beskriv gruppa eller emnet med 140 teikn" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beskriv gruppa eller emnet med 140 teikn" +msgstr[1] "Beskriv gruppa eller emnet med 140 teikn" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beskriving" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Kjeldekode" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Gjenopprett" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Forhandsvis" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Endra passord" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Endra passord" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkér" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultat frå kommandoen" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax feil" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Kommandoen utførd" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Kommandoen feila" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Fann ingen profil med den IDen." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Brukaren har ikkje siste notis" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Orsak, men kommandoen er ikkje laga enno." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Dytta!" @@ -5967,7 +5993,7 @@ msgstr "Dytta!" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5976,52 +6002,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Notis markert som favoritt." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullt namn: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Stad: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Heimeside: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Om: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6030,128 +6057,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Ein feil oppstod ved sending av direkte melding." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Melding lagra" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Feil ved å setja brukar." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Svar på denne notisen" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Eit problem oppstod ved lagring av notis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Spesifer namnet til brukaren du vil tinge" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Du tingar ikkje oppdateringar til den profilen." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Spesifer namnet til brukar du vil fjerne tinging på" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Kommando ikkje implementert." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notifikasjon av." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Kan ikkje skru av notifikasjon." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notifikasjon på." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Kan ikkje slå på notifikasjon." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Du tingar ikkje oppdateringar til den profilen." @@ -6159,7 +6186,7 @@ msgstr "Du tingar ikkje oppdateringar til den profilen." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:" @@ -6167,7 +6194,7 @@ msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Kan ikkje tinga andre til deg." @@ -6175,7 +6202,7 @@ msgstr "Kan ikkje tinga andre til deg." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Kan ikkje tinga andre til deg." @@ -6183,7 +6210,7 @@ msgstr[1] "Kan ikkje tinga andre til deg." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Du er ikkje medlem av den gruppa." @@ -6191,14 +6218,14 @@ msgstr "Du er ikkje medlem av den gruppa." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du er ikkje medlem av den gruppa." msgstr[1] "Du er ikkje medlem av den gruppa." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6240,42 +6267,63 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Ingen stadfestingskode." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Logg inn or sida" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Ljonmelding" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Oppdateringar over direktemeldingar (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Oppdateringar over SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kopla til" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6296,11 +6344,11 @@ msgstr "Du kan lasta opp ein logo for gruppa." msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Fjern favoriseringsmerket" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Favoriser denne notisen" @@ -6320,7 +6368,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6766,7 +6814,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 #, fuzzy msgid "from" msgstr " frå " @@ -6915,58 +6963,58 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "Nei" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Ingen innhald." -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Lag" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Melding lagra" @@ -7038,7 +7086,7 @@ msgid "Tags in %s's notices" msgstr "Merkelappar i %s sine notisar" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "Uventa handling." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 8427a7aa9a..371550e090 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:00+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:22+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Zapisz ustawienia dostępu" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" @@ -115,7 +115,7 @@ msgstr "Nie ma takiej strony." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Brak takiego użytkownika." @@ -360,7 +360,7 @@ msgid "This status is already a favorite." msgstr "Ten stan jest już ulubiony." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Nie można utworzyć ulubionego wpisu." @@ -475,18 +475,18 @@ msgid "Group not found." msgstr "Nie odnaleziono grupy." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Jesteś już członkiem tej grupy." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Zostałeś zablokowany w tej grupie przez administratora." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." @@ -498,7 +498,7 @@ msgstr "Nie jesteś członkiem tej grupy." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nie można usunąć użytkownika %1$s z grupy %2$s." @@ -614,7 +614,7 @@ msgstr "" "$s powinien być udostępniany tylko zaufanym osobom trzecim." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -628,7 +628,7 @@ msgstr "Pseudonim" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hasło" @@ -658,12 +658,12 @@ msgid "No such notice." msgstr "Nie ma takiego wpisu." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nie można powtórzyć własnego wpisu." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Już powtórzono ten wpis." @@ -773,7 +773,7 @@ msgstr "Nieprawidłowy rozmiar." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Awatar" @@ -804,7 +804,7 @@ msgid "Preview" msgstr "Podgląd" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Usuń" @@ -890,7 +890,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Zablokuj tego użytkownika" @@ -909,8 +909,8 @@ msgstr "Zapisanie informacji o blokadzie nie powiodło się." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Nie ma takiej grupy." @@ -1026,7 +1026,7 @@ msgstr "Nie jesteś właścicielem tej aplikacji." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1090,7 +1090,7 @@ msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -1121,13 +1121,13 @@ msgstr "Usuń tego użytkownika" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Wygląd" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Ustawienia wyglądu tej witryny StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1247,7 +1247,7 @@ msgstr "Przywróć domyślne ustawienia" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Zapisz" @@ -1367,7 +1367,7 @@ msgid "Could not update group." msgstr "Nie można zaktualizować grupy." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." @@ -1424,7 +1424,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Anuluj" @@ -1615,7 +1615,7 @@ msgstr "Dodano nowy przychodzący adres e-mail." msgid "This notice is already a favorite!" msgstr "Ten wpis jest już ulubiony." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Usuń wpis z ulubionych" @@ -1893,7 +1893,7 @@ msgstr "Zablokuj" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Zablokuj tego użytkownika" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1915,7 +1915,7 @@ msgstr "Nadaje temu użytkownikowi uprawnienia administratora" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Oś czasu użytkownika %s" @@ -2198,7 +2198,7 @@ msgstr "Jesteś już subskrybowany do tych użytkowników:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2332,7 +2332,7 @@ msgid "You must be logged in to leave a group." msgstr "Musisz być zalogowany, aby opuścić grupę." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Nie jesteś członkiem tej grupy." @@ -2345,45 +2345,47 @@ msgstr "Użytkownik %1$s opuścił grupę %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licencja" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Licencja dla tej witryny StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Nieprawidłowy wybór licencji." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Należy podać właściciela treści podczas używania licencji \"Wszystkie prawa " +"zastrzeżone\"." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Nieprawidłowy tytuł licencji. Maksymalna długość to 255 znaków." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Nieprawidłowy adres URL licencji." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Nieprawidłowy adres URL obrazu licencji." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Adres URL licencji musi być pusty lub być prawidłowym adresem URL." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Obraz licencji musi być pusty lub być prawidłowym adresem URL." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Wybór licencji" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2391,59 +2393,59 @@ msgstr "Prywatna" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Wszystkie prawa zastrzeżone" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Typ" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Wybierz licencję" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Szczegóły licencji" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Właściciel" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nazwa właściciela treści witryny (jeśli dotyczy)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Tytuł licencji" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Tytuł licencji." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "Adres URL licencji" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "Adres URL dodatkowych informacji o licencji." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "Adres URL obrazu licencji" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "Adres URL obrazu do wyświetlenia z licencją." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Zapisz ustawienia licencji" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2555,14 +2557,14 @@ msgid "New message" msgstr "Nowa wiadomość" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Nie można wysłać wiadomości do tego użytkownika." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Brak treści." @@ -2571,7 +2573,7 @@ msgid "No recipient specified." msgstr "Nie podano odbiorcy." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu." @@ -2582,12 +2584,12 @@ msgstr "Wysłano wiadomość" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Błąd AJAX" @@ -2684,7 +2686,7 @@ msgstr "Połączone aplikacje" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Zezwolono następującym aplikacjom na dostęp do konta." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2725,8 +2727,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." @@ -2872,7 +2874,7 @@ msgstr "Ścieżki" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Ustawienia ścieżki i serwera dla tej witryny StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3080,7 +3082,7 @@ msgstr "Imię i nazwisko" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Strona domowa" @@ -3476,7 +3478,7 @@ msgstr "Takie samo jak powyższe hasło. Wymagane." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3635,7 +3637,7 @@ msgstr "Nie można powtórzyć własnego wpisu." msgid "You already repeated that notice." msgstr "Już powtórzono ten wpis." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Powtórzono" @@ -3729,7 +3731,7 @@ msgstr "Sesje" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Ustawienia sesji tej witryny StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3771,13 +3773,13 @@ msgid "Name" msgstr "Nazwa" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizacja" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Opis" @@ -4567,7 +4569,7 @@ msgstr "Użytkownik %s nie obserwuje nikogo." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4677,7 +4679,7 @@ msgstr "Użytkownik" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Ustawienia użytkownika dla tej witryny StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4693,7 +4695,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4740,7 +4742,7 @@ msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Zapisz ustawienia użytkownika" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4885,7 +4887,7 @@ msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualizacje z %1$s na %2$s." @@ -4948,7 +4950,7 @@ msgid "Plugins" msgstr "Wtyczki" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Wersja" @@ -4956,29 +4958,25 @@ msgstr "Wersja" msgid "Author(s)" msgstr "Autorzy" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Dodaj do ulubionych" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Nie można przetworzyć adresu URL \"%s\"" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin sądzi, że coś jest niemożliwe." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4989,7 +4987,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -4997,7 +4995,7 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" @@ -5005,7 +5003,7 @@ msgstr "" "d bajty." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nieprawidłowa nazwa pliku." @@ -5024,16 +5022,31 @@ msgstr "Nie jest częścią grupy." msgid "Group leave failed." msgstr "Opuszczenie grupy nie powiodło się." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Dołącz" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "Użytkownik %1$s dołączył do grupy %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5053,17 +5066,17 @@ msgid "No database name or DSN found anywhere." msgstr "Nigdzie nie odnaleziono nazwy lub DSN bazy danych." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Zablokowano wysyłanie bezpośrednich wiadomości." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Nie można wprowadzić wiadomości." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." @@ -5119,32 +5132,32 @@ msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Podano błędne dane do saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Nie można unieważnić roli \"\"%1$s\" użytkownika #%2$d; nie istnieje." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5195,14 +5208,10 @@ msgstr "Nie można usunąć tokenu subskrypcji OMB." msgid "Could not delete subscription." msgstr "Nie można usunąć subskrypcji." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "" +msgid "Follow" +msgstr "Obserwuj" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5212,57 +5221,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s." #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Nie można utworzyć grupy." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Nie można ustawić adresu URI grupy." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Nie można ustawić członkostwa w grupie." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Nie można zapisać informacji o lokalnej grupie." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Zmień ustawienia profilu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Wyślij awatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Zmień hasło" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Zmień obsługę adresu e-mail" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Wygląd profilu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Inne opcje" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Inne" @@ -5278,184 +5287,185 @@ msgid "Untitled page" msgstr "Strona bez nazwy" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Główna nawigacja witryny" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Osobiste" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Połącz z serwisami" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Połącz" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Zmień konfigurację witryny" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Zaproś" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Wyloguj się z witryny" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Utwórz konto" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Zarejestruj się" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Zaloguj się na witrynie" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Zaloguj się" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomóż mi." -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Wyszukaj osoby lub tekst" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Wpis witryny" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokalne widoki" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Wpis strony" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Druga nawigacja witryny" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Pomoc" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "O usłudze" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Prywatność" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Kod źródłowy" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Odznaka" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" @@ -5463,7 +5473,7 @@ msgstr "Licencja oprogramowania StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5473,7 +5483,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** jest usługą mikroblogowania." @@ -5482,7 +5492,7 @@ msgstr "**%%site.name%%** jest usługą mikroblogowania." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5494,20 +5504,20 @@ msgstr "" "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licencja zawartości witryny" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Treść i dane %1$s są prywatne i poufne." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5515,7 +5525,7 @@ msgstr "" "zastrzeżone." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie " @@ -5523,7 +5533,7 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5531,39 +5541,39 @@ msgstr "" "$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginacja" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Później" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Wcześniej" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Oczekiwano elementu kanału roota, ale otrzymano cały dokument XML." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Nie można jeszcze obsługiwać zdalnej treści." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści XML." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści Base64." @@ -5654,7 +5664,7 @@ msgstr "Konfiguracja migawek" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Ustaw licencję witryny" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5690,7 +5700,7 @@ msgid "Tried to revoke unknown token." msgstr "Spróbowano unieważnić nieznany token." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Usunięcie unieważnionego tokenu nie powiodło się." @@ -5705,187 +5715,208 @@ msgid "Icon for this application" msgstr "Ikona tej aplikacji" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Opisz aplikację w %d znakach" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Opisz aplikację w %d znakach" +msgstr[1] "Opisz aplikację w %d znakach" +msgstr[2] "Opisz aplikację w %d znakach" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Opisz aplikację" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "Adres URL strony domowej tej aplikacji" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Źródłowy adres URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizacja odpowiedzialna za tę aplikację" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "Adres URL strony domowej organizacji" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "Adres URL do przekierowania po uwierzytelnieniu" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Przeglądarka" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Pulpit" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typ aplikacji, przeglądarka lub pulpit" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Tylko do odczytu" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Odczyt i zapis" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Anuluj" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "odczyt i zapis" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "tylko do odczytu" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Zaakceptowano %1$s - dostęp \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Unieważnij" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Załączniki" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Dostawca" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Powiadamia, kiedy pojawia się ten załącznik" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Znaczniki dla tego załącznika" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Zmiana hasła nie powiodła się" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Zmiana hasła nie jest dozwolona" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Zablokuj" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Wyniki polecenia" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Błąd AJAX" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Zakończono polecenie" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Polecenie nie powiodło się" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Wpis z tym identyfikatorem nie istnieje." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Użytkownik nie posiada ostatniego wpisu." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Nie można odnaleźć użytkownika z pseudonimem %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Nie można odnaleźć lokalnego użytkownika o pseudonimie %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Te polecenie nie zostało jeszcze zaimplementowane." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Szturchanie samego siebie nie ma zbyt wiele sensu." #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Wysłano szturchnięcie do użytkownika %s." @@ -5894,7 +5925,7 @@ msgstr "Wysłano szturchnięcie do użytkownika %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5906,52 +5937,53 @@ msgstr "" "Wpisy: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Zaznaczono wpis jako ulubiony." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "Użytkownik %1$s dołączył do grupy %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "Użytkownik %1$s opuścił grupę %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Imię i nazwisko: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Położenie: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Strona domowa: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "O mnie: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5962,111 +5994,111 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Powtórzono wpis od użytkownika %s." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Błąd podczas powtarzania wpisu." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Wpis jest za długi - maksymalnie %1$d znaków, wysłano %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Wysłano odpowiedź do %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Błąd podczas zapisywania wpisu." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Podaj nazwę użytkownika do subskrybowania." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Nie można subskrybować profili OMB za pomocą polecenia." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subskrybowano użytkownika %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Usunięto subskrypcję użytkownika %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Nie zaimplementowano polecenia." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Wyłączono powiadomienia." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Nie można wyłączyć powiadomień." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Włączono powiadomienia." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Nie można włączyć powiadomień." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Polecenie logowania jest wyłączone." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6074,20 +6106,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Usunięto subskrypcję użytkownika %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Nie subskrybujesz nikogo." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Subskrybujesz tę osobę:" @@ -6096,14 +6128,14 @@ msgstr[2] "Subskrybujesz te osoby:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nikt cię nie subskrybuje." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Ta osoba cię subskrybuje:" @@ -6112,14 +6144,14 @@ msgstr[2] "Te osoby cię subskrybują:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Nie jesteś członkiem żadnej grupy." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Jesteś członkiem tej grupy:" @@ -6127,7 +6159,7 @@ msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6209,39 +6241,61 @@ msgstr "" "tracks - jeszcze nie zaimplementowano\n" "tracking - jeszcze nie zaimplementowano\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Nie odnaleziono pliku konfiguracji." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Szukano plików konfiguracji w następujących miejscach: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Należy uruchomić instalator, aby to naprawić." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Przejdź do instalatora." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Komunikator" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Aktualizacje przez komunikator" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Aktualizacje przez wiadomości SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Połączenia" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Upoważnione połączone aplikacje" @@ -6262,11 +6316,11 @@ msgstr "Można wysłać osobisty obraz tła. Maksymalny rozmiar pliku to 2 MB." msgid "Design defaults restored." msgstr "Przywrócono domyślny wygląd." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Usuń ten wpis z ulubionych" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Dodaj ten wpis do ulubionych" @@ -6286,9 +6340,9 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Kanały" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6825,7 +6879,7 @@ msgstr "" "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "twoich oczu." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "z" @@ -6975,55 +7029,55 @@ msgstr "" "ponownie później" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "Północ" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Południe" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "Wschód" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Zachód" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "w" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "WWW" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "w rozmowie" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Powtórzone przez" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Odpowiedz" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Powtórzono wpis" @@ -7094,7 +7148,7 @@ msgid "Tags in %s's notices" msgstr "Znaczniki we wpisach użytkownika %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Nieznane" @@ -7488,14 +7542,19 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "Plik kopii zapasowej dla użytkownika %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Nie podano identyfikatora użytkownika." +msgstr "Nie podano użytkownika; używanie użytkownika zapasowego." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d wpisów w kopii zapasowej." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "Użytkownik %s oznaczył wpis %s jako ulubiony." + +#~ msgid "%s is now following %s." +#~ msgstr "Użytkownik %s obserwuje teraz %s." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 46121bcc33..90a14d917e 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:01+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Gravar" @@ -114,7 +114,7 @@ msgstr "Página não foi encontrada." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utilizador não foi encontrado." @@ -357,7 +357,7 @@ msgid "This status is already a favorite." msgstr "Este estado já é um favorito." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Não foi possível criar o favorito." @@ -471,18 +471,18 @@ msgid "Group not found." msgstr "Grupo não foi encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Já é membro desse grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Foi bloqueado desse grupo pelo gestor." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível adicionar %1$s ao grupo %2$s." @@ -494,7 +494,7 @@ msgstr "Não é membro deste grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Não foi possível remover %1$s do grupo %2$s." @@ -609,7 +609,7 @@ msgstr "" "permitir acesso à sua conta %4$s a terceiros da sua confiança." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Conta" @@ -623,7 +623,7 @@ msgstr "Utilizador" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -653,12 +653,12 @@ msgid "No such notice." msgstr "Nota não foi encontrada." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Não pode repetir a sua própria nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Já repetiu essa nota." @@ -768,7 +768,7 @@ msgstr "Tamanho inválido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -799,7 +799,7 @@ msgid "Preview" msgstr "Antevisão" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Apagar" @@ -885,7 +885,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -904,8 +904,8 @@ msgstr "Não foi possível gravar informação do bloqueio." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Grupo não foi encontrado." @@ -1021,7 +1021,7 @@ msgstr "Não é o proprietário desta aplicação." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1086,7 +1086,7 @@ msgid "Do not delete this notice" msgstr "Não apagar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Apagar esta nota" @@ -1117,7 +1117,7 @@ msgstr "Apagar este utilizador" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Estilo" @@ -1247,7 +1247,7 @@ msgstr "Repor predefinição" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Gravar" @@ -1367,7 +1367,7 @@ msgid "Could not update group." msgstr "Não foi possível actualizar o grupo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Não foi possível criar os nomes alternativos." @@ -1423,7 +1423,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1619,7 +1619,7 @@ msgstr "Adicionado endereço electrónico de entrada novo." msgid "This notice is already a favorite!" msgstr "Esta nota já é uma favorita!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Retirar das favoritas" @@ -1922,7 +1922,7 @@ msgstr "Tornar este utilizador um gestor" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Notas de %s" @@ -2207,7 +2207,7 @@ msgstr "Já subscreveu estes utilizadores:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2339,7 +2339,7 @@ msgid "You must be logged in to leave a group." msgstr "Tem de iniciar uma sessão para deixar um grupo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Não é um membro desse grupo." @@ -2560,14 +2560,14 @@ msgid "New message" msgstr "Mensagem nova" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Não pode enviar uma mensagem a este utilizador." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Sem conteúdo!" @@ -2576,7 +2576,7 @@ msgid "No recipient specified." msgstr "Não especificou um destinatário." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio." @@ -2587,12 +2587,12 @@ msgstr "Mensagem enviada" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Mensagem directa para %s foi enviada." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Erro do Ajax" @@ -2730,8 +2730,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Só URLs %s sobre HTTP simples, por favor." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -3085,7 +3085,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página pessoal" @@ -3483,7 +3483,7 @@ msgstr "Repita a senha acima. Obrigatório." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correio" @@ -3647,7 +3647,7 @@ msgstr "Não pode repetir a sua própria nota." msgid "You already repeated that notice." msgstr "Já repetiu essa nota." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetida" @@ -3782,13 +3782,13 @@ msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organização" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" @@ -4576,7 +4576,7 @@ msgstr "%s não está a ouvir ninguém." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4701,7 +4701,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4896,7 +4896,7 @@ msgstr "Tente [pesquisar grupos](%%action.groupsearch%%) e juntar-se a eles." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizações de %1#s a %2$s!" @@ -4956,7 +4956,7 @@ msgid "Plugins" msgstr "Plugins" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versão" @@ -4964,29 +4964,25 @@ msgstr "Versão" msgid "Author(s)" msgstr "Autores" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Eleger como favorita" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Não é possível processar a URL '$s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "o Robin acha que algo é impossível." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4997,7 +4993,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5005,13 +5001,13 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Um ficheiro desta dimensão excederia a sua quota mensal de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nome de ficheiro inválido." @@ -5030,13 +5026,28 @@ msgstr "Não faz parte do grupo." msgid "Group leave failed." msgstr "Saída do grupo falhou." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Erro ao guardar utilizador; inválido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Juntar-me" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5059,17 +5070,17 @@ msgid "No database name or DSN found anywhere." msgstr "Não foi encontrado nenhum nome de base de dados ou DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Está proibido de enviar mensagens directas." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Não foi possível inserir a mensagem." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Não foi possível actualizar a mensagem com a nova URI." @@ -5125,25 +5136,25 @@ msgid "Problem saving notice." msgstr "Problema na gravação da nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo fornecido ao método saveKnownGroups é incorrecto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problema na gravação da caixa de entrada do grupo." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5151,7 +5162,7 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5203,13 +5214,9 @@ msgstr "Não foi possível apagar a chave OMB da subscrição." msgid "Could not delete subscription." msgstr "Não foi possível apagar a subscrição." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5220,57 +5227,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Não foi possível criar o grupo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Não foi possível configurar a URI do grupo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Não foi possível configurar membros do grupo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Não foi possível gravar a informação do grupo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Modificar as suas definições de perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Carregar um avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Modificar a sua senha" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Alterar manuseamento de email" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Altere o estilo do seu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Outras opções" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Outras" @@ -5286,184 +5293,185 @@ msgid "Untitled page" msgstr "Página sem título" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegação primária deste site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e notas dos amigos" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere o seu endereço electrónico, avatar, senha, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ligar aos serviços" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Ligar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Alterar a configuração do site" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Gestor" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amigos e colegas para se juntarem a si em %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar esta sessão" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar uma sessão" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procurar pessoas ou pesquisar texto" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Pesquisa" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Aviso do site" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistas locais" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Aviso da página" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegação secundária deste site" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ajuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Sobre" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Termos" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacidade" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Código fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Emblema" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licença de software do StatusNet" @@ -5471,7 +5479,7 @@ msgstr "Licença de software do StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5481,7 +5489,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é um serviço de microblogues." @@ -5490,7 +5498,7 @@ msgstr "**%%site.name%%** é um serviço de microblogues." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5502,20 +5510,20 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licença de conteúdos do site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e dados do site %1$s são privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5523,7 +5531,7 @@ msgstr "" "direitos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Direitos de autor sobre o conteúdo e dados detidos pelos contribuidores. " @@ -5531,7 +5539,7 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5539,41 +5547,41 @@ msgstr "" "licença %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginação" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Posteriores" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Anteriores" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Era esperado um elemento raiz da fonte, mas foi recebido um documento XML " "inteiro." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Ainda não é possível processar conteúdos remotos." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Ainda não é possível processar conteúdo XML embutido." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Ainda não é possível processar conteúdo Base64 embutido." @@ -5698,7 +5706,7 @@ msgid "Tried to revoke unknown token." msgstr "Tentou revogar um código desconhecido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Falha ao eliminar código revogado." @@ -5713,186 +5721,206 @@ msgid "Icon for this application" msgstr "Ícone para esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Descreva a sua aplicação em %d caracteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Descreva a sua aplicação em %d caracteres" +msgstr[1] "Descreva a sua aplicação em %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Descreva a sua aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL da página desta aplicação" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL de origem" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organização responsável por esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL da página desta organização" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL para onde reencaminhar após autenticação" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo da aplicação, browser ou desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Leitura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Leitura e escrita" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "Acesso por omissão para esta aplicação: leitura ou leitura e escrita" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "leitura e escrita" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "leitura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovado a %1$s - acesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Retirar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Anexos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Fornecedor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notas em que este anexo aparece" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Categorias para este anexo" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Não foi possível mudar a palavra-chave" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Não é permitido mudar a palavra-chave" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquear" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados do comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Erro do Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comando terminado" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comando falhou" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Não existe nenhuma nota com essa identificação." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Utilizador não tem nenhuma última nota." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Não foi encontrado um utilizador com o nome %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Não foi encontrado nenhum utilizador local com o nome %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Desculpe, este comando ainda não foi implementado." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Não faz muito sentido tocar-nos a nós mesmos!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Toque enviado para %s." @@ -5901,7 +5929,7 @@ msgstr "Toque enviado para %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5913,52 +5941,53 @@ msgstr "" "Notas: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Nota marcada como favorita." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s juntou-se ao grupo %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s deixou o grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Localidade: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Página pessoal: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Sobre: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5969,131 +5998,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensagem demasiado extensa - máx. %1$d caracteres, enviou %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Erro no envio da mensagem directa." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Nota de %s repetida." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Erro ao repetir nota." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Nota demasiado extensa - máx. %1$d caracteres, enviou %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Resposta a %s enviada." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Erro ao gravar nota." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Introduza o nome do utilizador para subscrever." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Não pode subscrever perfis OMB por comando." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subscreveu %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Introduza o nome do utilizador para deixar de subscrever." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Deixou de subscrever %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Comando ainda não implementado." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificação desligada." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Não foi possível desligar a notificação." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificação ligada." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Não foi possível ligar a notificação." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Comando para iniciar sessão foi desactivado." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "O link é utilizável uma única vez e só é válido durante 2 minutos: %s." #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Subscrição de %s cancelada." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Não subscreveu ninguém." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Subscreveu esta pessoa:" @@ -6101,14 +6130,14 @@ msgstr[1] "Subscreveu estas pessoas:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Ninguém subscreve as suas notas." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta pessoa subscreve as suas notas:" @@ -6116,21 +6145,21 @@ msgstr[1] "Estas pessoas subscrevem as suas notas:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Não está em nenhum grupo." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Está no grupo:" msgstr[1] "Está nos grupos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6210,39 +6239,61 @@ msgstr "" "tracks - ainda não implementado.\n" "tracking - ainda não implementado.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ficheiro de configuração não encontrado. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Procurei ficheiros de configuração nos seguintes sítios: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Talvez queira correr o instalador para resolver esta questão." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir para o instalador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualizações por mensagem instantânea (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualizações por SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Ligações" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicações ligadas autorizadas" @@ -6265,11 +6316,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Predefinições do estilo repostas" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Retirar esta nota das favoritas" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Eleger esta nota como favorita" @@ -6289,7 +6340,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6824,7 +6875,7 @@ msgstr "" "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "só você terá acesso." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "a partir de" @@ -6977,55 +7028,55 @@ msgstr "" "tente novamente mais tarde" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "coords." -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a esta nota" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Nota repetida" @@ -7096,7 +7147,7 @@ msgid "Tags in %s's notices" msgstr "Categorias nas notas de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Desconhecida" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 1c30940d06..ce9407ae06 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:02+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:24+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Salvar" @@ -117,7 +117,7 @@ msgstr "Esta página não existe." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Este usuário não existe." @@ -363,7 +363,7 @@ msgid "This status is already a favorite." msgstr "Esta mensagem já é favorita!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Não foi possível criar a favorita." @@ -478,18 +478,18 @@ msgid "Group not found." msgstr "O grupo não foi encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Você já é membro desse grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "O administrador desse grupo bloqueou sua inscrição." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." @@ -501,7 +501,7 @@ msgstr "Você não é membro deste grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Não foi possível remover o usuário %1$s do grupo %2$s." @@ -622,7 +622,7 @@ msgstr "" "confia." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Conta" @@ -636,7 +636,7 @@ msgstr "Usuário" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -666,12 +666,12 @@ msgid "No such notice." msgstr "Essa mensagem não existe." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Você não pode repetir a sua própria mensagem." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Você já repetiu essa mensagem." @@ -781,7 +781,7 @@ msgstr "Tamanho inválido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -813,7 +813,7 @@ msgid "Preview" msgstr "Pré-visualizar" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Excluir" @@ -900,7 +900,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuário" @@ -919,8 +919,8 @@ msgstr "Não foi possível salvar a informação de bloqueio." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Esse grupo não existe." @@ -1036,7 +1036,7 @@ msgstr "Você não é o dono desta aplicação." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1101,7 +1101,7 @@ msgid "Do not delete this notice" msgstr "Não excluir esta mensagem." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -1132,7 +1132,7 @@ msgstr "Excluir este usuário" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Aparência" @@ -1262,7 +1262,7 @@ msgstr "Restaura de volta ao padrão" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Salvar" @@ -1382,7 +1382,7 @@ msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Não foi possível criar os apelidos." @@ -1438,7 +1438,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1634,7 +1634,7 @@ msgstr "" msgid "This notice is already a favorite!" msgstr "Essa mensagem já é uma favorita!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Desmarcar a favorita" @@ -1939,7 +1939,7 @@ msgstr "Torna este usuário um administrador" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" @@ -2225,7 +2225,7 @@ msgstr "Você já está assinando esses usuários:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2358,7 +2358,7 @@ msgid "You must be logged in to leave a group." msgstr "Você deve estar autenticado para sair de um grupo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Você não é um membro desse grupo." @@ -2583,14 +2583,14 @@ msgid "New message" msgstr "Nova mensagem" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Você não pode enviar mensagens para este usuário." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Nenhum conteúdo!" @@ -2599,7 +2599,7 @@ msgid "No recipient specified." msgstr "Não foi especificado nenhum destinatário." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2612,12 +2612,12 @@ msgstr "A mensagem foi enviada" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "A mensagem direta para %s foi enviada." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Erro no Ajax" @@ -2757,8 +2757,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Por favor, somente URLs %s sobre HTTP puro." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -3113,7 +3113,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site" @@ -3513,7 +3513,7 @@ msgstr "Igual à senha acima. Obrigatório." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3674,7 +3674,7 @@ msgstr "Você não pode repetir sua própria mensagem." msgid "You already repeated that notice." msgstr "Você já repetiu essa mensagem." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetida" @@ -3810,13 +3810,13 @@ msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organização" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" @@ -4602,7 +4602,7 @@ msgstr "%s não está acompanhando ninguém." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4728,7 +4728,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4925,7 +4925,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Mensagens de %1$s no %2$s!" @@ -4986,7 +4986,7 @@ msgid "Plugins" msgstr "Plugins" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versão" @@ -4994,29 +4994,25 @@ msgstr "Versão" msgid "Author(s)" msgstr "Autor(es)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Tornar favorita" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Não é possível processar a URL '$s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "o Robin acha que algo é impossível." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5027,20 +5023,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Um arquivo deste tamanho excederá a sua conta de %d bytes." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Um arquivo deste tamanho excederá a sua conta mensal de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nome de arquivo inválido." @@ -5059,13 +5055,28 @@ msgstr "Não é parte de um grupo." msgid "Group leave failed." msgstr "Não foi possível deixar o grupo." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Erro ao salvar usuário; inválido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Entrar" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5088,17 +5099,17 @@ msgid "No database name or DSN found anywhere." msgstr "Não foi encontrado nenhum nome de base de dados ou DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Você está proibido de enviar mensagens diretas." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Não foi possível inserir a mensagem." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Não foi possível atualizar a mensagem com a nova URI." @@ -5154,32 +5165,32 @@ msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo fornecido ao método saveKnownGroups é incorreto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Não é possível revogar a função \"%1$s\" do usuário #%2$d; não existe." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5231,13 +5242,9 @@ msgstr "Não foi possível salvar a assinatura." msgid "Could not delete subscription." msgstr "Não foi possível salvar a assinatura." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5248,57 +5255,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Não foi possível criar o grupo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Não foi possível definir a URI do grupo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Não foi possível configurar a associação ao grupo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Não foi possível salvar a informação do grupo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Alterar as suas configurações de perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Enviar um avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Alterar a sua senha" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Configurações de uso do e-mail" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Mude a aparência do seu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Outras opções" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Outras" @@ -5314,184 +5321,185 @@ msgid "Untitled page" msgstr "Página sem título" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegação primária no site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e fluxo de mensagens dos amigos" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere seu e-mail, avatar, senha, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conecte-se a outros serviços" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Altere as configurações do site" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrar" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide seus amigos e colegas para unir-se a você no %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Sair do site" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrar-se" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Autentique-se no site" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procure por pessoas ou textos" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Pesquisar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Avisos do site" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Visualizações locais" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Notícia da página" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegação secundária no site" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ajuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Sobre" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Termos de uso" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacidade" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contato" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Mini-aplicativo" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licença do software StatusNet" @@ -5499,7 +5507,7 @@ msgstr "Licença do software StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5509,7 +5517,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é um serviço de microblog." @@ -5518,7 +5526,7 @@ msgstr "**%%site.name%%** é um serviço de microblog." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5530,26 +5538,26 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licença do conteúdo do site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e os dados de %1$s são privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " @@ -5557,47 +5565,47 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Todo o conteúdo e dados de %1$s estão disponíveis sob a licença %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginação" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Próximo" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Anterior" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Era esperado um elemento raiz da fonte, mas foi obtido o documento XML " "inteiro." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Ainda não é possível manipular conteúdo remoto." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Ainda não é possível manipular conteúdo XML incorporado." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Ainda não é possível manipular conteúdo Base64." @@ -5724,7 +5732,7 @@ msgid "Tried to revoke unknown token." msgstr "Tentou revogar um código desconhecido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Falha ao eliminar código revogado." @@ -5739,188 +5747,208 @@ msgid "Icon for this application" msgstr "Ícone para esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Descreva a sua aplicação em %d caracteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Descreva a sua aplicação em %d caracteres" +msgstr[1] "Descreva a sua aplicação em %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Descreva sua aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL do site desta aplicação" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL da fonte" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organização responsável por esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL para o site da organização" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL para o redirecionamento após a autenticação" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicação: navegador ou desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Somente leitura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Leitura e escrita" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acesso padrão para esta aplicação: somente leitura ou leitura e escrita" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "leitura e escrita" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "somente leitura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovado em %1$s - acesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Anexos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Operadora" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Mensagens onde este anexo aparece" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquetas para este anexo" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Não foi possível alterar a senha" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Não é permitido alterar a senha" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquear" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados do comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Erro no Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "O comando foi completado" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "O comando falhou" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Não existe uma mensagem com essa id." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "O usuário não tem nenhuma \"última mensagem\"." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Não foi possível encontrar nenhum usuário com a identificação %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" "Não foi possível encontrar nenhum usuário local com a identificação %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Desculpe, mas esse comando ainda não foi implementado." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Não faz muito sentido chamar a sua própria atenção!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Foi enviada a chamada de atenção para %s." @@ -5929,7 +5957,7 @@ msgstr "Foi enviada a chamada de atenção para %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5941,52 +5969,53 @@ msgstr "" "Mensagens: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Mensagem marcada como favorita." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s associou-se ao grupo %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s deixou o grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Localização: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Site: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Sobre: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5997,32 +6026,32 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" "A mensagem é muito extensa - o máximo são %1$d caracteres e você enviou %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Ocorreu um erro durante o envio da mensagem direta." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "A mensagem de %s foi repetida." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Erro na repetição da mensagem." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6030,80 +6059,80 @@ msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "A resposta para %s foi enviada." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Erro no salvamento da mensagem." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Especifique o nome do usuário que será assinado." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Não é possível assinar perfis OMB com comandos." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Foi efetuada a assinatura de $s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Especifique o nome do usuário cuja assinatura será cancelada." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Foi cancelada a assinatura de %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "O comando não foi implementado ainda." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificação desligada." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Não é possível desligar a notificação." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificação ligada." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Não é possível ligar a notificação." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "O comando para autenticação está desabilitado." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6112,20 +6141,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Foi cancelada a assinatura de %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Você não está assinando ninguém." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Você já está assinando esta pessoa:" @@ -6133,14 +6162,14 @@ msgstr[1] "Você já está assinando estas pessoas:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Ninguém o assinou ainda." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta pessoa está assinando você:" @@ -6148,21 +6177,21 @@ msgstr[1] "Estas pessoas estão assinando você:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Você não é membro de nenhum grupo." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Você é membro deste grupo:" msgstr[1] "Você é membro destes grupos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6243,39 +6272,61 @@ msgstr "" "tracks - não implementado ainda\n" "tracking - não implementado ainda\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Não foi encontrado nenhum arquivo de configuração. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Eu procurei pelos arquivos de configuração nos seguintes lugares: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Você pode querer executar o instalador para corrigir isto." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir para o instalador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Atualizações via mensageiro instantâneo (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Atualizações via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conexões" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicações autorizadas conectadas" @@ -6297,11 +6348,11 @@ msgstr "" msgid "Design defaults restored." msgstr "A aparência padrão foi restaurada." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Excluir das favoritas" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Acrescentar às favoritas" @@ -6321,7 +6372,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6859,7 +6910,7 @@ msgstr "" "privadas para envolver outras pessoas em uma conversa. Você também pode " "receber mensagens privadas." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -7014,55 +7065,55 @@ msgstr "" "esperado. Por favor, tente novamente mais tarde." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "L" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "em" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Mensagem repetida" @@ -7133,7 +7184,7 @@ msgid "Tags in %s's notices" msgstr "Etiquetas nas mensagens de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Desconhecido" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 0c11808e79..01a8dfc192 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:03+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Сохранить настройки доступа" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -117,7 +117,7 @@ msgstr "Нет такой страницы." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Нет такого пользователя." @@ -361,7 +361,7 @@ msgid "This status is already a favorite." msgstr "Этот статус уже входит в число любимых." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Не удаётся создать любимую запись." @@ -477,18 +477,18 @@ msgid "Group not found." msgstr "Группа не найдена." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Вы уже являетесь членом этой группы." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Вы заблокированы из этой группы администратором." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." @@ -500,7 +500,7 @@ msgstr "Вы не являетесь членом этой группы." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не удаётся удалить пользователя %1$s из группы %2$s." @@ -617,7 +617,7 @@ msgstr "" "сторонним приложениям, которым вы доверяете." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Настройки" @@ -631,7 +631,7 @@ msgstr "Имя" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -661,12 +661,12 @@ msgid "No such notice." msgstr "Нет такой записи." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Невозможно повторить собственную запись." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Запись уже повторена." @@ -776,7 +776,7 @@ msgstr "Неверный размер." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватара" @@ -808,7 +808,7 @@ msgid "Preview" msgstr "Просмотр" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Удалить" @@ -894,7 +894,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Заблокировать пользователя." @@ -913,8 +913,8 @@ msgstr "Не удаётся сохранить информацию о блок #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Нет такой группы." @@ -1030,7 +1030,7 @@ msgstr "Вы не являетесь владельцем этого прило #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Проблема с вашим ключом сессии." @@ -1095,7 +1095,7 @@ msgid "Do not delete this notice" msgstr "Не удалять эту запись" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Удалить эту запись" @@ -1126,7 +1126,7 @@ msgstr "Удалить этого пользователя" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Оформление" @@ -1254,7 +1254,7 @@ msgstr "Восстановить значения по умолчанию" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Сохранить" @@ -1374,7 +1374,7 @@ msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Не удаётся создать алиасы." @@ -1430,7 +1430,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Отмена" @@ -1631,7 +1631,7 @@ msgstr "Новый входящий электронный адрес добав msgid "This notice is already a favorite!" msgstr "Эта запись уже входит в число любимых!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Разлюбить" @@ -1935,7 +1935,7 @@ msgstr "Сделать этого пользователя администра #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Лента %s" @@ -2221,7 +2221,7 @@ msgstr "Вы уже подписаны на пользователя:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2354,7 +2354,7 @@ msgid "You must be logged in to leave a group." msgstr "Вы должны авторизоваться, чтобы покинуть группу." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Вы не являетесь членом этой группы." @@ -2576,14 +2576,14 @@ msgid "New message" msgstr "Новое сообщение" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Вы не можете послать сообщение этому пользователю." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Нет контента!" @@ -2592,7 +2592,7 @@ msgid "No recipient specified." msgstr "Нет адресата." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." @@ -2603,12 +2603,12 @@ msgstr "Сообщение отправлено" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Прямое сообщение для %s послано." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ошибка AJAX" @@ -2745,8 +2745,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Только %s URL в простом HTTP, пожалуйста." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." @@ -3099,7 +3099,7 @@ msgstr "Полное имя" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Главная" @@ -3495,7 +3495,7 @@ msgstr "Тот же пароль что и сверху. Обязательно #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" @@ -3653,7 +3653,7 @@ msgstr "Вы не можете повторить собственную зап msgid "You already repeated that notice." msgstr "Вы уже повторили эту запись." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Повторено" @@ -3790,13 +3790,13 @@ msgid "Name" msgstr "Имя" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организация" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Описание" @@ -4588,7 +4588,7 @@ msgstr "%s не просматривает ничьи записи." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "СМС" @@ -4714,7 +4714,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профиль" @@ -4908,7 +4908,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" @@ -4969,7 +4969,7 @@ msgid "Plugins" msgstr "Плагины" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Версия" @@ -4977,29 +4977,25 @@ msgstr "Версия" msgid "Author(s)" msgstr "Автор(ы)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Пометить" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Невозможно обработать URL «%s»" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Робин считает, что это невозможно." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5010,20 +5006,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Файл такого размера превысит вашу пользовательскую квоту в %d байта." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Файл такого размера превысит вашу месячную квоту в %d байта." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Неверное имя файла." @@ -5042,13 +5038,28 @@ msgstr "Не является частью группы." msgid "Group leave failed." msgstr "Не удаётся покинуть группу." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Ошибка сохранения пользователя; неверное имя." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Присоединиться" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5071,17 +5082,17 @@ msgid "No database name or DSN found anywhere." msgstr "Имя базы данных или DSN не найдено." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Вы заблокированы от отправки прямых сообщений." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Не удаётся вставить сообщение." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Не удаётся обновить сообщение с новым URI." @@ -5137,25 +5148,25 @@ msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Для saveKnownGroups указан неверный тип" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5164,7 +5175,7 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5215,13 +5226,9 @@ msgstr "Не удаётся удалить подписочный жетон OMB msgid "Could not delete subscription." msgstr "Не удаётся удалить подписку." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5232,57 +5239,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Не удаётся создать группу." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Не удаётся назначить URI группы." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Не удаётся назначить членство в группе." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Не удаётся сохранить информацию о локальной группе." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Изменить ваши настройки профиля" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Загрузить аватару" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Измените свой пароль" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Изменить электронный адрес" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Оформить ваш профиль" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Другие опции" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Другое" @@ -5298,184 +5305,185 @@ msgid "Untitled page" msgstr "Страница без названия" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Главная навигация" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Личное" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Изменить ваш email, аватар, пароль, профиль" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Соединить с сервисами" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Соединить" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Изменить конфигурацию сайта" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Настройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Пригласите друзей и коллег стать такими же как Вы участниками %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Пригласить" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Выйти" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Выход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создать новый аккаунт" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Регистрация" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Войти" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощь" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Помощь" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Искать людей или текст" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Поиск" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Уведомление сайта" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Локальные виды" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Новая запись" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Навигация по подпискам" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Помощь" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "О проекте" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ЧаВо" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Пользовательское соглашение" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Исходный код" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Контактная информация" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Бедж" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet лицензия" @@ -5483,7 +5491,7 @@ msgstr "StatusNet лицензия" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5493,7 +5501,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** — сервис микроблогинга." @@ -5502,7 +5510,7 @@ msgstr "**%%site.name%%** — сервис микроблогинга." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5515,27 +5523,27 @@ msgstr "" "licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Лицензия содержимого сайта" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содержание и данные %1$s являются личными и конфиденциальными." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат %1$s. Все права защищены." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат разработчикам. Все права " @@ -5543,45 +5551,45 @@ msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Все материалы и данные %1$s доступны на условиях лицензии %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Разбиение на страницы" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Сюда" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Туда" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Ожидался корневой элемент потока, а получен XML-документ целиком." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Пока ещё нельзя обрабатывать удалённое содержимое." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Пока ещё нельзя обрабатывать встроенный XML." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Пока ещё нельзя обрабатывать встроенное содержание Base64." @@ -5708,7 +5716,7 @@ msgid "Tried to revoke unknown token." msgstr "Попытка отменить неизвестный ключ." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Не удаётся удалить аннулированный ключ." @@ -5723,187 +5731,208 @@ msgid "Icon for this application" msgstr "Иконка для этого приложения" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Опишите ваше приложение при помощи %d символов" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Опишите ваше приложение при помощи %d символов" +msgstr[1] "Опишите ваше приложение при помощи %d символов" +msgstr[2] "Опишите ваше приложение при помощи %d символов" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Опишите ваше приложение" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL-адрес домашней страницы этого приложения" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL источника" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Организация, ответственная за это приложение" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL-адрес домашней страницы организации" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL для перенаправления после проверки подлинности" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Браузер" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Операционная система" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Среда выполнения приложения: браузер или операционная система" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Только чтение" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Чтение и запись" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Доступ по умолчанию для этого приложения: только чтение или чтение и запись" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Отменить" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "чтение/запись" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "только чтение" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Подтверждён доступ %1$s — «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Отозвать" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Вложения" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Автор" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Сервис" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Сообщает, где появляется это вложение" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Теги для этого вложения" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Изменение пароля не удалось" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Смена пароля не разрешена" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Блокировать" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Команда исполнена" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ошибка AJAX" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Команда завершена" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Команда неудачна" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Записи с таким id не существует." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "У пользователя нет последней записи." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Не удаётся найти пользователя с именем %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Не удаётся найти локального пользователя с именем %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Простите, эта команда ещё не выполнена." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Нет смысла «подталкивать» самого себя!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "«Подталкивание» послано %s." @@ -5912,7 +5941,7 @@ msgstr "«Подталкивание» послано %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5924,52 +5953,53 @@ msgstr "" "Записей: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Запись помечена как любимая." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s присоединился к группе %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s покинул группу %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Полное имя: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Месторасположение: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Домашняя страница: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "О пользователе: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5980,112 +6010,112 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" "Сообщение слишком длинное — не больше %1$d символов, вы отправили %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Ошибка при отправке прямого сообщения." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Запись %s повторена." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Ошибка при повторении записи." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Запись слишком длинная — не больше %1$d символов, вы отправили %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Ответ %s отправлен." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Проблемы с сохранением записи." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Укажите имя пользователя для подписки." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Невозможно подписаться командой на профили OMB." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Подписался на %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Укажите имя пользователя для отмены подписки." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Отписаться от %s." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Команда ещё не выполнена." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Оповещение отсутствует." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Нет оповещения." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Есть оповещение." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Есть оповещение." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Команда входа отключена." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6094,20 +6124,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Отписано %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Вы ни на кого не подписаны." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Вы подписаны на этих людей:" @@ -6116,14 +6146,14 @@ msgstr[2] "Вы подписаны на этих людей:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Никто не подписан на вас." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Эти люди подписались на вас:" @@ -6132,14 +6162,14 @@ msgstr[2] "Эти люди подписались на вас:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Вы не состоите ни в одной группе." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Вы являетесь участником следующих групп:" @@ -6147,7 +6177,7 @@ msgstr[1] "Вы являетесь участником следующих гр msgstr[2] "Вы являетесь участником следующих групп:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6227,39 +6257,61 @@ msgstr "" "tracks — пока не реализовано.\n" "tracking — пока не реализовано.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Конфигурационный файл не найден. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Конфигурационные файлы искались в следующих местах: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Возможно, вы решите запустить установщик для исправления этого." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Перейти к установщику" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Обновлено по IM" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Обновления по СМС" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Соединения" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Авторизованные соединённые приложения" @@ -6282,11 +6334,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Оформление по умолчанию восстановлено." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Мне не нравится эта запись" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Мне нравится эта запись" @@ -6306,7 +6358,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6841,7 +6893,7 @@ msgstr "" "вовлечения других пользователей в разговор. Сообщения, получаемые от других " "людей, видите только вы." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "от" @@ -6991,55 +7043,55 @@ msgstr "" "времени, чем ожидалось; повторите попытку позже" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "с. ш." #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ю. ш." #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "в. д." #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "з. д." -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "из" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "переписка" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Запись повторена" @@ -7110,7 +7162,7 @@ msgid "Tags in %s's notices" msgstr "Теги записей пользователя %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Неизвестно" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 6cbb79490b..973a599fbb 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-09-28 17:24+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -75,7 +75,7 @@ msgstr "" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -106,7 +106,7 @@ msgstr "" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "" @@ -338,7 +338,7 @@ msgid "This status is already a favorite." msgstr "" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "" @@ -451,18 +451,18 @@ msgid "Group not found." msgstr "" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "" @@ -474,7 +474,7 @@ msgstr "" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "" @@ -586,7 +586,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "" @@ -600,7 +600,7 @@ msgstr "" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "" @@ -630,12 +630,12 @@ msgid "No such notice." msgstr "" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "" @@ -745,7 +745,7 @@ msgstr "" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "" @@ -776,7 +776,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "" @@ -859,7 +859,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "" @@ -878,8 +878,8 @@ msgstr "" #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "" @@ -995,7 +995,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1055,7 +1055,7 @@ msgid "Do not delete this notice" msgstr "" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "" @@ -1084,7 +1084,7 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "" @@ -1210,7 +1210,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1330,7 +1330,7 @@ msgid "Could not update group." msgstr "" #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "" @@ -1572,7 +1572,7 @@ msgstr "" msgid "This notice is already a favorite!" msgstr "" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "" @@ -1863,7 +1863,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2123,7 +2123,7 @@ msgstr "" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2226,7 +2226,7 @@ msgid "You must be logged in to leave a group." msgstr "" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "" @@ -2443,14 +2443,14 @@ msgid "New message" msgstr "" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "" @@ -2459,7 +2459,7 @@ msgid "No recipient specified." msgstr "" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2470,12 +2470,12 @@ msgstr "" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "" @@ -2604,8 +2604,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "" @@ -2952,7 +2952,7 @@ msgstr "" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "" @@ -3324,7 +3324,7 @@ msgstr "" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "" @@ -3459,7 +3459,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "" @@ -3589,13 +3589,13 @@ msgid "Name" msgstr "" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "" @@ -4328,7 +4328,7 @@ msgstr "" msgid "Jabber" msgstr "" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "" @@ -4447,7 +4447,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" @@ -4631,7 +4631,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4680,7 +4680,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "" @@ -4688,29 +4688,25 @@ msgstr "" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4719,20 +4715,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "" @@ -4751,13 +4747,28 @@ msgstr "" msgid "Group leave failed." msgstr "" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, php-format +msgid "Group ID %s is invalid." +msgstr "" + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4780,17 +4791,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "" @@ -4842,32 +4853,32 @@ msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -4917,13 +4928,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -4934,57 +4941,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "" #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "" @@ -5000,184 +5007,185 @@ msgid "Untitled page" msgstr "" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "" @@ -5185,7 +5193,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5193,7 +5201,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5202,7 +5210,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5211,70 +5219,70 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5399,7 +5407,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5414,186 +5422,203 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, php-format -msgid "Describe your application in %d characters" -msgstr "" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "" +msgstr[1] "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +msgid "Password changing failed." msgstr "" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +msgid "Password changing is not allowed." msgstr "" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +msgid "AJAX error" +msgstr "" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5602,7 +5627,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5611,52 +5636,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5665,131 +5691,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" @@ -5797,14 +5823,14 @@ msgstr[1] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" @@ -5812,21 +5838,21 @@ msgstr[1] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5868,39 +5894,58 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "" -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +msgctxt "MENU" +msgid "SMS" +msgstr "" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +msgctxt "MENU" msgid "Connections" msgstr "" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -5921,11 +5966,11 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "" @@ -5945,7 +5990,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6375,7 +6420,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "" @@ -6520,55 +6565,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "" @@ -6639,7 +6684,7 @@ msgid "Tags in %s's notices" msgstr "" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 878c658ac6..99fbeae471 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:04+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:26+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Spara inställningar för åtkomst" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -113,7 +113,7 @@ msgstr "Ingen sådan sida" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ingen sådan användare." @@ -353,7 +353,7 @@ msgid "This status is already a favorite." msgstr "Denna status är redan en favorit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Kunde inte skapa favorit." @@ -467,18 +467,18 @@ msgid "Group not found." msgstr "Grupp hittades inte." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du är redan en medlem i denna grupp." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Du har blivit blockerad från denna grupp av administratören." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." @@ -490,7 +490,7 @@ msgstr "Du är inte en medlem i denna grupp." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunde inte ta bort användare %1$s från grupp %2$s." @@ -605,7 +605,7 @@ msgstr "" "ge tillgång till ditt %4$s-konto till tredje-parter du litar på." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -619,7 +619,7 @@ msgstr "Smeknamn" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Lösenord" @@ -649,12 +649,12 @@ msgid "No such notice." msgstr "Ingen sådan notis." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kan inte upprepa din egen notis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Redan upprepat denna notis." @@ -764,7 +764,7 @@ msgstr "Ogiltig storlek." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -796,7 +796,7 @@ msgid "Preview" msgstr "Förhandsgranska" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Ta bort" @@ -882,7 +882,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blockera denna användare" @@ -901,8 +901,8 @@ msgstr "Misslyckades att spara blockeringsinformation." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Ingen sådan grupp." @@ -1019,7 +1019,7 @@ msgstr "Du är inte ägaren av denna applikation." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1084,7 +1084,7 @@ msgid "Do not delete this notice" msgstr "Ta inte bort denna notis" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -1115,7 +1115,7 @@ msgstr "Ta bort denna användare" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Utseende" @@ -1243,7 +1243,7 @@ msgstr "Återställ till standardvärde" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Spara" @@ -1363,7 +1363,7 @@ msgid "Could not update group." msgstr "Kunde inte uppdatera grupp." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kunde inte skapa alias." @@ -1419,7 +1419,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" @@ -1611,7 +1611,7 @@ msgstr "Ny inkommande e-postadress tillagd." msgid "This notice is already a favorite!" msgstr "Denna notis är redan en favorit!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Ta bort märkning som favorit" @@ -1914,7 +1914,7 @@ msgstr "Gör denna användare till administratör" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidslinje" @@ -2197,7 +2197,7 @@ msgstr "Du prenumererar redan på dessa användare:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2332,7 +2332,7 @@ msgid "You must be logged in to leave a group." msgstr "Du måste vara inloggad för att lämna en grupp." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Du är inte en medlem i den gruppen." @@ -2553,14 +2553,14 @@ msgid "New message" msgstr "Nytt meddelande" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Du kan inte skicka ett meddelande till den användaren." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Inget innehåll!" @@ -2569,7 +2569,7 @@ msgid "No recipient specified." msgstr "Ingen mottagare angiven." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2582,12 +2582,12 @@ msgstr "Meddelande skickat" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Direktmeddelande till %s skickat." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "AJAX-fel" @@ -2725,8 +2725,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Endast %s-webbadresser över vanlig HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -3078,7 +3078,7 @@ msgstr "Fullständigt namn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hemsida" @@ -3476,7 +3476,7 @@ msgstr "Samma som lösenordet ovan. Måste fyllas i." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-post" @@ -3638,7 +3638,7 @@ msgstr "Du kan inte upprepa din egna notis." msgid "You already repeated that notice." msgstr "Du har redan upprepat denna notis." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Upprepad" @@ -3772,13 +3772,13 @@ msgid "Name" msgstr "Namn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrivning" @@ -4561,7 +4561,7 @@ msgstr "%s lyssnar inte på någon." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4687,7 +4687,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4884,7 +4884,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" @@ -4945,7 +4945,7 @@ msgid "Plugins" msgstr "Insticksmoduler" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -4953,29 +4953,25 @@ msgstr "Version" msgid "Author(s)" msgstr "Författare" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Markera som favorit" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Webbadressen '%s' kan inte bearbeta" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin tycker att något är omöjligt" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4986,20 +4982,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "En så här stor fil skulle överskrida din användarkvot på %d byte." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "En sådan här stor fil skulle överskrida din månatliga kvot på %d byte." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ogiltigt filnamn." @@ -5018,13 +5014,28 @@ msgstr "Inte med i grupp." msgid "Group leave failed." msgstr "Grupputträde misslyckades." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Fel vid sparande av användare; ogiltig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Gå med" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5047,17 +5058,17 @@ msgid "No database name or DSN found anywhere." msgstr "Inget databasnamn eller DSN funnen någonstans." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Du är utestängd från att skicka direktmeddelanden." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Kunde inte infoga meddelande." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Kunde inte uppdatera meddelande med ny URI." @@ -5113,32 +5124,32 @@ msgid "Problem saving notice." msgstr "Problem med att spara notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Dålig typ tillhandahållen saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Kan inte återkalla roll \"%1$s\" för användare #%2$d; finns inte." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "Kan inte återkalla roll \"%1$s\" för användare #%2$d; databasfel." @@ -5188,13 +5199,9 @@ msgstr "Kunde inte spara prenumeration." msgid "Could not delete subscription." msgstr "Kunde inte spara prenumeration." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5205,57 +5212,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kunde inte skapa grupp." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Kunde inte ställa in grupp-URI." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Kunde inte ställa in gruppmedlemskap." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Kunde inte spara lokal gruppinformation." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Ändra dina profilinställningar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Ladda upp en avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Ändra ditt lösenord" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Ändra e-posthantering" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Designa din profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Övriga alternativ" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Övrigt" @@ -5271,184 +5278,185 @@ msgid "Untitled page" msgstr "Namnlös sida" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Primär webbplatsnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personlig profil och vänners tidslinje" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personligt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändra din e-post, avatar, lösenord, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Anslut till tjänster" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Anslut" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ändra webbplatskonfiguration" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administratör" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjud in vänner och kollegor att gå med dig på %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Bjud in" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logga ut från webbplatsen" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Logga ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skapa ett konto" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrera" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logga in på webbplatsen" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Logga in" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjälp mig!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Hjälp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Sök efter personer eller text" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Sök" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Webbplatsnotis" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokala vyer" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sidnotis" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Sekundär webbplatsnavigation" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hjälp" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Om" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Frågor & svar" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Användarvillkor" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Sekretess" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Källa" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Emblem" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Programvarulicens för StatusNet" @@ -5456,7 +5464,7 @@ msgstr "Programvarulicens för StatusNet" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5466,7 +5474,7 @@ msgstr "" "%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** är en mikrobloggtjänst." @@ -5475,7 +5483,7 @@ msgstr "**%%site.name%%** är en mikrobloggtjänst." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5487,71 +5495,71 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licens för webbplatsinnehåll" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Innehåll och data av %1$s är privat och konfidensiell." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Innehåll och data copyright av %1$s. Alla rättigheter reserverade." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Innehåll och data på %1$s är tillgänglig under licensen %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Numrering av sidor" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Senare" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Tidigare" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Förväntade ett flödes rotelement, men fick ett helt XML-dokument." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Kan inte hantera fjärrinnehåll ännu." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Kan inte hantera inbäddat XML-innehåll ännu." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Kan inte hantera inbäddat Base64-innehåll ännu." @@ -5677,7 +5685,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5692,187 +5700,207 @@ msgid "Icon for this application" msgstr "Ikon för denna applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Beskriv din applikation med högst %d tecken" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beskriv din applikation med högst %d tecken" +msgstr[1] "Beskriv din applikation med högst %d tecken" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beskriv din applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL till hemsidan för denna applikation" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL för källa" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisation som ansvarar för denna applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL till organisationens hemsidan" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL att omdirigera till efter autentisering" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Webbläsare" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Skrivbord" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typ av applikation, webbläsare eller skrivbord" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Skrivskyddad" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Läs och skriv" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "läs och skriv" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "skrivskyddad" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Godkänd %1$s - \"%2$s\" åtkomst." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Återkalla" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Bilagor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Författare" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Tillhandahållare" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notiser där denna bilaga förekommer" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Taggar för denna billaga" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Byte av lösenord misslyckades" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Byte av lösenord är inte tillåtet" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blockera" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultat av kommando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "AJAX-fel" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Kommando komplett" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Kommando misslyckades" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Notis med den ID:n finns inte." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Användare har ingen sista notis." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Kunde inte hitta en användare med smeknamnet %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Kunde inte hitta en lokal användare med smeknamnet %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Tyvärr, detta kommando är inte implementerat än." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Det verkar inte vara särskilt meningsfullt att knuffa dig själv!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Knuff skickad till %s." @@ -5881,7 +5909,7 @@ msgstr "Knuff skickad till %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5893,52 +5921,53 @@ msgstr "" "Notiser: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Notis markerad som favorit." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s gick med i grupp %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s lämnade grupp %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullständigt namn: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Plats: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Hemsida: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Om: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5949,111 +5978,111 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Fel vid sändning av direktmeddelande." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Notis från %s upprepad." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Fel vid upprepning av notis." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Notis för långt - maximum är %1$d tecken, du skickade %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Svar på %s skickat." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Fel vid sparande av notis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Ange namnet på användaren att prenumerara på." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Kan inte prenumera på OMB-profiler via kommando." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Prenumererar på %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Ange namnet på användaren att avsluta prenumeration på." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Prenumeration på %s avslutad." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Kommando inte implementerat än." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notifikation av." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Kan inte sätta på notifikation." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notifikation på." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Kan inte stänga av notifikation." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Inloggningskommando är inaktiverat." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6061,20 +6090,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%ss prenumeration avslutad." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Du prenumererar inte på någon." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du prenumererar på denna person:" @@ -6082,14 +6111,14 @@ msgstr[1] "Du prenumererar på dessa personer:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Ingen prenumerar på dig." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Denna person prenumererar på dig:" @@ -6097,21 +6126,21 @@ msgstr[1] "Dessa personer prenumererar på dig:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Du är inte medlem i några grupper." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du är en medlem i denna grupp:" msgstr[1] "Du är en medlem i dessa grupper:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6191,39 +6220,61 @@ msgstr "" "tracks - inte implementerat än.\n" "tracking - inte implementerat än.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ingen konfigurationsfil hittades. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Jag letade efter konfigurationsfiler på följande platser: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Du kanske vill köra installeraren för att åtgärda detta." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Gå till installeraren." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Snabbmeddelande" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Uppdateringar via snabbmeddelande (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Uppdateringar via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Anslutningar" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Tillåt anslutna applikationer" @@ -6246,11 +6297,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Standardvärden för utseende återställda." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Avmarkera denna notis som favorit" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Markera denna notis som favorit" @@ -6270,7 +6321,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6802,7 +6853,7 @@ msgstr "" "engagera andra användare i konversationen. Folk kan skicka meddelanden till " "dig som bara du ser." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "från" @@ -6955,55 +7006,55 @@ msgstr "" "god försök igen senare" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "Ö" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "V" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "på" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "webb" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "i sammanhang" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Upprepad av" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Svara på denna notis" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Notis upprepad" @@ -7074,7 +7125,7 @@ msgid "Tags in %s's notices" msgstr "Taggar i %ss notiser" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Okänd" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 5ad2170d8f..88e383d20f 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:04+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:27+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" @@ -111,7 +111,7 @@ msgstr "అటువంటి పేజీ లేదు." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." @@ -349,7 +349,7 @@ msgid "This status is already a favorite." msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." @@ -462,18 +462,18 @@ msgid "Group not found." msgstr "గుంపు దొరకలేదు." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "నిర్వాహకులు ఆ గుంపు నుండి మిమ్మల్ని నిరోధించారు." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" @@ -485,7 +485,7 @@ msgstr "మీరు ఈ గుంపులో సభ్యులు కాద #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "వాడుకరి %1$sని %2$s గుంపు నుండి తొలగించలేకపోయాం." @@ -598,7 +598,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "ఖాతా" @@ -612,7 +612,7 @@ msgstr "పేరు" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "సంకేతపదం" @@ -642,12 +642,12 @@ msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." @@ -758,7 +758,7 @@ msgstr "తప్పుడు పరిమాణం." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "అవతారం" @@ -790,7 +790,7 @@ msgid "Preview" msgstr "మునుజూపు" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "తొలగించు" @@ -875,7 +875,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -894,8 +894,8 @@ msgstr "నిరోధపు సమాచారాన్ని భద్రప #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "అటువంటి గుంపు లేదు." @@ -1011,7 +1011,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1073,7 +1073,7 @@ msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించకు" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -1104,7 +1104,7 @@ msgstr "ఈ వాడుకరిని తొలగించు" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "రూపురేఖలు" @@ -1235,7 +1235,7 @@ msgstr "అప్రమేయాలని ఉపయోగించు" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "భద్రపరచు" @@ -1357,7 +1357,7 @@ msgid "Could not update group." msgstr "గుంపుని తాజాకరించలేకున్నాం." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "మారుపేర్లని సృష్టించలేకపోయాం." @@ -1413,7 +1413,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "రద్దుచేయి" @@ -1613,7 +1613,7 @@ msgstr "ఈమెయిలు చిరునామా లేదు." msgid "This notice is already a favorite!" msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor favorite" msgstr "ఇష్టాంశాలకు చేర్చు" @@ -1911,7 +1911,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s కాలరేఖ" @@ -2185,7 +2185,7 @@ msgstr "మీరు ఇప్పటికే ఈ వాడుకరులకు #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2313,7 +2313,7 @@ msgid "You must be logged in to leave a group." msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "మీరు ఆ గుంపులో సభ్యులు కాదు." @@ -2532,14 +2532,14 @@ msgid "New message" msgstr "కొత్త సందేశం" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "ఈ వాడుకరికి మీరు సందేశాన్ని పంపించలేరు." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "విషయం లేదు!" @@ -2548,7 +2548,7 @@ msgid "No recipient specified." msgstr "ఎవరికి పంపించాలో పేర్కొనలేదు." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "మీకు మీరే సందేశాన్ని పంపుకోకండి; దాని బదులు మీలో మీరే మెల్లగా చెప్పుకోండి." @@ -2559,12 +2559,12 @@ msgstr "సందేశాన్ని పంపించాం" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "%sకి నేరు సందేశాన్ని పంపించాం." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "అజాక్స్ పొరపాటు" @@ -2700,8 +2700,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "" @@ -3062,7 +3062,7 @@ msgstr "పూర్తి పేరు" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "హోమ్ పేజీ" @@ -3453,7 +3453,7 @@ msgstr "పై సంకేతపదం మరోసారి. తప్పన #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "ఈమెయిల్" @@ -3607,7 +3607,7 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి msgid "You already repeated that notice." msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 #, fuzzy msgid "Repeated" msgstr "సృష్టితం" @@ -3745,13 +3745,13 @@ msgid "Name" msgstr "పేరు" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "సంస్ధ" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "వివరణ" @@ -4530,7 +4530,7 @@ msgstr "%s ప్రస్తుతం ఎవరినీ వినడంలే msgid "Jabber" msgstr "జాబర్" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "" @@ -4653,7 +4653,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "ప్రొఫైలు" @@ -4839,7 +4839,7 @@ msgstr "[గుంపులని వెతికి](%%action.groupsearch%%) #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, fuzzy, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" @@ -4889,7 +4889,7 @@ msgid "Plugins" msgstr "ప్లగిన్లు" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "సంచిక" @@ -4897,29 +4897,25 @@ msgstr "సంచిక" msgid "Author(s)" msgstr "రచయిత(లు)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "ఇష్టపడు" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4928,20 +4924,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "తప్పుడు దస్త్రపుపేరు.." @@ -4960,13 +4956,28 @@ msgstr "గుంపులో భాగం కాదు." msgid "Group leave failed." msgstr "గుంపు నుండి వైదొలగడం విఫలమైంది." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "చేరు" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4989,18 +5000,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "నేరుగా సందేశాలు పంపడం నుండి మిమ్మల్ని నిషేధించారు." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 #, fuzzy msgid "Could not insert message." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." @@ -5054,33 +5065,33 @@ msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5132,13 +5143,9 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "Could not delete subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5149,58 +5156,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s, %1$sకి స్వాగతం!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "గుంపుని సృష్టించలేకపోయాం." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "గుంపుని సృష్టించలేకపోయాం." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 #, fuzzy msgid "Change your profile settings" msgstr "ఫ్రొఫైలు అమరికలని మార్చు" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "ఒక అవతారాన్ని ఎక్కించండి" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "మీ సంకేతపదాన్ని మార్చుకోండి" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "వాడుకరి ప్రొఫైలు" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "ఇతర ఎంపికలు" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "ఇతర" @@ -5216,185 +5223,186 @@ msgid "Untitled page" msgstr "శీర్షికలేని పేజీ" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "ప్రాధమిక సైటు మార్గదర్శిని" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "వ్యక్తిగత" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "అనుసంధానాలు" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "అనుసంధానించు" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "సైటు స్వరూపణాన్ని మార్చండి" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "నిర్వాహకులు" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "ఆహ్వానించు" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "సైటు నుండి నిష్క్రమించు" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "నిష్క్రమించు" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "ఖాతాని సృష్టించుకోండి" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "నమోదు" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "సైటు లోనికి ప్రవేశించండి" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "ప్రవేశించు" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "సహాయం కావాలి!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "సహాయం" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ప్రజలు లేదా పాఠ్యం కొరకు వెతకండి" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "వెతుకు" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "సైటు గమనిక" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "స్థానిక వీక్షణలు" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "పేజీ గమనిక" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "ద్వితీయ సైటు మార్గదర్శిని" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "సహాయం" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "గురించి" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ప్రశ్నలు" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "సేవా నియమాలు" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "అంతరంగికత" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "మూలము" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "సంప్రదించు" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "బాడ్జి" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" @@ -5402,7 +5410,7 @@ msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైస #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5412,7 +5420,7 @@ msgstr "" "అందిస్తున్న సూక్ష్మ బ్లాగింగు సేవ." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." @@ -5421,7 +5429,7 @@ msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగి #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5433,70 +5441,70 @@ msgstr "" "పై నడుస్తుంది." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "పేజీకరణ" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "తర్వాత" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "ఇంతక్రితం" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5624,7 +5632,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5639,192 +5647,211 @@ msgid "Icon for this application" msgstr "ఈ ఉపకరణానికి ప్రతీకం" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" +msgstr[1] "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "మీ ఉపకరణాన్ని వివరించండి" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "మూలము" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "ఈ ఉపకరణానికి బాధ్యతాయుతమైన సంస్థ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "విహారిణి" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "మేజోపరి" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "ఉపకరణ రకం, విహారిణి లేదా మేజోపరి" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "చదవడం-మాత్రమే" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "చదవడం-వ్రాయడం" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "రద్దుచేయి" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "చదవడం-వ్రాయడం" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "చదవడం-మాత్రమే" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "తొలగించు" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "జోడింపులు" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "రచయిత" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "మునుజూపు" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "అటువంటి జోడింపు లేదు." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "సంకేతపదం మార్పు విఫలమైంది" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "సంకేతపదం మార్పు" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "నిరోధించు" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "ఆదేశ ఫలితాలు" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "అజాక్స్ పొరపాటు" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "ఆదేశం పూర్తయ్యింది" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "ఆదేశం విఫలమైంది" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "క్షమించండి, ఈ ఆదేశం ఇంకా అమలుపరచబడలేదు." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5833,7 +5860,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5845,52 +5872,53 @@ msgstr "" "నోటీసులు: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "నోటీసుని ఇష్టాంశంగా గుర్తించాం." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "పూర్తిపేరు: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "ప్రాంతం: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "హోంపేజీ: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "గురించి: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5899,136 +5927,136 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 #, fuzzy msgid "Error sending direct message." msgstr "నేరుగా సందేశాలు పంపడం నుండి మిమ్మల్ని నిషేధించారు." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "సందేశాలు" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "నోటీసుని పునరావృతించడంలో పొరపాటు." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "%sకి స్పందనలు" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "ఏవరికి చందా చేరాలనుకుంటున్నారో ఆ వాడుకరి పేరుని ఇవ్వండి." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "%sకి చందా చేరారు." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "ఎవరినుండైతే చందావిరమించాలనుకుంటున్నారో ఆ వాడుకరి పేరుని ఇవ్వండి." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "క్షమించండి, ఈ ఆదేశం ఇంకా అమలుపరచబడలేదు." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "నిర్ధారణ సంకేతం లేదు." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "నిర్ధారణ సంకేతం లేదు." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 #, fuzzy msgid "Can't turn on notification." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "మీరు ఎవరికీ చందాచేరలేదు." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "%sకి స్పందనలు" @@ -6036,14 +6064,14 @@ msgstr[1] "%sకి స్పందనలు" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "మీకు చందాదార్లు ఎవరూ లేరు." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "%sకి స్పందనలు" @@ -6051,21 +6079,21 @@ msgstr[1] "%sకి స్పందనలు" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "మీరు ఏ గుంపులోనూ సభ్యులు కాదు." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6107,40 +6135,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "స్వరూపణపు దస్త్రమేమీ కనబడలేదు. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "స్వరూపణపు దస్త్రాల కొరకు ఈ ప్రదేశాలతో చూసాం: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "సైటు లోనికి ప్రవేశించండి" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SSLని ఉపయోగించు" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "అనుసంధానాలు" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "అధీకృత అనుసంధాన ఉపకరణాలు" @@ -6161,12 +6210,12 @@ msgstr "మీ వ్యక్తిగత నేపథ్యపు చిత్ msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor this notice" msgstr "ఈ నోటీసుని తొలగించు" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "ఈ నోటీసుని పునరావృతించు" @@ -6186,7 +6235,7 @@ msgstr "ఆటమ్" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6707,7 +6756,7 @@ msgstr "" "మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు " "పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "నుండి" @@ -6857,55 +6906,55 @@ msgstr "" "కాసేపాగి ప్రయత్నించండి" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "ఉ" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ద" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "తూ" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "ప" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "ప్రాంతం" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "జాలం" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "సందర్భంలో" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "%s యొక్క పునరావృతం" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "ఈ నోటీసుపై స్పందించండి" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "స్పందించండి" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "నోటీసుని పునరావృతించారు" @@ -6979,7 +7028,7 @@ msgid "Tags in %s's notices" msgstr "" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "తెలియని చర్య" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index d262c92b3d..4f5e88c692 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:05+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:29+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Erişim ayarlarını kaydet" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Kaydet" @@ -113,7 +113,7 @@ msgstr "Böyle bir kullanıcı yok." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Böyle bir kullanıcı yok." @@ -351,7 +351,7 @@ msgid "This status is already a favorite." msgstr "Bu durum mesajı zaten bir favori." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Favori oluşturulamadı." @@ -466,18 +466,18 @@ msgid "Group not found." msgstr "Onay kodu bulunamadı." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Bize o profili yollamadınız" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Bu gruptan yönetici tarafından engellendiniz." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Sunucuya yönlendirme yapılamadı: %s" @@ -489,7 +489,7 @@ msgstr "Bu grubun bir üyesi değilsiniz." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "%1$s kullanıcısı, %2$s grubundan silinemedi." @@ -604,7 +604,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Hesap" @@ -618,7 +618,7 @@ msgstr "Takma ad" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Parola" @@ -648,12 +648,12 @@ msgid "No such notice." msgstr "Böyle bir durum mesajı yok." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kendi durum mesajınızı tekrarlayamazsınız." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Bu durum mesajı zaten tekrarlanmış." @@ -764,7 +764,7 @@ msgstr "Geçersiz büyüklük." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -797,7 +797,7 @@ msgid "Preview" msgstr "Önizleme" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Sil" @@ -884,7 +884,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bu kullanıcıyı engelle" @@ -903,8 +903,8 @@ msgstr "Engelleme bilgisinin kaydedilmesi başarısızlığa uğradı." #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Böyle bir kullanıcı yok." @@ -1020,7 +1020,7 @@ msgstr "Bu uygulamanın sahibi değilsiniz." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1085,7 +1085,7 @@ msgid "Do not delete this notice" msgstr "Bu durum mesajını silme" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Bu durum mesajını sil" @@ -1116,7 +1116,7 @@ msgstr "Bu kullanıcıyı sil" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Dizayn" @@ -1244,7 +1244,7 @@ msgstr "Öntanımlıya geri dön" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Kaydet" @@ -1364,7 +1364,7 @@ msgid "Could not update group." msgstr "Grup güncellenemedi." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kullanıcı güncellenemedi." @@ -1420,7 +1420,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "İptal" @@ -1624,7 +1624,7 @@ msgstr "Yeni gelen e-posta adresi eklendi." msgid "This notice is already a favorite!" msgstr "Bu durum mesajı zaten bir favori!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Favoriliğini kaldır" @@ -1933,7 +1933,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, fuzzy, php-format msgid "%s timeline" msgstr "Genel zaman çizgisi" @@ -2217,7 +2217,7 @@ msgstr "Bize o profili yollamadınız" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2324,7 +2324,7 @@ msgid "You must be logged in to leave a group." msgstr "" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 #, fuzzy msgid "You are not a member of that group." msgstr "Bize o profili yollamadınız" @@ -2552,15 +2552,15 @@ msgid "New message" msgstr "" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 #, fuzzy msgid "You can't send a message to this user." msgstr "Bize o profili yollamadınız" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "İçerik yok!" @@ -2569,7 +2569,7 @@ msgid "No recipient specified." msgstr "" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2580,12 +2580,12 @@ msgstr "" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "" @@ -2718,8 +2718,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 #, fuzzy msgid "Not a supported data format." msgstr "Desteklenmeyen görüntü dosyası biçemi." @@ -3091,7 +3091,7 @@ msgstr "Tam İsim" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Başlangıç Sayfası" @@ -3489,7 +3489,7 @@ msgstr "yukarıdaki parolanın aynısı" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Eposta" @@ -3632,7 +3632,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "You already repeated that notice." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Sıfırla" @@ -3769,14 +3769,14 @@ msgid "Name" msgstr "Takma ad" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Yer" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Abonelikler" @@ -4546,7 +4546,7 @@ msgstr "%1$s %2$s'da durumunuzu takip ediyor" msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "" @@ -4672,7 +4672,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4864,7 +4864,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4913,7 +4913,7 @@ msgid "Plugins" msgstr "Eklentiler" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Sürüm" @@ -4921,29 +4921,25 @@ msgstr "Sürüm" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4952,20 +4948,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Geçersiz dosya ismi." @@ -4987,14 +4983,29 @@ msgstr "Kullanıcı güncellenemedi." msgid "Group leave failed." msgstr "Böyle bir durum mesajı yok." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 #, fuzzy msgid "Join" msgstr "Giriş" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5018,18 +5029,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 #, fuzzy msgid "Could not insert message." msgstr "Yeni abonelik eklenemedi." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "Kullanıcı güncellenemedi." @@ -5084,33 +5095,33 @@ msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluştu." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5165,13 +5176,9 @@ msgstr "Yeni abonelik eklenemedi." msgid "Could not delete subscription." msgstr "Yeni abonelik eklenemedi." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5182,61 +5189,61 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kullanıcı güncellenemedi." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Profil kaydedilemedi." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Kullanıcı güncellenemedi." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Profil kaydedilemedi." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 #, fuzzy msgid "Change your profile settings" msgstr "Profil ayarları" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 #, fuzzy msgid "Upload an avatar" msgstr "Avatar güncellemede hata." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 #, fuzzy msgid "Change your password" msgstr "Parolayı değiştir" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Kullanıcının profili yok." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "" @@ -5252,190 +5259,191 @@ msgid "Untitled page" msgstr "" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Kişisel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "E-postanızı, kullanıcı resminizi, parolanızı, profilinizi değiştirin" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Bağlan" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Site yapılandırmasını değiştir" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Davet et" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Çıkış" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Bir hesap oluştur" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Kayıt" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Siteye giriş" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Giriş" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Bana yardım et!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Yardım" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Kişi ya da yazılar için arama yap" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Ara" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Yardım" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Hakkında" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "SSS" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Gizlilik" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Kaynak" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "İletişim" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet yazılım lisansı" @@ -5443,7 +5451,7 @@ msgstr "StatusNet yazılım lisansı" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5453,7 +5461,7 @@ msgstr "" "hazırlanan anında mesajlaşma ağıdır. " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." @@ -5462,7 +5470,7 @@ msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5474,70 +5482,70 @@ msgstr "" "microbloglama yazılımının %s. versiyonunu kullanmaktadır." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Site içeriği lisansı" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Sonra" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Önce" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5664,7 +5672,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5679,195 +5687,211 @@ msgid "Icon for this application" msgstr "Bu uygulama için simge" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 #, fuzzy msgid "Describe your application" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Kaynak" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Tarayıcı" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "İptal et" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Geri al" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Sağlayıcı" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Parola kaydedildi." -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Parola kaydedildi." #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Engelle" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +msgid "AJAX error" +msgstr "" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Kullanıcının profili yok." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Kullanıcı güncellenemedi." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5876,7 +5900,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5885,52 +5909,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Tam İsim: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Yer: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, fuzzy, php-format msgid "Homepage: %s" msgstr "Başlangıç Sayfası" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Hakkında: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5939,129 +5964,129 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 #, fuzzy msgid "Error sending direct message." msgstr "Kullanıcı ayarlamada hata oluştu." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Durum mesajları" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Kullanıcı ayarlamada hata oluştu." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "%s için cevaplar" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Durum mesajını kaydederken hata oluştu." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Bize o profili yollamadınız" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "Onay kodu yok." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "Onay kodu yok." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Bize o profili yollamadınız" @@ -6069,14 +6094,14 @@ msgstr "Bize o profili yollamadınız" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Bize o profili yollamadınız" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Uzaktan abonelik" @@ -6084,14 +6109,14 @@ msgstr "Uzaktan abonelik" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Uzaktan abonelik" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Bize o profili yollamadınız" @@ -6099,13 +6124,13 @@ msgstr "Bize o profili yollamadınız" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bize o profili yollamadınız" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6147,41 +6172,60 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Onay kodu yok." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +msgctxt "MENU" +msgid "SMS" +msgstr "" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Bağlan" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6205,11 +6249,11 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 #, fuzzy msgid "Favor this notice" msgstr "Böyle bir durum mesajı yok." @@ -6230,7 +6274,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6676,7 +6720,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "" @@ -6830,57 +6874,57 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "K" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "G" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "D" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "B" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "İçerik yok!" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Yarat" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Cevaplar" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Durum mesajları" @@ -6952,7 +6996,7 @@ msgid "Tags in %s's notices" msgstr "" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 73c7a91b71..f67f06333b 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-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:06+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -85,7 +85,7 @@ msgstr "Зберегти параметри доступу" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -116,7 +116,7 @@ msgstr "Немає такої сторінки." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Такого користувача немає." @@ -168,8 +168,8 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -"Спробуйте до когось підписатись, [приєднатись до групи](%%action.groups%%) " -"або напишіть щось самі." +"Спробуйте до когось підписатись, приєднатись [до спільноти](%%action.groups%" +"%) або напишіть щось самі." #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" #: actions/all.php:146 @@ -296,7 +296,7 @@ msgstr "Не маю можливості зберегти налаштуванн #: actions/apiaccountupdateprofilebackgroundimage.php:188 #: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." -msgstr "Не вдалося оновити Ваш дизайн." +msgstr "Не вдалося оновити ваш дизайн." #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" @@ -346,7 +346,7 @@ msgstr "Отримувача не знайдено." #: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"Не можна надіслати пряме повідомлення користувачеві, який не є Вашим другом." +"Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 @@ -358,7 +358,7 @@ msgid "This status is already a favorite." msgstr "Цей статус вже є обраним." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Не можна позначити як обране." @@ -377,7 +377,7 @@ msgstr "Не вдалося додати користувача: користу #: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "Не вдалося додати користувача: %s вже присутній у Вашому списку." +msgstr "Не вдалося додати користувача: %s вже присутній у вашому списку." #: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." @@ -470,60 +470,60 @@ msgstr "Додаткове ім’я не може бути таким сами #: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." -msgstr "Групу не знайдено." +msgstr "Спільноту не знайдено." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." -msgstr "Ви вже є учасником цієї групи." +msgstr "Ви вже стоїте у цій спільноти." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." -msgstr "Адмін цієї групи заблокував Вашу присутність в ній." +msgstr "Адміністратор спільноти заблокував ваш профіль." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "Не вдалось долучити користувача %1$s до групи %2$s." +msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s." #: actions/apigroupleave.php:116 msgid "You are not a member of this group." -msgstr "Ви не є учасником цієї групи." +msgstr "Ви не стоїте у цій спільноті." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "Не вдалось видалити користувача %1$s з групи %2$s." +msgstr "Не вдалось видалити користувача %1$s зі спільноти %2$s." #. TRANS: %s is a user name #: actions/apigrouplist.php:98 #, php-format msgid "%s's groups" -msgstr "%s групи" +msgstr "Спільноти %s" #. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s #: actions/apigrouplist.php:108 #, php-format msgid "%1$s groups %2$s is a member of." -msgstr "%1$s групи, в яких %2$s бере участь." +msgstr "Спільноти на %1$s, до яких долучився %2$s." #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 #, php-format msgid "%s groups" -msgstr "%s групи" +msgstr "Спільноти %s" #: actions/apigrouplistall.php:96 #, php-format msgid "groups on %s" -msgstr "групи на %s" +msgstr "спільноти на %s" #: actions/apimediaupload.php:100 msgid "Upload failed." @@ -596,7 +596,7 @@ msgstr "Несподіване представлення форми." #: actions/apioauthauthorize.php:259 msgid "An application would like to connect to your account" -msgstr "Запит на дозвіл під’єднатися до Вашого облікового запису" +msgstr "Запит на дозвіл під’єднатися до вашого облікового запису" #: actions/apioauthauthorize.php:276 msgid "Allow or deny access" @@ -609,13 +609,13 @@ msgid "" "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 "" -"Додаток %1$s від %2$s запитує дозвіл на " -"%3$s дані Вашого акаунту %4$s. Ви повинні надавати дозвіл " -"на доступ до Вашого акаунту %4$s лише тим стороннім додаткам, яким Ви " +"Додаток %1$s від %2$s запитує дозвіл на " +"%3$s дані вашого акаунту %4$s. Ви повинні надавати дозвіл " +"на доступ до вашого акаунту %4$s лише тим стороннім додаткам, яким ви " "довіряєте." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Акаунт" @@ -629,7 +629,7 @@ msgstr "Ім’я користувача" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -643,7 +643,7 @@ msgstr "Дозволити" #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." -msgstr "Дозволити або заборонити доступ до Вашого облікового запису." +msgstr "Дозволити або заборонити доступ до вашого облікового запису." #: actions/apistatusesdestroy.php:112 msgid "This method requires a POST or DELETE." @@ -659,12 +659,12 @@ msgid "No such notice." msgstr "Такого допису немає." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." -msgstr "Не можу повторити Ваш власний допис." +msgstr "Не можна повторювати власні дописи." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Цей допис вже повторено." @@ -776,7 +776,7 @@ msgstr "Недійсний розмір." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватара" @@ -807,7 +807,7 @@ msgid "Preview" msgstr "Перегляд" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Видалити" @@ -825,11 +825,11 @@ msgstr "Жодного файлу не завантажено." #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" -msgstr "Оберіть квадратну ділянку зображення, яка й буде Вашою автарою." +msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." #: actions/avatarsettings.php:347 actions/grouplogo.php:380 msgid "Lost our file data." -msgstr "Дані Вашого файлу десь загубились." +msgstr "Дані вашого файлу загублено." #: actions/avatarsettings.php:370 msgid "Avatar updated." @@ -858,8 +858,8 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" "Впевнені, що бажаєте блокувати цього користувача? Позаяк, його буде " -"відписано від Вас, він не зможе підписатись до Вас у майбутньому і Ви більше " -"не отримуватимете жодних дописів від нього." +"відписано від вас, він не зможе підписатись до вас у майбутньому і ви більше " +"не отримуватимете жодних звісток від нього." #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -893,7 +893,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Блокувати користувача" @@ -912,10 +912,10 @@ msgstr "Збереження інформації про блокування з #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." -msgstr "Такої групи немає." +msgstr "Такої спільноти не існує." #: actions/blockedfromgroup.php:97 #, php-format @@ -929,7 +929,7 @@ msgstr "Заблоковані профілі %1$s, сторінка %2$d" #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." -msgstr "Список користувачів блокованих в цій групі." +msgstr "Список користувачів, котрих заблоковано в цій спільноті." #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" @@ -961,7 +961,7 @@ msgstr "Код підтвердження не знайдено." #: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" -msgstr "Цей код підтвердження не для Вас!" +msgstr "Цей код підтвердження не для вас!" #. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. #: actions/confirmaddress.php:91 @@ -1002,7 +1002,7 @@ msgstr "Підтвердити адресу" #: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "Адресу «%s» підтверджено для Вашого акаунту." +msgstr "Адресу «%s» підтверджено для вашого акаунту." #: actions/conversation.php:99 msgid "Conversation" @@ -1029,7 +1029,7 @@ msgstr "Ви не є власником цього додатку." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1092,7 +1092,7 @@ msgid "Do not delete this notice" msgstr "Не видаляти цей допис" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Видалити допис" @@ -1123,7 +1123,7 @@ msgstr "Видалити цього користувача" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Дизайн" @@ -1214,7 +1214,7 @@ msgstr "Зміст" #: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" -msgstr "Бічна панель" +msgstr "Сайдбар" #: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" @@ -1251,7 +1251,7 @@ msgstr "Повернутись до початкових налаштувань" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Зберегти" @@ -1341,20 +1341,22 @@ msgstr "Не вдалося оновити додаток." #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" -msgstr "Редагувати групу %s" +msgstr "Змінити властивості спільноти %s" #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." -msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." +msgstr "Ви маєте спочатку увійти, аби мати змогу започаткувати спільноту." #: actions/editgroup.php:107 actions/editgroup.php:172 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." -msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" +msgstr "" +"Ви маєте бути наділені правами адміністратора, аби відредагувати властивості " +"даної спільноти." #: actions/editgroup.php:158 msgid "Use this form to edit the group." -msgstr "Скористайтесь цією формою, щоб відредагувати групу." +msgstr "Скористайтесь цією формою, щоб відредагувати властивості спільноти." #: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format @@ -1368,10 +1370,10 @@ msgstr "Помилкове додаткове ім’я: «%s»" #: actions/editgroup.php:258 msgid "Could not update group." -msgstr "Не вдалося оновити групу." +msgstr "Не вдалося оновити спільноту." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Неможна призначити додаткові імена." @@ -1389,7 +1391,7 @@ msgstr "Налаштування пошти" #: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "Зазначте, як саме Ви бажаєте отримувати листи з %%site.name%%." +msgstr "Зазначте, як саме ви бажаєте отримувати листи з %%site.name%%." #. TRANS: Form legend for e-mail settings form. #. TRANS: Field label for e-mail address input in e-mail settings form. @@ -1427,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Скасувати" @@ -1539,7 +1541,7 @@ msgstr "Це недійсна електронна адреса." #. TRANS: Message given saving e-mail address that is already set. #: actions/emailsettings.php:374 msgid "That is already your email address." -msgstr "Це і є Вашою адресою." +msgstr "Це і є вашою адресою." #. TRANS: Message given saving e-mail address that is already set for another user. #: actions/emailsettings.php:378 @@ -1560,7 +1562,7 @@ msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" -"Код підтвердження був відправлений на електронну адресу, яку Ви додали. " +"Код підтвердження був відправлений на електронну адресу, яку ви зазначили. " "Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та " "подальші інструкції." @@ -1586,7 +1588,7 @@ msgstr "Підтвердження електронної пошти скасо #. TRANS: registered for the active user. #: actions/emailsettings.php:462 msgid "That is not your email address." -msgstr "Це не є Вашою адресою." +msgstr "Це не є вашою адресою." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:483 @@ -1618,7 +1620,7 @@ msgstr "Нову адресу для вхідних повідомлень до msgid "This notice is already a favorite!" msgstr "Цей допис вже є обраним!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Видалити з обраних" @@ -1705,7 +1707,7 @@ msgstr "Ця відповідь не очікується!" #: actions/finishremotesubscribe.php:80 msgid "User being listened to does not exist." -msgstr "Користувача, який слідкував за Вашими повідомленнями, більше не існує." +msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує." #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" @@ -1713,7 +1715,7 @@ msgstr "Ви можете користуватись локальними під #: actions/finishremotesubscribe.php:99 msgid "That user has blocked you from subscribing." -msgstr "Цей користувач заблокував Вашу можливість підписатись." +msgstr "Цей користувач позбавив вас можливості підписатись до нього." #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." @@ -1770,23 +1772,23 @@ msgstr "Не визначено профілю з таким ID." #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." -msgstr "Групу не визначено." +msgstr "Спільноту не визначено." #: actions/groupblock.php:91 msgid "Only an admin can block group members." -msgstr "Лише адмін групи має змогу блокувати користувачів." +msgstr "Лише адміністратор спільноти має змогу блокувати користувачів." #: actions/groupblock.php:95 msgid "User is already blocked from group." -msgstr "Користувача заблоковано в цій групі." +msgstr "Користувача заблоковано в цій спільноті." #: actions/groupblock.php:100 msgid "User is not a member of group." -msgstr "Користувач не є учасником групи." +msgstr "Користувач не є учасником спільноти." #: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" -msgstr "Блокувати користувача в групі" +msgstr "Блокувати користувача у цій спільноті" #: actions/groupblock.php:160 #, php-format @@ -1795,23 +1797,23 @@ msgid "" "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" -"Впевнені, що бажаєте блокувати користувача «%1$s» у групі «%2$s»? Його буде " -"позбавлено членства в групі, він не зможе сюди писати, і не зможе вступити " -"до групи знов." +"Впевнені, що бажаєте заблокувати користувача «%1$s» у спільноті «%2$s»? Його " +"буде позбавлено членства, він не зможе сюди писати, і не зможе вступити до " +"спільноти знов." #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:182 msgid "Do not block this user from this group" -msgstr "Не блокувати користувача в групі" +msgstr "Не блокувати користувача в спільноті" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 msgid "Block this user from this group" -msgstr "Блокувати користувача цієї групи" +msgstr "Заблокувати користувача в спільноті" #: actions/groupblock.php:206 msgid "Database error blocking user from group." -msgstr "Виникла помилка при блокуванні користувача в цій групі." +msgstr "Виникла помилка при блокуванні користувача в цій спільноті." #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." @@ -1819,19 +1821,20 @@ msgstr "Немає ID." #: actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." -msgstr "Ви маєте спочатку увійти, аби мати змогу редагувати групу." +msgstr "" +"Ви маєте спочатку увійти, аби мати змогу відредагувати властивості спільноти." #: actions/groupdesignsettings.php:144 msgid "Group design" -msgstr "Дизайн групи" +msgstr "Дизайн спільноти" #: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -"Налаштуйте вигляд сторінки групи, використовуючи фонове зображення і кольори " -"на свій смак." +"Налаштуйте вигляд сторінки спільноти, використовуючи фонове зображення і " +"кольори на свій смак." #: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 @@ -1844,19 +1847,19 @@ msgstr "Преференції дизайну збережно." #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" -msgstr "Логотип групи" +msgstr "Логотип спільноти" #: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -"Ви маєте можливість завантажити логотип для Вашої группи. Максимальний " -"розмір файлу %s." +"Ви маєте можливість завантажити логотип для вашої спільноти. Максимальний " +"розмір файлу становить %s." #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." -msgstr "Оберіть квадратну ділянку зображення, яка й буде логотипом групи." +msgstr "Оберіть квадратну ділянку зображення, яка й буде логотипом спільноти." #: actions/grouplogo.php:399 msgid "Logo updated." @@ -1871,18 +1874,18 @@ msgstr "Оновлення логотипу завершилось невдач #: actions/groupmembers.php:102 #, php-format msgid "%s group members" -msgstr "Учасники групи %s" +msgstr "Учасники спільноти %s" #. TRANS: Title of the page showing group members. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. #: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" -msgstr "Учасники групи %1$s, сторінка %2$d" +msgstr "Учасники спільноти %1$s, сторінка %2$d" #: actions/groupmembers.php:122 msgid "A list of the users in this group." -msgstr "Список учасників цієї групи." +msgstr "Список учасників цієї спільноти." #: actions/groupmembers.php:186 msgid "Admin" @@ -1920,7 +1923,7 @@ msgstr "Надати цьому користувачеві права адмін #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s стрічка" @@ -1934,12 +1937,12 @@ msgstr "Оновлення членів %1$s на %2$s!" #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" -msgstr "Групи" +msgstr "Спільноти" #: actions/groups.php:64 #, php-format msgid "Groups, page %d" -msgstr "Групи, сторінка %d" +msgstr "Спільноти, сторінка %d" #: actions/groups.php:90 #, php-format @@ -1950,15 +1953,15 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" msgstr "" -"Групи на сайті %%%%site.name%%%% дозволять Вам відшукати людей зі спільними " -"інтересами. Лише приєднайтеся до групи і надсилайте повідомлення до усіх її " -"учасників використовуючи просту команду «!groupname» у тексті повідомлення. " -"Не бачите групу, яка Вас цікавить? Спробуйте її [знайти](%%%%action." -"groupsearch%%%%) або [створіть власну!](%%%%action.newgroup%%%%)" +"Спільноти на сайті %%%%site.name%%%% дозволять вам відшукати людей зі " +"схожими інтересами. Лише приєднайтеся до спільноти і надсилайте повідомлення " +"до усіх її учасників використовуючи просту команду «!groupname» у тексті " +"повідомлення. Не бачите спільноту, яка вас цікавить? Спробуйте її [знайти](%%" +"%%action.groupsearch%%%%) або [створіть власну!](%%%%action.newgroup%%%%)" #: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" -msgstr "Створити нову групу" +msgstr "Створити нову спільноту" #: actions/groupsearch.php:52 #, php-format @@ -1966,13 +1969,13 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Пошук груп на %%site.name%% за їхньою назвою, розташуванням або описом. " +"Пошук спільнот на %%site.name%% за їхньою назвою, розташуванням або описом. " "Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " "або більше." #: actions/groupsearch.php:58 msgid "Group search" -msgstr "Пошук груп" +msgstr "Пошук спільнот" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 @@ -1985,7 +1988,7 @@ msgid "" "If you can't find the group you're looking for, you can [create it](%%action." "newgroup%%) yourself." msgstr "" -"Якщо не можете відшукати групу, яка Вас цікавить, то [створіть](%%action." +"Якщо не можете відшукати спільноту, яка вас цікавить, то [створіть](%%action." "newgroup%%) власну." #: actions/groupsearch.php:85 @@ -1994,12 +1997,12 @@ msgid "" "Why not [register an account](%%action.register%%) and [create the group](%%" "action.newgroup%%) yourself!" msgstr "" -"Чому б не [зареєструватись](%%action.register%%) і не [створити](%%action." -"newgroup%%) свою власну групу!" +"Чому б не [зареєструватись](%%action.register%%) і не [започаткувати](%%" +"action.newgroup%%) свою власну спільноту!" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." -msgstr "Лише адміни можуть розблокувати членів групи." +msgstr "Лише адміністратори можуть розблокувати учасників спільноти." #: actions/groupunblock.php:95 msgid "User is not blocked from group." @@ -2051,7 +2054,7 @@ msgid "" msgstr "" "Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk акаунт, " "туди має надійти повідомлення з подальшими інструкціями. (Ви додали %s до " -"Вашого списку контактів?)" +"вашого списку контактів?)" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. @@ -2118,7 +2121,7 @@ msgstr "Це недійсний Jabber ID" #. TRANS: Message given saving IM address that is already set. #: actions/imsettings.php:329 msgid "That is already your Jabber ID." -msgstr "Це і є Ваш Jabber ID." +msgstr "Це і є ваш Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. #: actions/imsettings.php:333 @@ -2133,8 +2136,8 @@ msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "" -"Код підтвердження був відправлений на адресу IM, яку Ви додали. Ви повинні " -"затведити %s для відправлення вам повідомлень." +"Код підтвердження був відправлений на адресу IM, яку ви зазначили. Ви " +"повинні затвердити %s для відправлення вам повідомлень." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. #: actions/imsettings.php:391 @@ -2155,7 +2158,7 @@ msgstr "Підтвердження ІМ скасовано." #. TRANS: registered for the active user. #: actions/imsettings.php:427 msgid "That is not your Jabber ID." -msgstr "Це не Ваш Jabber ID." +msgstr "Це не ваш Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:450 @@ -2175,7 +2178,7 @@ msgstr "Вхідні для %s" #: actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." msgstr "" -"Це Ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." +"Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." #: actions/invite.php:39 msgid "Invites have been disabled." @@ -2205,7 +2208,7 @@ msgstr "Ви вже підписані до цих користувачів:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2213,7 +2216,7 @@ msgstr "%1$s (%2$s)" #: actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" -msgstr "Ці люди вже є користувачами і Вас було автоматично підписано до них:" +msgstr "Ці люди вже є користувачами і вас було автоматично підписано до них:" #: actions/invite.php:144 msgid "Invitation(s) sent to the following people:" @@ -2224,14 +2227,14 @@ msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -"Вас буде поінформовано, коли запрошені Вами особи погодяться з запрошеннями " +"Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями " "і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" #: actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -"Скористайтесь цією формою аби запросити Ваших друзів та колег до нашого " +"Скористайтесь цією формою, аби запросити ваших друзів та колег до нашого " "сервісу." #: actions/invite.php:187 @@ -2261,7 +2264,7 @@ msgstr "Надіслати" #: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s запросив(ла) Вас приєднатися до нього(неї) на %2$s" +msgstr "%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s" #. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:231 @@ -2294,12 +2297,12 @@ msgid "" "\n" "Sincerely, %2$s\n" msgstr "" -"%1$s запросив(ла) Вас приєднатися до нього(неї) на %2$s (%3$s).\n" +"%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s (%3$s).\n" "\n" -"%2$s — це сервіс мікроблоґів що дозволяє Вам знаходитись у курсі подій, які " -"відбуваються з Вашими знайомими і тими особами, якими Ви цікавитесь.\n" +"%2$s — це сервіс мікроблоґів що дозволяє вам знаходитись у курсі подій, які " +"відбуваються з вашими знайомими і тими особами, якими ви цікавитесь.\n" "\n" -"Також Ви маєте можливість ділитись новинами про себе, своїми думками, " +"Також ви маєте можливість ділитись новинами про себе, своїми думками, " "подіями у житті, розміщуючи все це у режимі «онлайн» для своїх знайомих та " "друзів. А ще це чудовий спосіб зустріти нових друзів зі спільними " "інтересами.\n" @@ -2312,7 +2315,7 @@ msgstr "" "\n" "%5$s\n" "\n" -"Якщо Ви виявили бажання спробувати користуватись даним сервісом, то " +"Якщо ви виявили бажання спробувати користуватись даним сервісом, то " "перейдіть за посиланням внизу, аби погодитись із запрошенням.\n" "\n" "%6$s\n" @@ -2320,11 +2323,11 @@ msgstr "" "Якщо ж ні, то просто проігноруйте це повідомлення. Дякуємо за розуміння та " "витрачений час.\n" "\n" -"Щиро Ваші, %2$s\n" +"Щиро ваші, %2$s\n" #: actions/joingroup.php:60 msgid "You must be logged in to join a group." -msgstr "Ви повинні спочатку увійти на сайт, аби приєднатися до групи." +msgstr "Ви повинні спочатку увійти на сайт, аби долучитися до спільноти." #: actions/joingroup.php:88 actions/leavegroup.php:88 msgid "No nickname or ID." @@ -2333,21 +2336,21 @@ msgstr "Немає імені або ІД." #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" -msgstr "%1$s приєднався до групи %2$s" +msgstr "%1$s приєднався до спільноти %2$s" #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." -msgstr "Ви повинні спочатку увійти на сайт, аби залишити групу." +msgstr "Ви повинні спочатку увійти на сайт, аби залишити спільноту." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." -msgstr "Ви не є учасником цієї групи." +msgstr "Ви не є учасником цієї спільноти." #: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" -msgstr "%1$s залишив групу %2$s" +msgstr "%1$s залишив спільноту %2$s" #. TRANS: User admin panel title #: actions/licenseadminpanel.php:56 @@ -2457,7 +2460,7 @@ msgstr "Зберегти налаштування ліцензії" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." -msgstr "Тепер Ви увійшли." +msgstr "Тепер ви увійшли." #: actions/login.php:148 msgid "Incorrect username or password." @@ -2465,7 +2468,7 @@ msgstr "Неточне ім’я або пароль." #: actions/login.php:154 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." -msgstr "Помилка. Можливо, Ви не авторизовані." +msgstr "Помилка. Можливо, ви не авторизовані." #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" @@ -2512,22 +2515,24 @@ msgstr "" #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -"Лише користувач з правами адміністратора може призначити інших адмінів групи." +"Лише користувач з правами адміністратора може призначати інших " +"адміністраторів спільноти." #: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "%1$s вже є адміном у групі «%2$s»." +msgstr "%1$s вже є адміністратором спільноти «%2$s»." #: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "Не можна отримати запис для %1$s щодо членства у групі %2$s." +msgstr "" +"Не можна отримати запис для %1$s щодо його перебування у спільноті %2$s." #: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "Не можна надати %1$s права адміна в групі %2$s." +msgstr "Не можна надати %1$s права адміністратора у спільноті %2$s." #: actions/microsummary.php:69 msgid "No current status." @@ -2555,25 +2560,25 @@ msgstr "Не вдалося створити додаток." #: actions/newgroup.php:53 msgid "New group" -msgstr "Нова група" +msgstr "Нова спільнота" #: actions/newgroup.php:110 msgid "Use this form to create a new group." -msgstr "Скористайтесь цією формою для створення нової групи." +msgstr "Скористайтесь цією формою для створення нової спільноти." #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Нове повідомлення" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Ви не можете надіслати повідомлення цьому користувачеві." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Немає змісту!" @@ -2582,7 +2587,7 @@ msgid "No recipient specified." msgstr "Жодного отримувача не визначено." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2594,12 +2599,12 @@ msgstr "Повідомлення надіслано" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Пряме повідомлення для %s надіслано." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Помилка в Ajax" @@ -2627,7 +2632,7 @@ msgstr "Пошук текстів" #: actions/noticesearch.php:91 #, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Результати пошуку на запит «%1$s» на %2$s" +msgstr "Результати пошуку «%1$s» на сайті %2$s" #: actions/noticesearch.php:121 #, php-format @@ -2674,7 +2679,7 @@ msgstr "Спробу «розштовхати» зараховано!" #: actions/oauthappssettings.php:59 msgid "You must be logged in to list your applications." -msgstr "Ви повинні увійти, аби переглянути список Ваших додатків." +msgstr "Ви повинні увійти, аби переглянути список ваших додатків." #: actions/oauthappssettings.php:74 msgid "OAuth applications" @@ -2682,12 +2687,12 @@ msgstr "Додатки OAuth" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" -msgstr "Додатки, які Ви зареєстрували" +msgstr "Додатки, які ви зареєстрували" #: actions/oauthappssettings.php:135 #, php-format msgid "You have not registered any applications yet." -msgstr "Поки що Ви не зареєстрували жодних додатків." +msgstr "Поки що ви не зареєстрували жодних додатків." #: actions/oauthconnectionssettings.php:72 msgid "Connected applications" @@ -2695,7 +2700,7 @@ msgstr "Під’єднані додатки" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "Ви дозволили наступним додаткам доступ до Вашого акаунту." +msgstr "Ви дозволили наступним додаткам доступ до вашого акаунту." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2708,7 +2713,7 @@ msgstr "Не вдалося скасувати доступ для додатк #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." -msgstr "Ви не дозволили жодним додаткам використовувати Ваш акаунт." +msgstr "Ви не дозволили жодним додаткам використовувати ваш акаунт." #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " @@ -2736,8 +2741,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "URL-адреса %s лише в простому HTTP, будь ласка." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." @@ -2814,7 +2819,7 @@ msgstr "Вихідні для %s" #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Це Ваші вихідні повідомлення, тут містяться повідомлення, які Ви надіслали " +"Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали " "приватно." #: actions/passwordsettings.php:58 @@ -3072,7 +3077,7 @@ msgstr "Налаштування профілю" msgid "" "You can update your personal profile info here so people know more about you." msgstr "" -"Ви можете заповнити свій особистий профіль і люди знатимуть про Вас більше." +"Ви можете заповнити свій особистий профіль і люди знатимуть про вас більше." #: actions/profilesettings.php:99 msgid "Profile information" @@ -3091,13 +3096,13 @@ msgstr "Повне ім’я" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Веб-сторінка" #: actions/profilesettings.php:117 actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL-адреса Вашої веб-сторінки, блоґу, або профілю на іншому сайті" +msgstr "URL-адреса вашої веб-сторінки, блоґу, або профілю на іншому сайті" #: actions/profilesettings.php:122 actions/register.php:468 #, php-format @@ -3121,7 +3126,7 @@ msgstr "Розташування" #: actions/profilesettings.php:134 actions/register.php:480 msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Де Ви живете, на кшталт «Місто, область (регіон), країна»" +msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»" #: actions/profilesettings.php:138 msgid "Share my current location when posting notices" @@ -3154,7 +3159,7 @@ msgstr "Часовий пояс" #: actions/profilesettings.php:162 msgid "What timezone are you normally in?" -msgstr "За яким часовим поясом Ви живете?" +msgstr "За яким часовим поясом ви живете?" #: actions/profilesettings.php:167 msgid "" @@ -3341,7 +3346,7 @@ msgid "" "the email address you have stored in your account." msgstr "" "Якщо загубите або втратите свій пароль, його буде легко відновити за " -"допомогою електронної адреси, яку Ви вказали у власному профілі." +"допомогою електронної адреси, яку ви зазначили у власному профілі." #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " @@ -3409,8 +3414,8 @@ msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" -"Інструкції з відновлення паролю було надіслано на електронну адресу, яку Ви " -"вказали у налаштуваннях Вашого профілю." +"Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви " +"вказали у налаштуваннях вашого профілю." #: actions/recoverpassword.php:357 msgid "Unexpected password reset." @@ -3430,7 +3435,7 @@ msgstr "Помилка в налаштуваннях користувача." #: actions/recoverpassword.php:395 msgid "New password successfully saved. You are now logged in." -msgstr "Новий пароль успішно збережено. Тепер Ви увійшли." +msgstr "Новий пароль успішно збережено. Тепер ви увійшли." #: actions/register.php:92 actions/register.php:196 actions/register.php:412 msgid "Sorry, only invited people can register." @@ -3489,7 +3494,7 @@ msgstr "Такий само, як і пароль вище. Неодмінно." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Пошта" @@ -3499,7 +3504,7 @@ msgstr "Використовується лише для оновлень, ог #: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" -msgstr "Повне ім’я, звісно ж Ваше справжнє ім’я :)" +msgstr "Повне ім’я, звісно ж ваше справжнє ім’я" #: actions/register.php:518 #, php-format @@ -3550,19 +3555,19 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Вітаємо, %1$s! І ласкаво просимо до %%%%site.name%%%%. Звідси Ви зможете...\n" +"Вітаємо, %1$s! І ласкаво просимо до %%%%site.name%%%%. Звідси ви зможете...\n" "\n" -"*Подивитись [Ваш профіль](%2$s) та зробити свій перший допис.\n" +"*Подивитись [ваш профіль](%2$s) та зробити свій перший допис.\n" "*Додати [адресу Jabber/GTalk](%%%%action.imsettings%%%%), аби мати змогу " "надсилати дописи через службу миттєвих повідомлень.\n" -"*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з Вами " +"*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з вами " "інтереси.\n" "*Оновити [налаштування профілю](%%%%action.profilesettings%%%%), аби інші " -"могли знати про Вас більше.\n" -"*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатись, що Ви " +"могли знати про вас більше.\n" +"*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатися, що ви " "нічого не пропустили. \n" "\n" -"Дякуємо, що зареєструвались у нас, і, сподіваємось, Вам сподобається наш " +"Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш " "сервіс." #: actions/register.php:607 @@ -3571,7 +3576,7 @@ msgid "" "to confirm your email address.)" msgstr "" "(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " -"інструкції щодо підтвердження Вашої електронної адреси.)" +"інструкції щодо підтвердження вашої електронної адреси.)" #: actions/remotesubscribe.php:98 #, php-format @@ -3580,9 +3585,9 @@ msgid "" "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Щоб підписатись, Ви можете [увійти](%%action.login%%), або [зареєструвати](%%" -"action.register%%) новий акаунт. Якщо Ви вже маєте акаунт на [сумісному " -"сайті](%%doc.openmublog%%), введіть URL-адресу Вашого профілю нижче." +"Щоб підписатись, ви можете [увійти](%%action.login%%), або [зареєструвати](%%" +"action.register%%) новий акаунт. Якщо ви вже маєте акаунт на [сумісному " +"сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче." #: actions/remotesubscribe.php:112 msgid "Remote subscribe" @@ -3598,7 +3603,7 @@ msgstr "Ім’я користувача" #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "Ім’я користувача, дописи якого Ви хотіли б читати." +msgstr "Ім’я користувача, дописи якого ви хотіли б читати." #: actions/remotesubscribe.php:133 msgid "Profile URL" @@ -3606,7 +3611,7 @@ msgstr "URL-адреса профілю" #: actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" -msgstr "URL-адреса Вашого профілю на іншому сумісному сервісі" +msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: lib/userprofile.php:406 @@ -3640,13 +3645,13 @@ msgstr "Зазначеного допису немає." #: actions/repeat.php:76 msgid "You can't repeat your own notice." -msgstr "Ви не можете повторювати свої власні дописи." +msgstr "Ви не можете повторювати власні дописи." #: actions/repeat.php:90 msgid "You already repeated that notice." msgstr "Ви вже повторили цей допис." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Повторено" @@ -3696,7 +3701,7 @@ msgid "" "[join groups](%%action.groups%%)." msgstr "" "Ви можете долучити інших користувачів до спілкування, підписавшись до " -"більшої кількості людей або [приєднавшись до груп](%%action.groups%%)." +"більшої кількості людей або [приєднавшись до спільноти](%%action.groups%%)." #: actions/replies.php:206 #, php-format @@ -3782,13 +3787,13 @@ msgid "Name" msgstr "Ім’я" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Організація" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Опис" @@ -3844,7 +3849,7 @@ msgstr "" #: actions/showapplication.php:309 msgid "Are you sure you want to reset your consumer key and secret?" -msgstr "Ви впевнені, що бажаєте скинути Ваш ключ споживача і таємну фразу?" +msgstr "Ви впевнені, що бажаєте скинути ваш ключ споживача і секретний код?" #: actions/showfavorites.php:79 #, php-format @@ -3876,7 +3881,7 @@ msgid "" "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" "Ви поки що не відмітили жодних дописів. Натисніть на відповідну кнопку у " -"дописі який Ви вподобали, аби повернутись до нього пізніше, або звернути на " +"дописі який ви вподобали, аби повернутись до нього пізніше, або звернути на " "нього увагу інших." #: actions/showfavorites.php:208 @@ -3885,7 +3890,7 @@ msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" -"%s поки що не вподобав жодного допису. Може Ви б написали йому щось " +"%s поки що не вподобав жодного допису. Може ви написали б йому щось " "цікаве? :)" #: actions/showfavorites.php:212 @@ -3906,16 +3911,16 @@ msgstr "Це спосіб поділитись з усіма тим, що вам #: actions/showgroup.php:82 #, php-format msgid "%s group" -msgstr "Група %s" +msgstr "Спільнота %s" #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" -msgstr "Група %1$s, сторінка %2$d" +msgstr "Спільнота %1$s, сторінка %2$d" #: actions/showgroup.php:227 msgid "Group profile" -msgstr "Профіль групи" +msgstr "Профіль спільноти" #: actions/showgroup.php:272 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 @@ -3933,27 +3938,27 @@ msgstr "Додаткові імена" #: actions/showgroup.php:302 msgid "Group actions" -msgstr "Діяльність групи" +msgstr "Дії спільноти" #: actions/showgroup.php:338 #, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Стрічка дописів групи %s (RSS 1.0)" +msgstr "Стрічка дописів спільноти %s (RSS 1.0)" #: actions/showgroup.php:344 #, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Стрічка дописів групи %s (RSS 2.0)" +msgstr "Стрічка дописів спільноти %s (RSS 2.0)" #: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (Atom)" -msgstr "Стрічка дописів групи %s (Atom)" +msgstr "Стрічка дописів спільноти %s (Atom)" #: actions/showgroup.php:355 #, php-format msgid "FOAF for %s group" -msgstr "FOAF для групи %s" +msgstr "FOAF спільноти %s" #: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" @@ -3982,12 +3987,12 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** це група на %%%%site.name%%%% — сервісі [мікроблоґів](http://uk." +"**%s** це спільнота на %%%%site.name%%%% — сервісі [мікроблоґів](http://uk." "wikipedia.org/wiki/Мікроблогінг), який працює на вільному програмному " -"забезпеченні [StatusNet](http://status.net/). Члени цієї групи роблять " -"короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%%%action.register" -"%%%%) зараз і долучіться до спілкування! ([Дізнатися більше](%%%%doc.help%%%" -"%))" +"забезпеченні [StatusNet](http://status.net/). Учасники цієї спільноти " +"роблять короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%%%action." +"register%%%%) зараз і долучіться до спілкування! ([Дізнатися більше](%%%%doc." +"help%%%%))" #: actions/showgroup.php:461 #, php-format @@ -3997,10 +4002,10 @@ msgid "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** це група користувачів на %%%%site.name%%%% — сервісі [мікроблоґів]" +"**%s** це спільнота користувачів на %%%%site.name%%%% — сервісі [мікроблоґів]" "(http://uk.wikipedia.org/wiki/Мікроблогінг), який працює на вільному " -"програмному забезпеченні [StatusNet](http://status.net/). Члени цієї групи " -"роблять короткі дописи про своє життя та інтереси. " +"програмному забезпеченні [StatusNet](http://status.net/). Учасники цієї " +"спільноти роблять короткі дописи про своє життя та інтереси. " #: actions/showgroup.php:489 msgid "Admins" @@ -4041,7 +4046,7 @@ msgstr "%1$s, сторінка %2$d" #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "Стрічка дописів %1$s з теґом %2$s (RSS 1.0)" +msgstr "Стрічка дописів %1$s з теґом «%2$s» (RSS 1.0)" #: actions/showstream.php:129 #, php-format @@ -4096,7 +4101,7 @@ msgstr "" "**%s** користується %%%%site.name%%%% — сервісом [мікроблоґів](http://uk." "wikipedia.org/wiki/Мікроблогінг), який працює на вільному програмному " "забезпеченні [StatusNet](http://status.net/). [Приєднуйтесь](%%%%action." -"register%%%%) зараз і слідкуйте за дописами **%s**, також на Вас чекає " +"register%%%%) зараз і слідкуйте за дописами **%s**, також на вас чекає " "багато іншого! ([Дізнатися більше](%%%%doc.help%%%%))" #: actions/showstream.php:248 @@ -4180,7 +4185,7 @@ msgstr "URL використаний для посілань кредитів у #: actions/siteadminpanel.php:239 msgid "Contact email address for your site" -msgstr "Контактна електронна адреса для Вашого сайту" +msgstr "Контактна електронна адреса для вашого сайту" #: actions/siteadminpanel.php:245 msgid "Local" @@ -4295,7 +4300,7 @@ msgstr "Код підтвердження" #. TRANS: Form field instructions in SMS settings form. #: actions/smssettings.php:144 msgid "Enter the code you received on your phone." -msgstr "Введіть код, який Ви отримали телефоном." +msgstr "Введіть код, який ви отримали телефоном." #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 @@ -4345,7 +4350,7 @@ msgstr "Оператора не обрано." #. TRANS: Message given saving SMS phone number that is already set. #: actions/smssettings.php:352 msgid "That is already your phone number." -msgstr "Це і є Ваш телефонний номер." +msgstr "Це і є ваш телефонний номер." #. TRANS: Message given saving SMS phone number that is already set for another user. #: actions/smssettings.php:356 @@ -4358,7 +4363,7 @@ msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." msgstr "" -"Код підтвердження був відправлений на телефонний номер, який Ви додали. " +"Код підтвердження був відправлений на телефонний номер, який ви зазначили. " "Перевірте вхідні повідомлення, там має бути код та подальші інструкції." #. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. @@ -4375,7 +4380,7 @@ msgstr "Підтвердження SMS скасовано." #. TRANS: registered for the active user. #: actions/smssettings.php:448 msgid "That is not your phone number." -msgstr "Це не Ваш телефонний номер." +msgstr "Це не ваш телефонний номер." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 @@ -4400,9 +4405,9 @@ msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" -"Оператор мобільного зв’язку. Якщо Вам відомий оператор, що підтримує " +"Оператор мобільного зв’язку. Якщо вам відомий оператор, що підтримує " "надсилання СМС через електронну пошту, але він тут не вказаний, напишіть нам " -"і ми внесемо його до списку." +"на %s і ми внесемо його до списку." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. #: actions/smssettings.php:548 @@ -4486,7 +4491,7 @@ msgstr "Немає такого профілю." #: actions/subscribe.php:117 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Цією дією Ви не зможете підписатися до віддаленого профілю OMB 0.1." +msgstr "Цією дією ви не зможете підписатися до віддаленого профілю OMB 0.1." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4500,11 +4505,11 @@ msgstr "Підписані до %s" #: actions/subscribers.php:52 #, php-format msgid "%1$s subscribers, page %2$d" -msgstr "Підписчики %1$s, сторінка %2$d" +msgstr "Підписані до %1$s, сторінка %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." -msgstr "Тут представлені ті, хто слідкує за Вашими дописами." +msgstr "Тут представлені ті, хто слідкує за вашими дописами." #: actions/subscribers.php:67 #, php-format @@ -4516,13 +4521,13 @@ msgid "" "You have no subscribers. Try subscribing to people you know and they might " "return the favor" msgstr "" -"Ви не маєте підписчиків. Спробуйте підписатись до когось і, можливо, до Вас " +"Ви не маєте читачів. Спробуйте підписатись до когось і, можливо, до вас " "підпишуться навзаєм." #: actions/subscribers.php:110 #, php-format msgid "%s has no subscribers. Want to be the first?" -msgstr "%s ще не має підписчиків. Будете першим?" +msgstr "%s ще не має читачів. Будете першим?" #: actions/subscribers.php:114 #, php-format @@ -4530,8 +4535,8 @@ msgid "" "%s has no subscribers. Why not [register an account](%%%%action.register%%%" "%) and be the first?" msgstr "" -"%s ще не має підписчиків. Чому б не [зареєструватись](%%%%action.register%%%" -"%) і не стати першим?" +"%s ще не має пчитачів. Чому б не [зареєструватись](%%%%action.register%%%%) " +"і не стати першим?" #: actions/subscriptions.php:52 #, php-format @@ -4545,7 +4550,7 @@ msgstr "Підписки %1$s, сторінка %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." -msgstr "Тут представлені ті, за чиїми дописами Ви слідкуєте." +msgstr "Тут представлені ті, за чиїми дописами ви слідкуєте." #: actions/subscriptions.php:69 #, php-format @@ -4562,11 +4567,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" "Ви не слідкуєте за жодним з дописувачів, спробуйте підписатись до тих, кого " -"Ви знаєте. Спробуйте [розшукати людей](%%action.peoplesearch%%), роздивіться " -"серед членів груп, які Вас цікавлять, або прогляньте список [користувачів " -"вартих уваги](%%action.featured%%). Якщо Ви користуєтесь [Твіттером](%%" -"action.twittersettings%%), то можете автоматично підписатись до людей, за " -"якими слідкуєте там." +"ви знаєте. Спробуйте [розшукати людей](%%action.peoplesearch%%), роздивіться " +"серед учасників спільнот, які вас цікавлять, або прогляньте список " +"[користувачів вартих уваги](%%action.featured%%). Якщо ви користуєтесь " +"[Twitter](%%action.twittersettings%%), то можете автоматично підписатись до " +"людей, за якими слідкуєте там." #: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format @@ -4577,7 +4582,7 @@ msgstr "%s не відслідковує нічого" msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "СМС" @@ -4635,8 +4640,8 @@ msgstr "" msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -"Ви маєте можливість позначати теґами тих, до кого Ви підписані, а також тих, " -"хто є підписаним до Вас." +"Ви маєте можливість позначати теґами тих, до кого ви підписані, а також тих, " +"хто є підписаним до вас." #: actions/tagother.php:200 msgid "Could not save tags." @@ -4644,7 +4649,7 @@ msgstr "Не вдалося зберегти теґи." #: actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Скористайтесь цією формою, щоб додати теґи підпискам та підписчикам." +msgstr "Скористайтесь цією формою, щоб додати теґи своїм підпискам та читачам." #: actions/tagrss.php:35 msgid "No such tag." @@ -4700,7 +4705,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Помилкова підписка за замовчуванням: «%1$s» не є користувачем." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профіль" @@ -4760,9 +4765,9 @@ msgid "" "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click “Reject”." msgstr "" -"Будь ласка, перевірте всі деталі, щоб упевнитись, що Ви дійсно бажаєте " -"підписатись на дописи цього користувача. Якщо Ви не збирались підписуватись " -"ні на чиї дописи, просто натисніть «Відмінити»." +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на дописи цього користувача. Якщо ви не збирались підписуватись " +"ні до чиїх дописів, просто натисніть «Відмінити»." #. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 @@ -4874,22 +4879,23 @@ msgstr "Поласуйте бутербродом!" #: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" -msgstr "Групи %1$s, сторінка %2$d" +msgstr "Спільноти %1$s, сторінка %2$d" #: actions/usergroups.php:132 msgid "Search for more groups" -msgstr "Шукати групи ще" +msgstr "Пошук інших спільнот" #: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." -msgstr "%s не є учасником жодної групи." +msgstr "%s не є учасником жодної спільноти." #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -"Спробуйте [знайти якісь групи](%%action.groupsearch%%) і приєднайтеся до них." +"Спробуйте [знайти якісь спільноти](%%action.groupsearch%%) і приєднайтеся до " +"них." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle in atom group notice feed. @@ -4897,7 +4903,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" @@ -4927,10 +4933,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" -"StatusNet є вільним програмним забезпеченням: Ви можете розповсюджувати та/" +"StatusNet є вільним програмним забезпеченням: ви можете розповсюджувати та/" "або змінювати його відповідно до умов GNU Affero General Public License, що " "їх було опубліковано Free Software Foundation, 3-тя версія ліцензії або (на " -"Ваш розсуд) будь-яка подальша версія. " +"ваш розсуд) будь-яка подальша версія. " #: actions/version.php:176 msgid "" @@ -4950,7 +4956,7 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" -"Разом з програмою Ви маєте отримати копію ліцензійних умов GNU Affero " +"Разом з програмою ви маєте отримати копію ліцензійних умов GNU Affero " "General Public License. Якщо ні, перейдіть на %s." #: actions/version.php:191 @@ -4958,7 +4964,7 @@ msgid "Plugins" msgstr "Додатки" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Версія" @@ -4966,86 +4972,97 @@ msgstr "Версія" msgid "Author(s)" msgstr "Автор(и)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Обрати" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s додав допис %s до списку обраних." - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Неможливо обробити URL «%s»" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Робін вважає, що це неможливо." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr "" -"Ні, файл не може бути більшим за %d байтів, а те, що Ви хочете надіслати, " -"важить %d байтів. Спробуйте завантажити меншу версію." +"Ні, файл не може бути більшим за %1$d байтів, а те, що ви хочете надіслати, " +"важить %2$d байтів. Спробуйте завантажити меншу версію." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." -msgstr "Розміри цього файлу перевищують Вашу квоту на %d байтів." +msgstr "Розміри цього файлу перевищують вашу квоту на %d байтів." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "Розміри цього файлу перевищують Вашу місячну квоту на %d байтів." +msgstr "Розміри цього файлу перевищують вашу місячну квоту на %d байтів." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Невірне ім’я файлу." #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." -msgstr "Не вдалося приєднатись до групи." +msgstr "Не вдалося приєднатися до спільноти." #. TRANS: Exception thrown when trying to leave a group the user is not a member of. #: classes/Group_member.php:55 msgid "Not part of group." -msgstr "Не є частиною групи." +msgstr "Не є частиною спільноти." #. TRANS: Exception thrown when trying to leave a group fails. #: classes/Group_member.php:63 msgid "Group leave failed." -msgstr "Не вдалося залишити групу." +msgstr "Не вдалося залишити спільноту." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Помилка при збереженні користувача; недійсний." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Приєднатись" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "%1$s приєднався до групи %2$s." +msgstr "%1$s долучився до спільноти %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." -msgstr "Не вдається оновити локальну групу." +msgstr "Не вдається оновити локальну спільноту." #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. @@ -5060,17 +5077,17 @@ msgid "No database name or DSN found anywhere." msgstr "Немає імені бази даних або DSN ніде не знайдено" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Вам заборонено надсилати прямі повідомлення." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Не можна долучити повідомлення." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Не можна оновити повідомлення з новим URI." @@ -5126,32 +5143,32 @@ msgid "Problem saving notice." msgstr "Проблема при збереженні допису." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Задається невірний тип для saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." -msgstr "Проблема при збереженні вхідних дописів для групи." +msgstr "Проблема при збереженні вхідних дописів спільноти." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Не вдалося скасувати роль «%s» для користувача #%2$s; не існує." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5180,7 +5197,7 @@ msgstr "Вже підписаний!" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." -msgstr "Користувач заблокував Вас." +msgstr "Користувач заблокував вас." #. TRANS: Exception thrown when trying to unsibscribe without a subscription. #: classes/Subscription.php:171 @@ -5202,15 +5219,11 @@ msgstr "Не вдається видалити токен підписки OMB." msgid "Could not delete subscription." msgstr "Не вдалося видалити підписку." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Слідкувати" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s тепер слідкує за %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5219,57 +5232,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Вітаємо на %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." -msgstr "Не вдалося створити нову групу." +msgstr "Не вдалося створити нову спільноту." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." -msgstr "Не вдалося встановити URI групи." +msgstr "Не вдалося встановити URI спільноти." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Не вдалося встановити членство." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." -msgstr "Не вдалося зберегти інформацію про локальну групу." +msgstr "Не вдалося зберегти інформацію про локальну спільноту." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Змінити налаштування профілю" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Завантаження аватари" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" -msgstr "Змінити Ваш пароль" +msgstr "Змінити пароль" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Змінити електронну адресу" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" -msgstr "Дизайн Вашого профілю" +msgstr "Дизайн вашого профілю" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Інші опції" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Інше" @@ -5285,184 +5298,185 @@ msgid "Untitled page" msgstr "Сторінка без заголовку" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Відправна навігація по сайту" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Персональний профіль і стрічка друзів" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Особисте" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адресу, аватару, пароль, профіль" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "З’єднання з сервісами" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "З’єднання" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Змінити конфігурацію сайту" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Адмін" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "Запросіть друзів та колег приєднатись до Вас на %s" +msgstr "Запросіть друзів та колег приєднатись до вас на %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Запросити" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Вийти з сайту" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Вийти" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Створити новий акаунт" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Реєстрація" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Увійти" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Довідка" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Пошук" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Об’яви на сайті" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Огляд" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Зауваження сторінки" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Допомога" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Про" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ЧаП" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Умови" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Приватність" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Джерело" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Контакт" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Бедж" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Ліцензія програмного забезпечення StatusNet" @@ -5470,7 +5484,7 @@ msgstr "Ліцензія програмного забезпечення StatusN #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5480,7 +5494,7 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** — це сервіс мікроблоґів." @@ -5489,7 +5503,7 @@ msgstr "**%%site.name%%** — це сервіс мікроблоґів." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5501,72 +5515,72 @@ msgstr "" "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Ліцензія змісту сайту" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Зміст і дані %1$s є приватними і конфіденційними." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторські права на зміст і дані належать розробникам. Всі права захищено." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Весь зміст і дані %1$s доступні на умовах ліцензії %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Нумерація сторінок" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Вперед" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Назад" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "В очікуванні кореневого елементу веб-стрічки, отримали цілий документ XML." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Поки що не можу обробити віддалений контент." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Поки що не можу обробити вбудований XML контент." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Поки що не можу обробити вбудований контент Base64." @@ -5685,7 +5699,7 @@ msgstr "Немає користувача для цього токену." #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "Не вдалося автентифікувати Вас." +msgstr "Не вдалося автентифікувати вас." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 @@ -5693,7 +5707,7 @@ msgid "Tried to revoke unknown token." msgstr "Спроба скасувати невідомий токен." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Не вдалося видалити скасований токен." @@ -5708,187 +5722,208 @@ msgid "Icon for this application" msgstr "Іконка для цього додатку" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Опишіть додаток, вкладаючись у %d знаків" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Опишіть додаток, вкладаючись у %d знаків" +msgstr[1] "Опишіть додаток, вкладаючись у %d знаків" +msgstr[2] "Опишіть додаток, вкладаючись у %d знаків" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" -msgstr "Опишіть Ваш додаток" +msgstr "Опишіть ваш додаток" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL-адреса веб-сторінки цього додатку" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL-адреса" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Організація, відповідальна за цей додаток" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL-адреса веб-сторінки організації" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL-адреса, на яку перенаправляти після автентифікації" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Браузер" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Десктоп" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Тип додатку, браузер або десктоп" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Лише читання" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Читати-писати" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Скасувати" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "читання/запис" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "лише читання" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Підтверджено доступ %1$s — «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Відкликати" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Вкладення" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Автор" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Провайдер" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Дописи, до яких прикріплено це вкладення" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Теґи для цього вкладення" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Не вдалося змінити пароль" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Змінювати пароль не дозволено" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Блок" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Результати команди" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Помилка в Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Команду виконано" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Команду не виконано" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Допису з таким id не існує." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Користувач не має останнього допису." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Не вдалося знайти користувача з ім’ям %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Користувача з нікнеймом %s на даному сайті не знайдено." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Даруйте, але виконання команди ще не завершено." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Гадаємо, користі від «розштовхування» самого себе небагато, чи не так?!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Спробу «розштовхати» %s зараховано." @@ -5897,7 +5932,7 @@ msgstr "Спробу «розштовхати» %s зараховано." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5905,172 +5940,175 @@ msgid "" "Notices: %3$s" msgstr "" "Підписки: %1$s\n" -"Підписчики: %2$s\n" -"Дописи: %3$s" +"Підписані: %2$s\n" +"Дописів: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Допис позначено як обраний." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." -msgstr "%1$s приєднався до групи %2$s." +msgstr "%1$s приєднався до спільноти %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." -msgstr "%1$s залишив групу %2$s." +msgstr "%1$s залишив спільноту %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Повне ім’я: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Розташування: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Веб-сторінка: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Про мене: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -"%s — це віддалений профіль; Ви можете надсилати приватні повідомлення лише " +"%s — це віддалений профіль; ви можете надсилати приватні повідомлення лише " "користувачам одного з вами сервісу." #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" -"Повідомлення надто довге — максимум %1$d символів, а Ви надсилаєте %2$d." +"Повідомлення надто довге, максимум становить %1$d символів, натомість ви " +"надсилаєте %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Помилка при відправці прямого повідомлення." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Допису від %s вторували." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Помилка при повторенні допису." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." -msgstr "Допис надто довгий — максимум %1$d символів, а Ви надсилаєте %2$d." +msgstr "" +"Допис надто довгий, максимум становить %1$d символів, а ви надсилаєте %2$d." #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Відповідь для %s надіслано." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Проблема при збереженні допису." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Зазначте ім’я користувача, до якого бажаєте підписатись." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Не можу підписатись до профілю OMB за командою." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." -msgstr "Тепер Ви підписані на дописи %s." +msgstr "Тепер ви підписані на дописи %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Зазначте ім’я користувача, від якого бажаєте відписатись." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Підписку на дописи від %s скасовано." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Виконання команди ще не завершено." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Сповіщення вимкнуто." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Не можна вимкнути сповіщення." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Сповіщення увімкнуто." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Не можна увімкнути сповіщення." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Команду входу відключено." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6078,20 +6116,20 @@ msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Підписку %s скасовано." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Ви не маєте жодних підписок." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ви підписані до цієї особи:" @@ -6100,38 +6138,38 @@ msgstr[2] "Ви підписані до цих людей:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." -msgstr "До Вас ніхто не підписаний." +msgstr "Ніхто до вас не підписаний." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" -msgstr[0] "Ця особа є підписаною до Вас:" -msgstr[1] "Ці люди підписані до Вас:" -msgstr[2] "Ці люди підписані до Вас:" +msgstr[0] "Ця особа є підписаною до вас:" +msgstr[1] "Ці люди підписані до вас:" +msgstr[2] "Ці люди підписані до вас:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." -msgstr "Ви не є учасником жодної групи." +msgstr "Ви не залучені до жодної спільноти." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" -msgstr[0] "Ви є учасником групи:" -msgstr[1] "Ви є учасником таких груп:" -msgstr[2] "Ви є учасником таких груп:" +msgstr[0] "Ви є учасником спільноти:" +msgstr[1] "Ви є учасником таких спільнот:" +msgstr[2] "Ви є учасником таких спільнот:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6177,9 +6215,9 @@ msgstr "" "off — вимкнути сповіщення\n" "help — список команд\n" "follow — підписатись до користувача\n" -"groups — групи, до яких Ви входите\n" -"subscriptions — користувачі, до яких Ви підписані\n" -"subscribers — користувачі, які підписані до Вас\n" +"groups — спільноти, до яких ви входите\n" +"subscriptions — користувачі, до яких ви підписані\n" +"subscribers — користувачі, які підписані до вас\n" "leave — відписатись від користувача\n" "d — надіслати особисте повідомлення\n" "get — отримати останній допис користувача\n" @@ -6188,9 +6226,9 @@ msgstr "" "fav # — додати допис до обраних\n" "reply # — відповісти на допис\n" "reply — відповісти на останній допис користувача\n" -"join — приєднатися до групи\n" +"join — приєднатися до спільноти\n" "login — отримати посилання входу до веб-інтерфейсу\n" -"drop — залишити групу\n" +"drop — залишити спільноту\n" "stats — отримати статистику\n" "stop — те саме що і 'off'\n" "quit — те саме що і 'off'\n" @@ -6208,39 +6246,61 @@ msgstr "" "tracks — наразі не виконується\n" "tracking — наразі не виконується\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Файлу конфігурації не знайдено. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Шукав файли конфігурації в цих місцях: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Запустіть файл інсталяції, аби полагодити це." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Іти до файлу інсталяції." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "ІМ" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Оновлення через СМС" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "З’єднання" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Авторизовані під’єднані додатки" @@ -6263,11 +6323,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Дизайн за замовчуванням відновлено." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Видалити з обраних" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Позначити як обране" @@ -6287,7 +6347,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Веб-стрічки" @@ -6322,33 +6382,34 @@ msgstr "Надати цьому користувачеві роль «%s»" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" -msgstr "URL-адреса веб-сторінки, блоґу групи, або тематичного блоґу" +msgstr "URL-адреса веб-сторінки або тематичного блоґу сільноти" #: lib/groupeditform.php:168 msgid "Describe the group or topic" -msgstr "Опишіть групу або тему" +msgstr "Опишіть спільноту або тему" #: lib/groupeditform.php:170 #, php-format msgid "Describe the group or topic in %d characters" -msgstr "Опишіть групу або тему, вкладаючись у %d знаків" +msgstr "Опишіть спільноту або тему, вкладаючись у %d знаків" #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Розташування групи, на кшталт «Місто, область (або регіон), країна»" +msgstr "Розташування спільноти, на кшталт «Місто, область (або регіон), країна»" #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -"Додаткові імена для групи, відокремлювати комами або пробілами, максимум %d" +"Додаткові імена для спільноти, відокремлювати комами або пробілами, максимум " +"— %d імені" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "Група" +msgstr "Спільнота" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6356,7 +6417,7 @@ msgstr "Група" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "Група %s" +msgstr "Спільнота %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 @@ -6370,7 +6431,7 @@ msgstr "Учасники" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "Учасники групи %s" +msgstr "Учасники спільноти %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 @@ -6392,7 +6453,7 @@ msgstr "Заблоковані користувачі %s" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "Редагувати властивості групи %s" +msgstr "Редагувати властивості спільноти %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 @@ -6418,16 +6479,16 @@ msgstr "Додати або редагувати дизайн %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" -msgstr "Групи з найбільшою кількістю учасників" +msgstr "Спільноти з найбільшою кількістю учасників" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "Групи з найбільшою кількістю дописів" +msgstr "Спільноти з найбільшою кількістю дописів" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "Теґи у дописах групи %s" +msgstr "Теґи у дописах спільноти %s" #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 @@ -6520,20 +6581,20 @@ msgstr "" "\n" "Хтось щойно ввів цю електронну адресу на %s.\n" "\n" -"Якщо то були Ви, мусите це підтвердити, використовуючи посилання:\n" +"Якщо то були ви, мусите це підтвердити, використовуючи посилання:\n" "\n" "%s\n" "\n" "А якщо ні, просто ігноруйте це повідомлення.\n" "\n" -"Вибачте за турботу, \n" +"Вибачте, що потурбували, \n" "%s\n" #. TRANS: Subject of new-subscriber notification e-mail #: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s тепер слідкує за Вашими дописами на %2$s." +msgstr "%1$s тепер слідкує за вашими дописами на %2$s." #: lib/mail.php:248 #, php-format @@ -6541,9 +6602,9 @@ msgid "" "If you believe this account is being used abusively, you can block them from " "your subscribers list and report as spam to site administrators at %s" msgstr "" -"Якщо Ви вважаєте, що цей акаунт використовується неправомірно, Ви можете " -"заблокувати його у списку своїх підписчиків і повідомити адміністраторів " -"сайту про факт спаму на %s" +"Якщо ви вважаєте, що цей акаунт використовується неправомірно, ви можете " +"заблокувати його у списку своїх читачів і повідомити адміністраторів сайту " +"про факт спаму на %s" #. TRANS: Main body of new-subscriber notification e-mail #: lib/mail.php:254 @@ -6560,12 +6621,12 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" -"%1$s тепер слідкує за Вашими дописами на %2$s.\n" +"%1$s тепер слідкує за вашими дописами на %2$s.\n" "\n" "\t%3$s\n" "\n" "%4$s%5$s%6$s\n" -"Щиро Ваші,\n" +"Щиро ваші,\n" "%7$s.\n" "\n" "----\n" @@ -6602,7 +6663,7 @@ msgstr "" "\n" "Більше інформації про використання електронної пошти на %3$s.\n" "\n" -"Щиро Ваші,\n" +"Щиро ваші,\n" "%4$s" #. TRANS: Subject line for SMS-by-email notification messages @@ -6621,7 +6682,7 @@ msgstr "Підтвердження СМС" #, php-format msgid "%s: confirm you own this phone number with this code:" msgstr "" -"%s, підтвердьте, що Ви є власником зазначеного номеру телефону, " +"%s, підтвердьте, що ви є власником зазначеного номеру телефону, " "скориставшись даним кодом:" #. TRANS: Subject for 'nudge' notification email @@ -6646,10 +6707,10 @@ msgid "" "With kind regards,\n" "%4$s\n" msgstr "" -"%1$s (%2$s) цікавиться як Ваші справи останнім часом і пропонує про це " +"%1$s (%2$s) цікавиться як ваші справи останнім часом і пропонує про це " "написати.\n" "\n" -"Може розповісте, що в Вас нового? Задовольніть цікавість друзів! :)\n" +"Може розповісте, що в вас нового? Задовольніть цікавість друзів! :)\n" "\n" "%3$s\n" "\n" @@ -6683,7 +6744,7 @@ msgid "" "With kind regards,\n" "%5$s\n" msgstr "" -"%1$s (%2$s) надіслав(ла) Вам приватне повідомлення:\n" +"%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n" "\n" "------------------------------------------------------\n" "%3$s\n" @@ -6702,7 +6763,7 @@ msgstr "" #: lib/mail.php:589 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%s (@%s) додав(ла) Ваш допис обраних" +msgstr "%s (@%s) додав(ла) ваш допис обраних" #. TRANS: Body for favorite notification email #: lib/mail.php:592 @@ -6725,13 +6786,13 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" -"%1$s (@%7$s) щойно додав(ла) Ваш допис %2$s до обраних.\n" +"%1$s (@%7$s) щойно додав(ла) ваш допис %2$s до обраних.\n" "\n" -"URL-адреса Вашого допису:\n" +"URL-адреса вашого допису:\n" "\n" "%3$s\n" "\n" -"Текст Вашого допису:\n" +"Текст вашого допису:\n" "\n" "%4$s\n" "\n" @@ -6739,7 +6800,7 @@ msgstr "" "\n" "%5$s\n" "\n" -"Щиро Ваші,\n" +"Щиро ваші,\n" "%6$s\n" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. @@ -6757,7 +6818,7 @@ msgstr "" #: lib/mail.php:657 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "%s (@%s) пропонує до Вашої уваги наступний допис" +msgstr "%s (@%s) пропонує до вашої уваги наступний допис" #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 @@ -6786,7 +6847,7 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) щойно надіслав(ла) Вам повідомлення («@-відповідь») на %2$s.\n" +"%1$s (@%9$s) щойно надіслав(ла) вам повідомлення («@-відповідь») на %2$s.\n" "\n" "Повідомлення знаходиться тут:\n" "\n" @@ -6800,7 +6861,7 @@ msgstr "" "\n" "%6$s\n" "\n" -"Список всіх @-відповідей, надісланих Вам, знаходиться тут:\n" +"Список всіх @-відповідей, надісланих вам, знаходиться тут:\n" "\n" "%7$s\n" "\n" @@ -6819,11 +6880,11 @@ msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" -"У Вас немає приватних повідомлень. Зокрема, Ви можете надсилати приватні " +"У вас немає приватних повідомлень. Зокрема, ви можете надсилати приватні " "повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите " -"лише Ви." +"лише ви." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "з" @@ -6837,7 +6898,7 @@ msgstr "Це незареєстрований користувач." #: lib/mailhandler.php:46 msgid "Sorry, that is not your incoming email address." -msgstr "Вибачте, але це не є Вашою електронною адресою для вхідної пошти." +msgstr "Вибачте, але це не є вашою електронною адресою для вхідної пошти." #: lib/mailhandler.php:50 msgid "Sorry, no incoming email allowed." @@ -6852,7 +6913,7 @@ msgstr "Формат повідомлення не підтримується: % #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." -msgstr "Виникла помилка під час завантаження Вашого файлу. Спробуйте ще." +msgstr "Виникла помилка під час завантаження вашого файлу. Спробуйте ще." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. #: lib/mediafile.php:145 @@ -6939,7 +7000,7 @@ msgstr "Лишилось знаків" #: lib/messageform.php:178 lib/noticeform.php:237 msgctxt "Send button for sending notice" msgid "Send" -msgstr "Так!" +msgstr "Так" #: lib/noticeform.php:160 msgid "Send a notice" @@ -6971,59 +7032,59 @@ msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -"На жаль, отримання інформації щодо Вашого місцезнаходження займе більше " -"часу, ніж очікувалось; будь ласка, спробуйте пізніше" +"На жаль, отримання інформації щодо вашого розташування займе більше часу, " +"ніж очікувалось; будь ласка, спробуйте пізніше" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "Півн." #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Півд." #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "Сх." #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Зах." -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "в" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" -msgstr "веб-сторінки" +msgstr "вебу" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" -msgstr "в контексті" +msgstr "у контексті" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Відповісти на цей допис" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Відповісти" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Допис повторили" @@ -7094,7 +7155,7 @@ msgid "Tags in %s's notices" msgstr "Теґи у дописах %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Невідомо" @@ -7108,15 +7169,15 @@ msgstr "Всі підписки" #: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" -msgstr "Підписчики" +msgstr "Підписані" #: lib/profileaction.php:161 msgid "All subscribers" -msgstr "Всі підписчики" +msgstr "Всі підписані" #: lib/profileaction.php:191 msgid "User ID" -msgstr "ІД" +msgstr "Ід. номер" #: lib/profileaction.php:196 msgid "Member since" @@ -7125,11 +7186,11 @@ msgstr "Реєстрація" #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 msgid "Daily average" -msgstr "За добу" +msgstr "Щоденно" #: lib/profileaction.php:264 msgid "All groups" -msgstr "Всі групи" +msgstr "Всі спільноти" #: lib/profileformaction.php:123 msgid "Unimplemented method." @@ -7141,7 +7202,7 @@ msgstr "Загал" #: lib/publicgroupnav.php:82 msgid "User groups" -msgstr "Групи користувачів" +msgstr "Спільноти" #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" @@ -7215,15 +7276,15 @@ msgstr "Люди" #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "Знайти людей на цьому сайті" +msgstr "Пошук людей на цьому сайті" #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "Знайти за змістом дописів" +msgstr "Пошук дописів за змістом" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" -msgstr "Знайти групи на цьому сайті" +msgstr "Пошук спільнот на цьому сайті" #: lib/section.php:89 msgid "Untitled section" @@ -7254,7 +7315,7 @@ msgstr "Люди підписані до %s" #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" -msgstr "%s бере участь в цих групах" +msgstr "Спільноти, до яких залучений %s" #: lib/subgroupnav.php:105 msgid "Invite" @@ -7263,7 +7324,7 @@ msgstr "Запросити" #: lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "Запросіть друзів та колег приєднатись до Вас на %s" +msgstr "Запросіть друзів та колег приєднатись до вас на %s" #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 @@ -7273,7 +7334,7 @@ msgstr "Хмарка теґів (позначки самих користува #: lib/subscriberspeopletagcloudsection.php:48 #: lib/subscriptionspeopletagcloudsection.php:48 msgid "People Tagcloud as tagged" -msgstr "Хмарка теґів (позначки, якими Ви позначили користувачів)" +msgstr "Хмарка теґів (якими ви позначили користувачів)" #: lib/tagcloudsection.php:56 msgid "None" @@ -7413,58 +7474,58 @@ msgstr "мить тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1129 msgid "about a minute ago" -msgstr "близько хвилину тому" +msgstr "хвилину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "близько хвилини тому" +msgstr[0] "хвилину тому" msgstr[1] "близько %d хвилин тому" -msgstr[2] "" +msgstr[2] "близько %d хвилин тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1136 msgid "about an hour ago" -msgstr "близько години тому" +msgstr "годину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "близько години тому" +msgstr[0] "годину тому" msgstr[1] "близько %d годин тому" -msgstr[2] "" +msgstr[2] "близько %d годин тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1143 msgid "about a day ago" -msgstr "близько доби тому" +msgstr "день тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "близько доби тому" +msgstr[0] "день тому" msgstr[1] "близько %d днів тому" -msgstr[2] "" +msgstr[2] "близько %d днів тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1150 msgid "about a month ago" -msgstr "близько місяця тому" +msgstr "місяць тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "близько місяця тому" +msgstr[0] "місяць тому" msgstr[1] "близько %d місяців тому" -msgstr[2] "" +msgstr[2] "близько %d місяців тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1157 @@ -7482,18 +7543,23 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s неприпустимий колір! Використайте 3 або 6 знаків (HEX-формат)" #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" -msgstr "Резервна копія файлів для користувача %s (%s)\n" +msgstr "Резервна копія файлів користувача %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." msgstr "" -"Користувача не зазначено; для початку створення резервної копії потрібно " -"зазначити користувача.\n" +"Користувача не зазначено; для створення резервної копії потрібно зазначити " +"користувача." #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." -msgstr "У резервному файлі збережено %d дописів.\n" +msgstr "У резервному файлі збережено %d дописів." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s додав допис %s до списку обраних." + +#~ msgid "%s is now following %s." +#~ msgstr "%s тепер слідкує за %s." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 0b28c480b3..bca81310e8 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:07+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:32+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 (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "保存访问设置" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "保存" @@ -115,7 +115,7 @@ msgstr "没有这个页面。" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "没有这个用户。" @@ -352,7 +352,7 @@ msgid "This status is already a favorite." msgstr "已收藏此状态。" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "无法创建收藏。" @@ -465,18 +465,18 @@ msgid "Group not found." msgstr "小组未找到。" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "你已经是该小组成员。" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "你已经被管理员从该小组中屏蔽。" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "无法把用户%1$s添加到%2$s小组" @@ -488,7 +488,7 @@ msgstr "你不是该小组成员。" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "无法把用户%1$s从%2$s小组删除" @@ -602,7 +602,7 @@ msgstr "" "strong>你的%4$s账户数据。你应该只允许你信任信任的第三方程序访问你的%4$s账户。" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "帐号" @@ -616,7 +616,7 @@ msgstr "昵称" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "密码" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "没有这条消息。" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "不能转发你自己的消息。" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "已转发了该消息。" @@ -761,7 +761,7 @@ msgstr "大小不正确。" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "头像" @@ -792,7 +792,7 @@ msgid "Preview" msgstr "预览" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "删除" @@ -877,7 +877,7 @@ 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:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "屏蔽这个用户" @@ -896,8 +896,8 @@ msgstr "保存屏蔽信息失败。" #: actions/groupunblock.php:86 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:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "没有这个组。" @@ -1013,7 +1013,7 @@ msgstr "你不是该应用的拥有者。" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "你的 session token 出现了问题。" @@ -1075,7 +1075,7 @@ msgid "Do not delete this notice" msgstr "不要删除这个消息" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "删除" @@ -1105,7 +1105,7 @@ msgstr "删除这个用户" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "外观" @@ -1231,7 +1231,7 @@ msgstr "重置到默认" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1351,7 +1351,7 @@ msgid "Could not update group." msgstr "无法更新小组" #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "无法创建别名。" @@ -1407,7 +1407,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "取消" @@ -1597,7 +1597,7 @@ msgstr "已添加新的发布用的电子邮件地址。" msgid "This notice is already a favorite!" msgstr "已收藏过此消息!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "取消收藏" @@ -1890,7 +1890,7 @@ msgstr "将这个用户设为管理员" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s的时间线" @@ -2164,7 +2164,7 @@ msgstr "你已经关注了这些用户:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2289,7 +2289,7 @@ msgid "You must be logged in to leave a group." msgstr "你必须登录才能离开小组。" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "你不是该群小组成员。" @@ -2506,14 +2506,14 @@ msgid "New message" msgstr "新消息" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "无法向此用户发送消息。" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "没有内容!" @@ -2522,7 +2522,7 @@ msgid "No recipient specified." msgstr "没有收件人。" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "不要向自己发送消息;跟自己悄悄说就得了。" @@ -2533,12 +2533,12 @@ msgstr "消息已发送" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "向%s发送私信成功。" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax错误" @@ -2673,8 +2673,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "请只用HTTP明文的%sURLs的地址。" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "不支持的数据格式。" @@ -3023,7 +3023,7 @@ msgstr "全名" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "主页" @@ -3403,7 +3403,7 @@ msgstr "与上面输入相同的密码。此项必填。" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "电子邮件" @@ -3554,7 +3554,7 @@ msgstr "你不能重复自己的消息。" msgid "You already repeated that notice." msgstr "你已转发过了那个消息。" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "已转发" @@ -3687,13 +3687,13 @@ msgid "Name" msgstr "名称" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "组织名称必填。" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "描述" @@ -4457,7 +4457,7 @@ msgstr "%s没有关注任何人。" msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4577,7 +4577,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "无效的默认关注:“%1$s”不是一个用户。" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "个人信息" @@ -4765,7 +4765,7 @@ msgstr "试一下[搜索小组](%%action.groupsearch%%)并加入他们。" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -4819,7 +4819,7 @@ msgid "Plugins" msgstr "插件" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "版本" @@ -4827,29 +4827,25 @@ msgstr "版本" msgid "Author(s)" msgstr "作者" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "收藏" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s 将消息 %s 添加到了收藏。" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "不能处理 URL “%s”" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "麦子认为卖烧麦是份很令人愉快的工作。" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4859,20 +4855,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "这么大的文件会超过你%d字节的用户配额。" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "这么大的文件会超过你%d字节的每月配额。" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "无效的文件名。" @@ -4891,13 +4887,28 @@ msgstr "不是小组成员。" msgid "Group leave failed." msgstr "离开小组失败。" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_member.php:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "保存用户时出错;无效。" + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "加入" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s加入了%2$s小组。" @@ -4920,17 +4931,17 @@ msgid "No database name or DSN found anywhere." msgstr "没有找到数据库名称或者 DSN。" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "你被禁止发送私信。" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "无法添加信息。" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "无法通过新的 URI 更新消息。" @@ -4982,32 +4993,32 @@ msgid "Problem saving notice." msgstr "保存消息时出错。" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "对 saveKnownGroups 提供的类型无效" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "保存小组收件箱时出错。" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,不存在。" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,数据库错误。" @@ -5057,15 +5068,11 @@ msgstr "无法删除关注 OMB token。" msgid "Could not delete subscription." msgstr "无法取消关注。" -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "关注" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s 现在开始关注 %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5074,57 +5081,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "欢迎来到 %1$s,@%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "无法创建小组。" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "无法设置小组 URI。" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "无法设置小组成员。" #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "无法保存本地小组信息。" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "修改你的个人信息" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "上传一个头像。" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "修改密码" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "修改电子邮件" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "设计你的个人页面外观" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "其他选项" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "其他" @@ -5140,184 +5147,185 @@ msgid "Untitled page" msgstr "无标题页" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "主站导航" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "个人资料及朋友的时间线" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "个人" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "修改你的 email 地址、头像、密码、资料" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "关联的服务" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "关联" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "更改网站配置" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "管理" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "邀请好友和同事加入%s。" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "邀请" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "从网站登出" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "登出" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "创建一个账户" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "注册" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "登录这个网站" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "登录" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "帮助我!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "帮助" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "搜索人或文字" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "搜索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "网站消息" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "本地显示" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "页面消息" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "副站导航" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "帮助" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "关于" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "条款" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "隐私" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "源码" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "联系" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "挂件" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet 软件许可证" @@ -5325,7 +5333,7 @@ msgstr "StatusNet 软件许可证" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5335,7 +5343,7 @@ msgstr "" "broughtbyurl%%)。" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 是一个微博客服务。" @@ -5344,7 +5352,7 @@ msgstr "**%%site.name%%** 是一个微博客服务。" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5355,70 +5363,70 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)授权。" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "网站内容许可协议" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s的内容和数据是私人且保密的。" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "内容和数据%1$s版权所有并保留所有权利。" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "内容和数据贡献者版权所有并保留所有权利。" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "所有%1$s的内容和数据在%2$s许可下有效。" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "分页" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "之后" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "之前" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "只期待一个 root feed 元素但收到了整个的 XML 文档。" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "还不能处理远程内容。" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "还不能处理嵌入式 XML 内容。" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "还不能处理嵌入式 Base64 内容。" @@ -5543,7 +5551,7 @@ msgid "Tried to revoke unknown token." msgstr "尝试了取消未知的 token。" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "删除取消的 token 失败。" @@ -5558,186 +5566,205 @@ msgid "Icon for this application" msgstr "该应用的图标" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "用不超过%d个字符描述你的应用" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "用不超过%d个字符描述你的应用" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "描述你的应用" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "这个应用的主页 URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "来源网址" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "该应用的负责组织" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "这个组织的主页 URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "通过授权后转向的 URL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "浏览器" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "桌面" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "应用的类型,浏览器或桌面" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "只读" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "读写" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "该应用默认的访问权限:只读或读写" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "取消" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "读写" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "只读" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "通过了%1$s - \"%2$s\"的访问权限。" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "取消" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "附件" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "作者" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "提供者" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "出现这个附件的消息" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "此附件的标签" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "不允许更改密码" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "不允许更改密码" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "屏蔽" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "执行结果" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax错误" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "执行完毕" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "执行失败" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "没有此 id 的消息。" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "用户没有最后一条的消息。" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "无法找到昵称为 %s 的用户。" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "无法在本地找到昵称为%s的用户。" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "对不起,这个命令还没有实现。" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "呼叫自己不太符合逻辑吧。" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "呼叫已发给 %s。" @@ -5746,7 +5773,7 @@ msgstr "呼叫已发给 %s。" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5758,52 +5785,53 @@ msgstr "" "消息数: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "消息被标记为收藏。" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s加入了%2$s小组。" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s离开了%2$s小组。" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "全名:%s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "位置:%s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "主页:%s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "关于:%s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5812,165 +5840,165 @@ msgstr "%s是一个远程的用户;你只能给同一个服务器上的用户 #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "消息包含%2$d个字符,超出长度限制 - 不能超过%1$d个字符。" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "发送消息出错。" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "来自 %s 的消息已转发。" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "转发消息时出错。" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "消息过长 - 最长%1$d个字符,你发送的是%2$d。" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "给 %s 的回复已发送。" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "保存消息时出错。" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "指定要关注的用户名。" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "无法通过命令行关注 OMB 用户。" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "已关注%s。" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "指定要取消关注的用户名。" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "取消关注%s。" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "命令尚未实现。" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "通知已关闭。" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "无法关闭通知。" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "通知已开启。" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "无法开启通知。" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "登录命令被禁用。" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "这个链接只能使用一次并且仅在2分钟内有效:%s。" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "已取消关注%s。" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "你没有关注任何人。" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "你已关注了这个用户:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "没有人关注你。" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "这个用户正在关注你:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "你还未成为任何一个小组的成员。" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "你是该小组成员:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6050,39 +6078,61 @@ msgstr "" "tracks - 尚未实现。\n" "tracking - 尚未实现。\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "没有找到配置文件。 " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "我在以下位置查找了配置文件:" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "或许你想运行安装程序来解决这个问题。" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "去安装程序。" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "即时通讯IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "使用即时通讯工具(IM)更新" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "使用 SMS 更新" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "关联" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "被授权已连接的应用" @@ -6103,11 +6153,11 @@ msgstr "你可以上传你的个人页面背景。文件最大 2MB。" msgid "Design defaults restored." msgstr "默认外观已恢复。" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "取消收藏这个消息" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "收藏" @@ -6127,7 +6177,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -6657,7 +6707,7 @@ msgstr "" "你没有任何私信。你可以试着发送私信给其他用户鼓励他们用私信和你交流。其他用户" "发给你你私信只有你看得到。" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "通过" @@ -6802,55 +6852,55 @@ msgid "" msgstr "抱歉,获取你的地理位置时间过长,请稍候重试" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "位于" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "网页" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "查看对话" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "转发来自" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "回复" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "回复" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "消息已转发" @@ -6921,7 +6971,7 @@ msgid "Tags in %s's notices" msgstr "%s的消息中的标签" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "未知的" @@ -7296,16 +7346,21 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s不是有效的颜色!应使用3或6个十六进制字符。" #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" msgstr "用户 %s (%s) 的备份文件\n" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "N没有用户被指定;使用备份用户。\n" +msgstr "没有用户被指定;使用备份用户。\n" #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." msgstr "备份中有 %d 个条目。\n" + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s 将消息 %s 添加到了收藏。" + +#~ msgid "%s is now following %s." +#~ msgstr "%s 现在开始关注 %s." diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..6726759eea --- /dev/null +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Galician (Galego) +# Expored from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:34+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:15:20+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Use a caché variable APC " +"para memorizar os resultados da pescuda." diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..2b4a0f3392 --- /dev/null +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - APC to Polish (Polski) +# Expored from translatewiki.net +# +# Author: Sp5uhe +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:34+0000\n" +"Language-Team: Polish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:15:20+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-apc\n" +"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " +"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Korzystaj z APC pamięci " +"podręcznej zmiennych do przechowywania wyników zapytań." diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot new file mode 100644 index 0000000000..c0f446205d --- /dev/null +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -0,0 +1,98 @@ +# 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-10-01 20:22+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" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "" + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "" + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "" + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "" + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "" + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index 2d6edeb52a..da02536e7c 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:12+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" @@ -31,7 +31,7 @@ msgid "" "Note you will initially be \"sandboxed\" so your posts will not appear in " "the public timeline." msgstr "" -"Зауважте, що спочатку Вас буде відправлено до «пісочниці», отже Ваші дописи " +"Зауважте, що спочатку вас буде відправлено до «пісочниці», отже ваші дописи " "не з’являтимуться у загальній стрічці дописів." #. TRANS: $contactlink is a clickable e-mailaddress. @@ -41,6 +41,6 @@ msgid "" "the public timeline. Send a message to $contactlink to speed up the " "unsandboxing process." msgstr "" -"Зауважте, що спочатку Вас буде відправлено до «пісочниці», отже Ваші дописи " +"Зауважте, що спочатку вас буде відправлено до «пісочниці», отже ваші дописи " "не з’являтимуться у загальній стрічці дописів. Надішліть повідомлення до " -"$contactlink аби прискорити процес Вашого «виходу в люди»." +"$contactlink аби прискорити процес вашого «виходу в люди»." diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index d2b4d3b4b9..bd2596738c 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" @@ -31,4 +31,4 @@ msgstr "" "Додаток автозавершення дозволяє користувачам автоматично завершувати " "нікнейми у «@-відповідях». Якщо у вікні набору повідомлення з’являється " "символ «@», то даний додаток автоматично пропонує обрати ім’я користувача із " -"списку тих, з ким Ви найчастіше листуєтесь." +"списку тих, з ким ви найчастіше листуєтесь." diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..f8cd9718b0 --- /dev/null +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Extension pour tester la mise en forme des publicités." diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..1ddce32bb7 --- /dev/null +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlankAd to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-blankad\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "测试广告(ad)布局的插件。" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..afdb8bfe8a --- /dev/null +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to German (Deutsch) +# Expored from translatewiki.net +# +# Author: The Evil IP address +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Plugin zur Überprüfung von Nachrichten mit blogspam.net." diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..4563cce2cf --- /dev/null +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Extension pour vérifier avec blogspam.net les avis soumis." diff --git a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..402a9d4847 --- /dev/null +++ b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlogspamNet to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:39+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-blogspamnet\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "通过 blogspam.net 检查发布的消息的插件。" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 6ae4d1570e..b159c7a963 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:17+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" @@ -63,7 +63,7 @@ msgstr "" #: caslogin.php:28 msgid "Already logged in." -msgstr "Тепер Ви увійшли." +msgstr "Тепер ви увійшли." #: caslogin.php:39 msgid "Incorrect username or password." @@ -71,4 +71,4 @@ msgstr "Неточне ім’я або пароль." #: caslogin.php:45 msgid "Error setting user. You are probably not authorized." -msgstr "Помилка налаштувань користувача. Можливо, Ви не авторизовані." +msgstr "Помилка налаштувань користувача. Можливо, ви не авторизовані." diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..7aaef14c82 --- /dev/null +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:41+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Extension pour réaliser des mises à jour « en temps réel » en utilisant Comet/" +"Bayeux." diff --git a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..fd7721e261 --- /dev/null +++ b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - Comet to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:41+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-comet\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "通过 Comet/Bayeux 实现“实时更新”的插件。" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..3767c03717 --- /dev/null +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DiskCache to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "" +"Extension pour mettre en œuvre une interface de mémoire tampon dans des " +"fichiers du disque." diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index c1bbf1cb64..415cd180a0 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,18 +16,22 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" "disqus.com/?ref_noscript=%s)." msgstr "" -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " msgstr "" -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "" + +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 8a908513a9..574a27090c 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" @@ -30,11 +30,15 @@ msgstr "" "Per favor activa JavaScript pro vider le [commentos actionate per Disqus]" "(http://disqus.com/?ref_noscript=%s)." -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " msgstr "Commentos actionate per " -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "" + +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index a00d4b7676..f79e0736ba 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" @@ -30,11 +30,15 @@ msgstr "" "Schakel JavaScript in om de [reacties via Disqus](http://disqus.com/?" "ref_noscript=%s) te kunnen bekijken." -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " +msgstr "Reacties powered by " + +#: DisqusPlugin.php:201 +msgid "Comments" msgstr "" -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index e50e62ca94..6651517023 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" @@ -30,11 +30,15 @@ msgstr "" "Mangyaring paganahin ang JavaScript upang matingnan ang [mga punang " "pinapatakbo ng Disqus](http://disqus.com/?ref_noscript=%s)." -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " msgstr "Mga puna na pinatatakbo ng " -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "" + +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 30e505f913..1c650e8d92 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\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" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" @@ -31,11 +31,15 @@ msgstr "" "Будь ласка, увімкніть JavaScript для перегляду [коментарів Disqus](http://" "disqus.com/?ref_noscript=%s)." -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " msgstr "Коментування можливе завдяки сервісу " -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "" + +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..7e0bde5011 --- /dev/null +++ b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po @@ -0,0 +1,540 @@ +# Translation of StatusNet - Facebook to Galician (Galego) +# Expored from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:49+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "" + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "Non pode rexistrarse se non acepta a licenza." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Houbo un erro descoñecido." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your " +"Facebook to a local account. You can either create a new account, or connect " +"with your existing account, if you have one." +msgstr "" + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Opcións de conexión" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Os meus textos e ficheiros están dispoñibles baixo %s, salvo os seguintes " +"datos privados: contrasinais, enderezos de correo electrónico e mensaxería " +"instantánea e números de teléfono." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Crear unha conta nova" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Crear un novo usuario con este alcume." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Novo alcume" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " +"espazos, tiles ou eñes" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Crear" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Contrasinal" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Non se permite o rexistro." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "O código da invitación é incorrecto." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"O alcume debe ter só letras en minúscula e números, e non pode ter espazos " +"en branco." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "" + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Ese alcume xa está en uso. Probe con outro." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "" + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "O nome de usuario ou contrasinal non son correctos." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Rexistro" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Enviar unha nota" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Que hai de novo, %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Caracteres dispoñibles" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Nome de usuario ou contrasinal incorrectos." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s e amigos" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Saltar" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Paxinación" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Despois" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Antes" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "" + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Enviar as invitacións" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Configuración de integración do Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Usuario do Facebook Connect" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Xa se identificou." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "" + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Inicio" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Convidar" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Configuracións" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr " unha nova conta." + +#: facebookaction.php:242 +msgid "Register" +msgstr "Rexistrarse" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Alcume" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Esqueceu ou perdeu o contrasinal?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Avisos" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "Clave API" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "Clave API proporcionada polo Facebook" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Gardar" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr " primeiro." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index 56e678f1aa..0f38d3a904 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/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-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -37,11 +37,11 @@ msgid "" "%2$s" msgstr "" "Вітаємо, %1$s. Нам дуже прикро про це повідомляти, але ми не в змозі " -"оновлювати Ваш статус у Facebook з %2$s і відключаємо додаток Facebook для " -"Вашого акаунту. Таке могло статися тому, що Ви, можливо, скасували " -"авторизацію для додатку Facebook або видалили Ваш акаунт Facebook. Ви маєте " -"можливість перезапустити додаток для Facebook і автоматичний імпорт Ваших " -"статусів на %2$s до Facebook буде поновлено.\n" +"оновлювати ваш статус у Facebook з %2$s і відключаємо додаток Facebook для " +"вашого акаунту. Таке могло статися тому, що ви, можливо, скасували " +"авторизацію для додатку Facebook або видалили ваш акаунт Facebook. Ви маєте " +"можливість перезапустити додаток для Facebook і автоматичний імпорт ваших " +"статусів з %2$s до Facebook буде поновлено.\n" "\n" "З повагою,\n" "\n" @@ -76,7 +76,7 @@ msgid "" "Facebook to a local account. You can either create a new account, or connect " "with your existing account, if you have one." msgstr "" -"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш акаунт Facebook " +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати ваш акаунт Facebook " "до акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " "використати такий, що вже існує." @@ -134,7 +134,7 @@ msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" -"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " +"Якщо ви вже маєте акаунт, увійдіть з вашим ім’ям користувача та паролем, аби " "приєднати їх до Facebook." #. TRANS: Field label. @@ -209,7 +209,7 @@ msgstr "Лишилось знаків" #: facebooknoticeform.php:196 msgctxt "BUTTON" msgid "Send" -msgstr "Так!" +msgstr "Так" #: facebookhome.php:103 msgid "Server error: Couldn't get user!" @@ -233,8 +233,8 @@ msgid "" "If you would like the %s app to automatically update your Facebook status " "with your latest notice, you need to give it permission." msgstr "" -"Якщо Ви бажаєте, щоб додаток %s автоматично оновлював Ваш статус у Facebook " -"останнім повідомленням, Ви повинні надати дозвіл." +"Якщо ви бажаєте, щоб додаток %s автоматично оновлював ваш статус у Facebook " +"останнім повідомленням, ви повинні надати дозвіл." #: facebookhome.php:210 msgid "Okay, do it!" @@ -330,7 +330,7 @@ msgstr "" #: FBConnectLogin.php:33 msgid "Already logged in." -msgstr "Тепер Ви увійшли." +msgstr "Тепер ви увійшли." #. TRANS: Instructions. #: FBConnectLogin.php:42 @@ -385,7 +385,7 @@ msgid "" "To use the %s Facebook Application you need to login with your username and " "password. Don't have a username yet?" msgstr "" -"Щоб використовувати додаток %s для Facebook, Ви мусите увійти, " +"Щоб використовувати додаток %s для Facebook, ви мусите увійти, " "використовуючи своє ім’я користувача та пароль. Ще не маєте імені " "користувача?" @@ -473,7 +473,7 @@ msgstr "Зберегти налаштування Facebook" #. TRANS: Instructions. #: FBConnectSettings.php:66 msgid "Manage how your account connects to Facebook" -msgstr "Зазначте, яким чином Ваш акаунт буде під’єднано до Facebook" +msgstr "Зазначте, яким чином ваш акаунт буде під’єднано до Facebook" #: FBConnectSettings.php:90 msgid "There is no Facebook user connected to this account." @@ -493,7 +493,7 @@ msgstr "Від’єднати мій акаунт від Facebook" msgid "" "Disconnecting your Faceboook would make it impossible to log in! Please " msgstr "" -"Якщо Ви від’єднаєте свій Facebook, то це унеможливить вхід до системи у " +"Якщо ви від’єднаєте свій Facebook, то це унеможливить вхід до системи у " "майбутньому! Будь ласка, " #. TRANS: Preceded by "Please " and followed by " first." @@ -522,7 +522,7 @@ msgstr "Ви від’єдналися від Facebook." #: FBConnectSettings.php:199 msgid "Not sure what you're trying to do." -msgstr "Хто зна, що Ви намагаєтеся зробити." +msgstr "Хто зна, що ви намагаєтеся зробити." #: facebooksettings.php:61 msgid "There was a problem saving your sync preferences!" @@ -554,8 +554,8 @@ msgid "" "If you would like %s to automatically update your Facebook status with your " "latest notice, you need to give it permission." msgstr "" -"Якщо Ви бажаєте, щоб додаток %s автоматично оновлював Ваш статус у Facebook " -"останнім повідомленням, Ви повинні надати дозвіл." +"Якщо ви бажаєте, щоб додаток %s автоматично оновлював ваш статус у Facebook " +"останнім повідомленням, ви повинні надати дозвіл." #: facebooksettings.php:124 #, php-format diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index 5614af9308..c96c212157 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:50+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-facebook\n" @@ -319,12 +319,12 @@ msgstr "" #: FBConnectLogin.php:33 msgid "Already logged in." -msgstr "" +msgstr "已登录。" #. TRANS: Instructions. #: FBConnectLogin.php:42 msgid "Login with your Facebook Account" -msgstr "" +msgstr "使用你的 Facebook 帐号登录" #. TRANS: Page title. #: FBConnectLogin.php:57 diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot new file mode 100644 index 0000000000..1fc0c34261 --- /dev/null +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -0,0 +1,31 @@ +# 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-10-01 20:22+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: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "" + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index eabd940b08..2193d04eec 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" @@ -28,5 +28,5 @@ msgid "" "readable names for locations based on user-provided lat/long pairs." msgstr "" "Використання сервісу Geonames дозволяє " -"отримувати географічні назви людською мовою замість координат, що вони були " -"вказані користувачем." +"отримувати зрозумілі географічні назви замість координат, що були вказані " +"користувачами." diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index ea1d65c204..7d1e5db537 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: Apmon +# Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-gravatar\n" @@ -73,5 +74,5 @@ msgid "" "The Gravatar plugin allows users to use their Gravatar with StatusNet." msgstr "" -"Das Gravatar Plugin erlaubt es Benutzern, ihr Gravatar mit StatusNet zu verwenden." diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index f31f0166f5..0e08abe888 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,7 +28,7 @@ msgstr "Встановити Gravatar" #: GravatarPlugin.php:63 msgid "If you want to use your Gravatar image, click \"Add\"." -msgstr "Якщо Ви бажаєте використовувати аватари Gravatar, тисніть «Додати»." +msgstr "Якщо ви бажаєте використовувати аватари Gravatar, тисніть «Додати»." #: GravatarPlugin.php:68 msgid "Add" @@ -41,7 +41,7 @@ msgstr "Видалити Gravatar" #: GravatarPlugin.php:81 msgid "If you want to remove your Gravatar image, click \"Remove\"." msgstr "" -"Якщо Ви бажаєте видалити свою аватару надану Gravatar, тисніть «Видалити»." +"Якщо ви бажаєте видалити свою аватару надану Gravatar, тисніть «Видалити»." #: GravatarPlugin.php:86 msgid "Remove" @@ -53,7 +53,7 @@ msgstr "Щоб використовувати Gravatar, спершу введі #: GravatarPlugin.php:140 msgid "You do not have an email address set in your profile." -msgstr "У Вашому профілі не вказано жодної електронної адреси." +msgstr "У вашому профілі не вказано жодної електронної адреси." #: GravatarPlugin.php:158 msgid "Failed to save Gravatar to the database." diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot new file mode 100644 index 0000000000..77cfbc84ae --- /dev/null +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -0,0 +1,48 @@ +# 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-10-01 20:22+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: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index 8c076b33d0..a02cb1d75e 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" @@ -31,5 +31,5 @@ msgid "" msgstr "" "Нескінченна прокрутка сторінки додає наступні функції сайту StatusNet: коли " "користувач прокручує сторінку до самого її низу, дописи з наступної сторінки " -"додаються автоматично. Це означає, що Вам не доведеться натискати «Назад», " -"аби переглянути попередні повідомлення." +"додаються автоматично. Це означає, що вам не доведеться натискати «Назад» (до " +"попередньої сторінки), аби переглянути повідомлення." diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index e200546101..bdef6bc9e9 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" @@ -30,4 +30,4 @@ msgstr "URL-адресу сервісу має бути зазначено." #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" -"Для скорочення URL-адрес використовується %1$s." +"Використання %1$s для скорочення URL-адрес." diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..5f1af6da9f --- /dev/null +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - Mapstraction to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:58+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-mapstraction\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" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Карта" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Полный размер" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" + +#: map.php:72 +msgid "No such user." +msgstr "Нет такого пользователя." + +#: map.php:79 +msgid "User has no profile." +msgstr "У пользователя нет профиля." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Карта друзей: %s" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index be3005cec1..11960be87d 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -36,8 +36,8 @@ msgid "" "Show maps of users' and friends' notices with Mapstraction." msgstr "" -"Показувати на мапі користувачів і їхні повідомлення за допомогою Mapstraction." +"Показ мапи дописів користувачів і друзів за допомогою Mapstraction." #: map.php:72 msgid "No such user." diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 9810369748..4dff264b4f 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" @@ -26,5 +26,5 @@ msgstr "" msgid "" "Use Memcached to cache query results." msgstr "" -"Використання Memcached для зберігання " -"пошукових запитів в кеші." +"Використання Memcached для кешування " +"результатів запитів." diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..7518c7638f --- /dev/null +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - Meteor to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:00+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Impossible de se connecter à %1$s sur le port %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Erreur lors de l’ajout d'un message du message meteor « %s »" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Extension pour réaliser des mises à jour « en temps réel » en utilisant Comet/" +"Bayeux." diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 933b706fea..f442784fda 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" @@ -77,4 +77,4 @@ msgstr "Вкласти файл" #: MobileProfilePlugin.php:417 msgid "XHTML MobileProfile output for supporting user agents." msgstr "" -"Вивід XHTML для перегляду на мобільному для підтримки пристроїв користувачів." +"Додаток MobileProfile генерує XHTML прийнятний для мобільних пристроїв." diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index f6df630042..73b4185400 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,12 +16,12 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 6cec215523..e1f537b240 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 85825d452a..07f6bb4886 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Ajoute des titres optionnels aux avis." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index 17773a64db..c0102cfd15 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Adde optional titulos a notas." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index bda31caa4e..4d9bd60d6a 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Додава наслови на забелешките (по избор)." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 50c95a569e..87c0e17479 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Legger valgfrie titler til notiser." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 0a71b63e08..5f6828e137 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Voegt optioneel titels toe aan mededelingen." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index 9f3b6bee67..7e23a3b147 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index 2176f74dc6..b1614838ba 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Nagdaragdag ng maaaring wala na mga pamagat sa mga pabatid." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr " %1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 44f3ca400c..de66ef8b34 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,25 +9,25 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\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" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Додавати до повідомлень необов’язкові заголовки." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 51f26d7ac7..baa64270b5 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -124,19 +124,23 @@ msgstr "" #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." msgstr "" +"Ongeldige ostatus_profile status: het ID voor zowel de groep als het profiel " +"voor %s is ingesteld." #. TRANS: Server exception. #: classes/Ostatus_profile.php:191 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." msgstr "" +"Ongeldige ostatus_profile status: het ID voor zowel de groep als het profiel " +"voor %s is leeg." #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. #: classes/Ostatus_profile.php:281 #, php-format msgid "Invalid actor passed to %1$s: %2$s." -msgstr "" +msgstr "Ongeldige actor doorgegeven aan %1$s: %2$s." #. TRANS: Server exception. #: classes/Ostatus_profile.php:374 @@ -144,6 +148,8 @@ msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." msgstr "" +"Ongeldig type doorgegeven aan Ostatus_profile::notify. Het moet een XML-" +"string of Activity zijn." #: classes/Ostatus_profile.php:404 msgid "Unknown feed format." @@ -220,12 +226,12 @@ msgstr "" #. TRANS: Exception. #: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 msgid "Can't save local profile." -msgstr "" +msgstr "Het was niet mogelijk het lokale profiel op te slaan." #. TRANS: Exception. #: classes/Ostatus_profile.php:1351 msgid "Can't save OStatus profile." -msgstr "" +msgstr "Het was niet mogelijk het Ostatusprofiel op te slaan." #. TRANS: Exception. #: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 @@ -236,35 +242,37 @@ msgstr "Geen geldig webfingeradres." #: classes/Ostatus_profile.php:1720 #, php-format msgid "Couldn't save profile for \"%s\"." -msgstr "" +msgstr "Het was niet mogelijk het profiel voor \"%s\" op te slaan." #. TRANS: Exception. %s is a webfinger address. #: classes/Ostatus_profile.php:1739 #, php-format msgid "Couldn't save ostatus_profile for \"%s\"." -msgstr "" +msgstr "Het was niet mogelijk het ostatus_profile voor \"%s\" op te slaan." #. TRANS: Exception. %s is a webfinger address. #: classes/Ostatus_profile.php:1747 #, php-format msgid "Couldn't find a valid profile for \"%s\"." -msgstr "" +msgstr "Er is geen geldig profiel voor \"%s\" gevonden." #: classes/Ostatus_profile.php:1789 msgid "Could not store HTML content of long post as file." msgstr "" +"Het was niet mogelijk de HTML-inhoud van het lange bericht als bestand op te " +"slaan." #. TRANS: Client exception. %s is a HTTP status code. #: classes/HubSub.php:208 #, php-format msgid "Hub subscriber verification returned HTTP %s." -msgstr "" +msgstr "De controle voor de hubabonnee heeft een HTTP %s teruggegeven." #. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. #: classes/HubSub.php:355 #, php-format msgid "Callback returned status: %1$s. Body: %2$s" -msgstr "" +msgstr "De callback heeft de status %1$s teruggegeven. Inhoud: %2$s." #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: lib/salmonaction.php:42 @@ -274,73 +282,73 @@ msgstr "Deze methode vereist een POST." #. TRANS: Client error. Do not translate "application/magic-envelope+xml" #: lib/salmonaction.php:47 msgid "Salmon requires \"application/magic-envelope+xml\"." -msgstr "" +msgstr "Salmon vereist \"application/magic-envelope+xml\"." #. TRANS: Client error. #: lib/salmonaction.php:57 msgid "Salmon signature verification failed." -msgstr "" +msgstr "De controle voor Salmon is mislukt." #. TRANS: Client error. #: lib/salmonaction.php:69 msgid "Salmon post must be an Atom entry." -msgstr "" +msgstr "Een Salmonbericht moet in Atomopmaak gemaakt zijn." #. TRANS: Client exception. #: lib/salmonaction.php:118 msgid "Unrecognized activity type." -msgstr "" +msgstr "Onbekend activiteitentype." #. TRANS: Client exception. #: lib/salmonaction.php:127 msgid "This target doesn't understand posts." -msgstr "" +msgstr "Deze bestemming begrijpt berichten niet." #. TRANS: Client exception. #: lib/salmonaction.php:133 msgid "This target doesn't understand follows." -msgstr "" +msgstr "Deze bestemming begrijpt volgen niet." #. TRANS: Client exception. #: lib/salmonaction.php:139 msgid "This target doesn't understand unfollows." -msgstr "" +msgstr "Deze bestemming begrijpt niet langer volgen niet." #. TRANS: Client exception. #: lib/salmonaction.php:145 msgid "This target doesn't understand favorites." -msgstr "" +msgstr "Deze bestemming begrijpt favorieten niet." #. TRANS: Client exception. #: lib/salmonaction.php:151 msgid "This target doesn't understand unfavorites." -msgstr "" +msgstr "Deze bestemming begrijpt favorieten verwijderen niet." #. TRANS: Client exception. #: lib/salmonaction.php:157 msgid "This target doesn't understand share events." -msgstr "" +msgstr "Deze bestemming begrijpt gebeurtenissen delen niet." #. TRANS: Client exception. #: lib/salmonaction.php:163 msgid "This target doesn't understand joins." -msgstr "" +msgstr "Deze bestemming begrijpt lid worden niet." #. TRANS: Client exception. #: lib/salmonaction.php:169 msgid "This target doesn't understand leave events." -msgstr "" +msgstr "Deze bestemming begrijpt uitschrijven van gebeurtenissen niet." #. TRANS: Exception. #: lib/salmonaction.php:197 msgid "Received a salmon slap from unidentified actor." -msgstr "" +msgstr "Er is een Salmonslap ontvangen van een niet-geïdentificeerde actor." #. TRANS: Exception. #: lib/discovery.php:110 #, php-format msgid "Unable to find services for %s." -msgstr "" +msgstr "Het was niet mogelijk diensten te vinden voor %s." #. TRANS: Exception. #: lib/xrd.php:64 @@ -350,17 +358,18 @@ msgstr "Ongeldige XML." #. TRANS: Exception. #: lib/xrd.php:69 msgid "Invalid XML, missing XRD root." -msgstr "" +msgstr "Ongeldige XML. De XRD-root mist." #. TRANS: Exception. #: lib/magicenvelope.php:80 msgid "Unable to locate signer public key." msgstr "" +"Het was niet mogelijk de publieke sleutel van de ondertekenaar te vinden." #. TRANS: Exception. #: lib/salmon.php:93 msgid "Salmon invalid actor for signing." -msgstr "" +msgstr "Ongeldige actor voor het ondertekenen van Salmon." #: tests/gettext-speedtest.php:57 msgid "Feeds" @@ -407,25 +416,26 @@ msgstr "" #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "" +"Ongeldig hub.secret \"%s\". Het moet minder dan tweehonderd bytes bevatten." #. TRANS: Client exception. #: actions/pushhub.php:161 #, php-format msgid "Invalid hub.topic \"%s\". User doesn't exist." -msgstr "" +msgstr "Ongeldig hub.topic \"%s\". De gebruiker bestaat niet." #. TRANS: Client exception. #: actions/pushhub.php:170 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." -msgstr "" +msgstr "Ongeldig hub.topic \"%s\". De groep bestaat niet." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. #: actions/pushhub.php:195 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" -msgstr "" +msgstr "Er is een ongeldige URL doorgegeven voor %1$s: \"%2$s\"" #: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 msgid "No such user." @@ -445,6 +455,8 @@ msgstr "In antwoord op een onbekende mededeling." #: actions/usersalmon.php:86 msgid "In reply to a notice not by this user and not mentioning this user." msgstr "" +"In antwoord op een mededeling niet door deze gebruiker en niet over of aan " +"deze gebruiker." #. TRANS: Client exception. #: actions/usersalmon.php:163 @@ -455,23 +467,25 @@ msgstr "Het was niet mogelijk de nieuwe favoriet op te slaan." #: actions/usersalmon.php:195 msgid "Can't favorite/unfavorite without an object." msgstr "" +"Het is niet mogelijk (niet langer) als favoriet te markeren zonder object." #. TRANS: Client exception. #: actions/usersalmon.php:207 msgid "Can't handle that kind of object for liking/faving." msgstr "" +"Dat object is niet beschikbaar voor (niet langer) als favoriet aanmerken." #. TRANS: Client exception. %s is an object ID. #: actions/usersalmon.php:214 #, php-format msgid "Notice with ID %s unknown." -msgstr "" +msgstr "De mededeling met ID %s is onbekend." #. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. #: actions/usersalmon.php:219 #, php-format msgid "Notice with ID %1$s not posted by %2$s." -msgstr "" +msgstr "De mededeling met ID %1$s is niet geplaatst foor %2$s." #. TRANS: Field label. #: actions/ostatusgroup.php:76 @@ -482,6 +496,8 @@ msgstr "Lid worden van groep" #: actions/ostatusgroup.php:79 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" +"Het adres voor de OStatusgroep. Bijvoorbeeld; http://example.net/group/" +"nickname." #. TRANS: Button text. #: actions/ostatusgroup.php:84 actions/ostatussub.php:73 @@ -580,6 +596,8 @@ msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" msgstr "" +"Het OStatusadres van de gebruiker. Bijvoorbeeld nickname@example.com of " +"http://example.net/nickname" #. TRANS: Button text. #. TRANS: Tooltip for button "Join". @@ -641,6 +659,7 @@ msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." msgstr "" +"Die feed was niet te bereiken. Probeer dat OStatusadres later nog een keer." #. TRANS: OStatus remote subscription dialog error. #: actions/ostatussub.php:315 @@ -650,7 +669,7 @@ msgstr "U bent al gebonneerd!" #. TRANS: OStatus remote subscription dialog error. #: actions/ostatussub.php:320 msgid "Remote subscription failed!" -msgstr "" +msgstr "Abonneren via een andere dienst is mislukt!" #: actions/ostatussub.php:367 actions/ostatusinit.php:63 msgid "There was a problem with your session token. Try again, please." @@ -744,38 +763,38 @@ msgstr "" #. TRANS: Page title. #: actions/ostatusinit.php:217 msgid "OStatus Connect" -msgstr "" +msgstr "OStatuskoppeling" #: actions/pushcallback.php:48 msgid "Empty or invalid feed id." -msgstr "" +msgstr "Het feed-ID is leeg of ongeldig." #. TRANS: Server exception. %s is a feed ID. #: actions/pushcallback.php:54 #, php-format msgid "Unknown PuSH feed id %s" -msgstr "" +msgstr "Het PuSH feed-ID %s is onbekend" #. TRANS: Client exception. %s is an invalid feed name. #: actions/pushcallback.php:93 #, php-format msgid "Bad hub.topic feed \"%s\"." -msgstr "" +msgstr "Ongeldige hub.topic feed \"%s\"." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. #: actions/pushcallback.php:98 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." -msgstr "" +msgstr "Ongeldig hub.verify_token %1$s voor %2$s." #. TRANS: Client exception. %s is an invalid topic. #: actions/pushcallback.php:105 #, php-format msgid "Unexpected subscribe request for %s." -msgstr "" +msgstr "Onverwacht abonneringsverzoek voor %s." #. TRANS: Client exception. %s is an invalid topic. #: actions/pushcallback.php:110 #, php-format msgid "Unexpected unsubscribe request for %s." -msgstr "" +msgstr "Onverwacht verzoek om abonnement op te hebben voor %s." diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 0169259617..5e49d12526 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -53,16 +53,16 @@ msgstr "Не читати" #: OStatusPlugin.php:608 #, php-format msgid "%1$s stopped following %2$s." -msgstr "%1$s припинив читати Ваші дописи %2$s." +msgstr "%1$s припинив читати ваші дописи %2$s." #: OStatusPlugin.php:636 msgid "Could not set up remote group membership." -msgstr "Не вдалося приєднатися до віддаленої групи." +msgstr "Не вдалося приєднатися до віддаленої спільноти." #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." -msgstr "Помилка приєднання до віддаленої групи." +msgstr "Помилка приєднання до віддаленої спільноти." #: OStatusPlugin.php:707 msgid "Leave" @@ -102,8 +102,8 @@ msgid "" "Follow people across social networks that implement OStatus." msgstr "" -"Слідкуйте за дописами людей з інших мереж, що підтримують протокол OStatus." +"Додає можливість слідкувати за дописами людей з інших мереж, які підтримують " +"протокол OStatus." #: classes/FeedSub.php:248 msgid "Attempting to start PuSH subscription for feed with no hub." @@ -212,7 +212,7 @@ msgstr "Місцевий користувач не може бути зазна #. TRANS: Exception. #: classes/Ostatus_profile.php:1280 msgid "Local group can't be referenced as remote." -msgstr "Місцева група не може бути зазначена у якості віддаленої." +msgstr "Локальну спільноту не можна зазначити у якості віддаленої." #. TRANS: Exception. #: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 @@ -414,7 +414,7 @@ msgstr "hub.topic «%s» невірний. Користувача не існу #: actions/pushhub.php:170 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." -msgstr "hub.topic «%s» невірний. Групи не існує." +msgstr "hub.topic «%s» невірний. Спільноти не існує." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. @@ -477,14 +477,14 @@ msgstr "Допис з ідентифікатором %1$s було надісл #. TRANS: Field label. #: actions/ostatusgroup.php:76 msgid "Join group" -msgstr "Приєднатися до групи" +msgstr "Долучитися до спільноти" #. TRANS: Tooltip for field label "Join group". #: actions/ostatusgroup.php:79 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" -"Адреса групи згідно протоколу OStatus, наприклад http://example.net/group/" -"nickname." +"Адреса спільноти згідно протоколу OStatus, наприклад http://example.net/" +"group/nickname." #. TRANS: Button text. #: actions/ostatusgroup.php:84 actions/ostatussub.php:73 @@ -494,7 +494,7 @@ msgstr "Продовжити" #: actions/ostatusgroup.php:103 msgid "You are already a member of this group." -msgstr "Ви вже є учасником цієї групи." +msgstr "Ви вже є учасником цієї спільноти." #. TRANS: OStatus remote group subscription dialog error. #: actions/ostatusgroup.php:138 @@ -504,17 +504,17 @@ msgstr "Ви вже учасник!" #. TRANS: OStatus remote group subscription dialog error. #: actions/ostatusgroup.php:149 msgid "Remote group join failed!" -msgstr "Приєднатися до віддаленої групи не вдалося!" +msgstr "Приєднатися до віддаленої спільноти не вдалося!" #. TRANS: OStatus remote group subscription dialog error. #: actions/ostatusgroup.php:153 msgid "Remote group join aborted!" -msgstr "Приєднання до віддаленої групи перервано!" +msgstr "Приєднання до віддаленої спільноти перервано!" #. TRANS: Page title for OStatus remote group join form #: actions/ostatusgroup.php:165 msgid "Confirm joining remote group" -msgstr "Підтвердження приєднання до віддаленої групи" +msgstr "Підтвердження приєднання до віддаленої спільноти" #. TRANS: Instructions. #: actions/ostatusgroup.php:176 @@ -522,50 +522,51 @@ msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" msgstr "" -"Ви маєте можливість приєднатися до груп на аналогічних сайтах. Просто " -"вставте URI профілю групи тут:" +"Ви можете долучатися до спільнот на аналогічних сайтах. Просто вставте URI " +"профілю спільноти тут:" #. TRANS: Client error. #: actions/groupsalmon.php:47 msgid "No such group." -msgstr "Такої групи немає." +msgstr "Такої спільноти немає." #. TRANS: Client error. #: actions/groupsalmon.php:53 msgid "Can't accept remote posts for a remote group." -msgstr "Не можу узгодити віддалену пересилку дописів до віддаленої групи." +msgstr "Не можу узгодити віддалену пересилку дописів до віддаленої спільноти." #. TRANS: Client error. #: actions/groupsalmon.php:127 msgid "Can't read profile to set up group membership." -msgstr "Не можу прочитати профіль, аби встановити членство у групі." +msgstr "Не можу прочитати профіль, аби долучитися до спільноти." #. TRANS: Client error. #: actions/groupsalmon.php:131 actions/groupsalmon.php:174 msgid "Groups can't join groups." -msgstr "Групи ніяк не можуть приєднуватися до груп." +msgstr "Спільноти ніяк не можуть приєднуватися до спільнот." #: actions/groupsalmon.php:144 msgid "You have been blocked from that group by the admin." -msgstr "Адміністратор групи заблокував Ваш профіль." +msgstr "Адміністратор спільноти заблокував ваш профіль." #. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. #: actions/groupsalmon.php:159 #, php-format msgid "Could not join remote user %1$s to group %2$s." -msgstr "Віддаленому користувачеві %1$s не вдалося приєднатися до групи %2$s." +msgstr "" +"Віддаленому користувачеві %1$s не вдалося долучитися до спільноти %2$s." #: actions/groupsalmon.php:171 msgid "Can't read profile to cancel group membership." msgstr "" -"Не вдається прочитати профіль користувача, щоб скасувати його членство в " -"групі." +"Не вдається прочитати профіль користувача, щоб скасувати його перебування у " +"спільноті." #. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. #: actions/groupsalmon.php:188 #, php-format msgid "Could not remove remote user %1$s from group %2$s." -msgstr "Не вдалось видалити віддаленого користувача %1$s з групи %2$s." +msgstr "Не вдалось видалити віддаленого користувача %1$s зі спільноти %2$s." #. TRANS: Field label for a field that takes an OStatus user address. #: actions/ostatussub.php:66 @@ -586,7 +587,7 @@ msgstr "" #: actions/ostatussub.php:110 msgctxt "BUTTON" msgid "Join this group" -msgstr "Приєднатися до групи" +msgstr "Приєднатися до спільноти" #. TRANS: Button text. #: actions/ostatussub.php:113 @@ -687,7 +688,7 @@ msgstr "Ви можете користуватись локальними під #: actions/ostatusinit.php:97 #, php-format msgid "Join group %s" -msgstr "Приєднатися до групи %s" +msgstr "Приєднатися до спільноти %s" #. TRANS: Button text. #: actions/ostatusinit.php:99 @@ -714,7 +715,7 @@ msgstr "Ім’я користувача" #: actions/ostatusinit.php:118 msgid "Nickname of the user you want to follow." -msgstr "Ім’я користувача, дописи якого Ви хотіли б читати." +msgstr "Ім’я користувача, дописи якого ви хотіли б читати." #. TRANS: Field label. #: actions/ostatusinit.php:123 @@ -724,7 +725,7 @@ msgstr "Профіль акаунту" #. TRANS: Tooltip for field label "Profile Account". #: actions/ostatusinit.php:125 msgid "Your account id (e.g. user@identi.ca)." -msgstr "Ідентифікатор Вашого акаунту (щось на зразок user@identi.ca)" +msgstr "Ідентифікатор вашого акаунту (щось на зразок user@identi.ca)" #. TRANS: Client error. #: actions/ostatusinit.php:147 diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 9330e1905a..c2fc037b22 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -109,7 +109,7 @@ msgstr "" msgid "OpenID removed." msgstr "" -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "" @@ -242,64 +242,64 @@ msgid "" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 7a4127c384..8de6d537d6 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:51+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 99::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-openid\n" @@ -42,8 +42,8 @@ msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -"Falls Sie eine OpenID zu Ihrem Konto hinzufügen wollen, tragen Sie sie in " -"dem nachfolgenden Feld ein und klicken Sie auf \"Hinzufügen\"" +"Falls du eine OpenID zu deinem Konto hinzufügen willst, trage sie in dem " +"nachfolgenden Feld ein und klicke auf „Hinzufügen“." #. TRANS: OpenID plugin logon form field label. #: openidsettings.php:109 openidlogin.php:159 @@ -63,16 +63,16 @@ msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" -"Das Entfernen der einzigen OpenID würde das einloggen unmöglich machen! " -"Falls Sie sie entfernen müssen, fügen Sie zuerst eine andere hinzu." +"Das Entfernen der einzigen OpenID würde das Einloggen unmöglich machen! " +"Falls du sie entfernen musst, füge zuerst eine andere hinzu." #: openidsettings.php:151 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" -"Sie können eine OpenID aus Ihrem Konto entfernen, indem Sie auf den Button " -"\"Entfernen\" klicken." +"Du kannst eine OpenID von deinem Konto entfernen, indem du auf den Button " +"„Entfernen“ klickst." #: openidsettings.php:174 openidsettings.php:215 msgid "Remove" @@ -94,8 +94,7 @@ msgstr "" #. TRANS: Message given when there is a problem with the user's session token. #: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Es gab ein Problem mit Ihrem Sitzungstoken. Bitte versuchen Sie es erneut." +msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: openidsettings.php:240 msgid "Can't add new providers." @@ -119,13 +118,13 @@ msgstr "Keine solche OpenID." #: openidsettings.php:309 msgid "That OpenID does not belong to you." -msgstr "Die OpenID gehört Ihnen nicht." +msgstr "Diese OpenID gehört dir nicht." #: openidsettings.php:313 msgid "OpenID removed." msgstr "OpenID entfernt." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -258,68 +257,68 @@ msgid "" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" -msgstr "Helfen Sie mir!" +msgstr "Hilf mir!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Suche" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Anmelden oder Registrieren per OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Hinzufügen oder Entfernen von OpenIDs" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" -"Benutzen Sie eine OpenID um sich auf der " -"Seite anzumelden." +"Benutzung der OpenID zur Anmeldung auf " +"der Seite" #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:118 @@ -510,7 +509,7 @@ msgstr "" #: openidlogin.php:154 msgid "Enter your username." -msgstr "Geben Sie Ihren Benutzernamen ein." +msgstr "Gib deinen Benutzernamen ein." #: openidlogin.php:155 msgid "You will be sent to the provider's site for authentication." @@ -569,7 +568,7 @@ msgstr "" #. TRANS: message in case a user tries to add an OpenID that is already connected to them. #: finishaddopenid.php:122 msgid "You already have this OpenID!" -msgstr "Sie haben bereits diese OpenID!" +msgstr "Du hast bereits diese OpenID!" #. TRANS: message in case a user tries to add an OpenID that is already used by another user. #: finishaddopenid.php:125 diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 5625a52a06..9378edf530 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -129,7 +129,7 @@ msgstr "Ce compte OpenID ne vous appartient pas." msgid "OpenID removed." msgstr "Compte OpenID retiré." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -284,64 +284,64 @@ msgstr "" "quelques secondes, essayez en cliquant le bouton ci-dessous." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Connexion au site" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Connexion" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aidez-moi !" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Aide" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Rechercher" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Se connecter ou s’inscrire avec OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Ajouter ou retirer des identifiants OpenID" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Configuration d’OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Utiliser OpenID pour se connecter au site." diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 53158ed7c0..bac4169d20 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -124,7 +124,7 @@ msgstr "Iste OpenID non appertine a te." msgid "OpenID removed." msgstr "OpenID removite." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -275,64 +275,64 @@ msgstr "" "tenta pulsar le button hic infra." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Authenticar te a iste sito" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Aperir session" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Cercar" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Aperir session o crear conto via OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Adder o remover OpenIDs" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Configuration de OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Usar OpenID pro aperir session al sito." diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 90bb3fcd28..ae2b00abf6 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -124,7 +124,7 @@ msgstr "Тој OpenID не Ви припаѓа Вам." msgid "OpenID removed." msgstr "OpenID е отстранет." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -272,64 +272,64 @@ msgstr "" "тогаш пристиснете го копчето подолу." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Најава на мреж. место" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Најава" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Напомош!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарување на луѓе или текст" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Пребарај" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Најава или регистрација со OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Додај или отстрани OpenID-ја" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Поставки за OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "Користете OpenID за најава." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 6a6310bc5c..6fd679bf89 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-openid\n" @@ -128,7 +128,7 @@ msgstr "Die OpenID is niet van u." msgid "OpenID removed." msgstr "OpenID verwijderd." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -278,64 +278,64 @@ msgstr "" "aanmeldprovider, klik dan op de onderstaande knop." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Aanmelden bij de site" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Hulp" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Zoeken naar mensen of tekst" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Zoeken" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Aanmelden of registreren met OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "OpenID's toevoegen of verwijderen" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "OpenID-instellingen" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Gebruik OpenID om aan te melden bij de " diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index b569ce432c..b7f246fe61 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -126,7 +126,7 @@ msgstr "Hindi mo pag-aari ang OpenID na iyan." msgid "OpenID removed." msgstr "Tinanggal ang OpenID." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -284,64 +284,64 @@ msgstr "" "ng ilang mga segundo, subukang pindutin ang pindutang nasa ibaba." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Lumagda sa sityo" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Lumagda" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Saklolohan ako!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Saklolo" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Maghanap ng mga tao o teksto" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Maghanap" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Lumagda o magpatala na may OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Idagdag o alisin ang mga OpenID" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Pagkakaayos ng OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Gamitin ang OpenID upang lumagda sa sityo." diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 8f84fc4621..7662e8d6ee 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -33,7 +33,7 @@ msgid "" "account. Manage your associated OpenIDs from here." msgstr "" "[OpenID](%%doc.openid%%) дозволяє входити до багатьох веб-сторінок " -"використовуючи той самий лоґін і пароль. Тут можна впорядкувати Ваші OpenID-" +"використовуючи той самий лоґін і пароль. Тут можна впорядкувати ваші OpenID-" "акаунти." #: openidsettings.php:101 @@ -45,7 +45,7 @@ msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -"Якщо Ви бажаєте додати OpenID до Вашого акаунту, введіть його у полі нижче і " +"Якщо ви бажаєте додати OpenID до вашого акаунту, введіть його у полі нижче і " "натисніть «Додати»." #. TRANS: OpenID plugin logon form field label. @@ -66,15 +66,15 @@ msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" -"Якщо для входу Ви використовуєте лише OpenID, то його видалення унеможливить " -"вхід у майбутньому! Якщо Вам потрібно видалити Ваш єдиний OpenID, то спершу " +"Якщо для входу ви використовуєте лише OpenID, то його видалення унеможливить " +"вхід у майбутньому! Якщо вам потрібно видалити ваш єдиний OpenID, то спершу " "додайте інший." #: openidsettings.php:151 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." -msgstr "Ви можете видалити Ваш OpenID просто натиснувши «Видалити»." +msgstr "Ви можете видалити ваш OpenID просто натиснувши кнопку «Видалити»." #: openidsettings.php:174 openidsettings.php:215 msgid "Remove" @@ -89,7 +89,7 @@ msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." msgstr "" -"У списку наведено OpenID-адреси, які ідентифіковані як Ваші і їм дозволено " +"У списку наведено OpenID-адреси, які ідентифіковані як ваші і їм дозволено " "вхід до сайту. Ви можете вилучити якийсь з них, тим самим скасувавши дозвіл " "на вхід." @@ -121,13 +121,13 @@ msgstr "Немає такого OpenID." #: openidsettings.php:309 msgid "That OpenID does not belong to you." -msgstr "Даний OpenID належить не Вам." +msgstr "Даний OpenID належить не вам." #: openidsettings.php:313 msgid "OpenID removed." msgstr "OpenID видалено." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -137,7 +137,7 @@ msgstr "Невірний URL OpenID-провайдера. Максимальна #: openidadminpanel.php:153 msgid "Invalid team name. Max length is 255 characters." -msgstr "Невірна назва групи. Максимальна довжина — 255 символів." +msgstr "Невірна назва спільноти. Максимальна довжина — 255 символів." #: openidadminpanel.php:210 msgid "Trusted provider" @@ -150,8 +150,8 @@ msgid "" "access to only your own users here." msgstr "" "За замовчуванням, відвідувачам дозволено користуватись послугами будь-якого " -"OpenID-провайдера. Якщо Ви користуєтесь своїм власним OpenID для загального " -"входу на веб-сторінки, то Ви вільні обмежити доступ лише колом Ваших власних " +"OpenID-провайдера. Якщо ви користуєтесь своїм власним OpenID для загального " +"входу на веб-сторінки, то ви вільні обмежити доступ лише колом ваших власних " "користувачів." #: openidadminpanel.php:220 @@ -239,8 +239,8 @@ msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" -"Ця форма має автоматичне себе представити. Якщо ні, то натисніть відповідну " -"кнопку, щоб перейти на сторінку Вашого OpenID-провайдера." +"Ця форма має автоматичне себе представити. Якщо ні, натисніть відповідну " +"кнопку, щоб перейти до сторінки вашого OpenID-провайдера." #. TRANS: OpenID plugin server error. #: openid.php:280 @@ -265,7 +265,7 @@ msgstr "Представлення входу за OpenID" #. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. #: openid.php:381 msgid "Requesting authorization from your login provider..." -msgstr "Запитуємо дозвіл у Вашого OpenID-провайдера..." +msgstr "Запитуємо дозвіл у вашого OpenID-провайдера..." #. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. #: openid.php:385 @@ -273,68 +273,68 @@ msgid "" "If you are not redirected to your login provider in a few seconds, try " "pushing the button below." msgstr "" -"Якщо за кілька секунд Вас не буде перенаправлено на сторінку входу Вашого " +"Якщо за кілька секунд вас не буде перенаправлено на сторінку входу вашого " "OpenID-провайдера, просто натисніть кнопку внизу." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Вхід на сайт" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Увійти" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Довідка" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текстів" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Пошук" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Увійти або зареєструватися за допомогою OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Додати або видалити OpenID" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Конфігурація OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Використання OpenID для входу на сайт." @@ -355,7 +355,7 @@ msgstr "Просто OpenID-провайдер. Нічого належного #. TRANS: Client error message trying to log on with OpenID while already logged on. #: finishopenidlogin.php:35 openidlogin.php:31 msgid "Already logged in." -msgstr "Тепер Ви увійшли." +msgstr "Тепер ви увійшли." #. TRANS: Message given if user does not agree with the site's license. #: finishopenidlogin.php:46 @@ -376,7 +376,7 @@ msgid "" "to a local account. You can either create a new account, or connect with " "your existing account, if you have one." msgstr "" -"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш OpenID до " +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати ваш OpenID до " "акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " "використати такий, що вже існує." @@ -419,8 +419,8 @@ msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" -"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " -"приєднати їх до Вашого OpenID." +"Якщо ви вже маєте акаунт, увійдіть з вашим ім’ям користувача та паролем, аби " +"приєднати їх до вашого OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. #: finishopenidlogin.php:153 @@ -454,7 +454,7 @@ msgstr "Автентифікуватись за OpenID не вдалося: %s" #: finishopenidlogin.php:198 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." -msgstr "Автентифікацію за OpenID перервано: Вам не можна відвідувати цей сайт." +msgstr "Автентифікацію за OpenID перервано: ви не можете увійти на цей сайт." #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. @@ -549,7 +549,7 @@ msgstr "Вас буде перенаправлено на веб-сторінк #. TRANS: OpenID plugin logon form field instructions. #: openidlogin.php:162 msgid "Your OpenID URL" -msgstr "URL Вашого OpenID" +msgstr "URL вашого OpenID" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:167 @@ -585,8 +585,8 @@ msgid "" "%s has asked to verify your identity. Click Continue to verify your " "identity and login without creating a new password." msgstr "" -"%s запрошує Вас пройти перевірку на ідентичність. Натисніть «Продовжити», щоб " -"перевірити Вашу особу та увійти не створюючи нового паролю." +"%s запрошує вас пройти перевірку на ідентичність. Натисніть «Продовжити», щоб " +"перевірити вашу особу та увійти, не створюючи нового паролю." #: openidtrust.php:135 msgid "Continue" @@ -604,7 +604,7 @@ msgstr "Ви не увійшли до системи." #. TRANS: message in case a user tries to add an OpenID that is already connected to them. #: finishaddopenid.php:122 msgid "You already have this OpenID!" -msgstr "У Вас вже є цей OpenID!" +msgstr "У вас вже є цей OpenID!" #. TRANS: message in case a user tries to add an OpenID that is already used by another user. #: finishaddopenid.php:125 diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index f77750d94d..599ebd6c6e 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" @@ -27,5 +27,5 @@ msgid "" "Use Piwik Open Source web analytics " "software." msgstr "" -"Використання Piwik — програмного " -"забезпечення з відкритим кодом для аналізу веб-потоків." +"Використання програмного забезпечення з відкритим кодом Piwik для аналізу веб-потоків." diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index 19738fe5e2..3e32b69b0c 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" @@ -37,5 +37,5 @@ msgid "" "Outputs \"powered by StatusNet\" after " "site name." msgstr "" -"Виводити «працює на StatusNet» після назви " -"сайту." +"Даний додаток виводить припис «працює на StatusNet» після назви сайту." diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index 27894ab728..6090e00428 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:26+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -60,7 +60,7 @@ msgid "" "Thanks for the subscription. When the feed(s) update(s), you will be " "notified." msgstr "" -"Дякуємо за підписку. Коли веб-стрічки оновляться, Вас буде поінформовано." +"Дякуємо за підписку. Коли веб-стрічки оновляться, вас буде поінформовано." #: LoggingAggregator.php:93 msgid "This resource requires an HTTP GET." @@ -76,6 +76,6 @@ msgid "" "updates for profile RSS feeds using the RSSCloud protocol." msgstr "" -"Додаток RSSCloud дозволяє Вашому StatusNet-сумісному сайту публікувати " +"Додаток RSSCloud дозволяє вашому StatusNet-сумісному сайту публікувати " "оновлення з веб-стрічок у реальному часі, використовуючи протокол RSSCloud." diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index dfab70994c..ff84b85fd2 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" @@ -36,4 +36,4 @@ msgstr "Не вдається знайти користувача після у #: RegisterThrottlePlugin.php:199 msgid "Throttles excessive registration from a single IP address." -msgstr "Обмеження кількості реєстрацій з певною IP-адресою." +msgstr "Цей додаток обмежує кількість реєстрацій з певної IP-адреси." diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 461cb0f9c4..365adb6aba 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:26+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" @@ -66,6 +66,6 @@ msgstr "Привіт, %s" #, php-format msgid "I have greeted you %d time." msgid_plural "I have greeted you %d times." -msgstr[0] "Я привітав Вас %d раз." -msgstr[1] "Я привітав Вас %d разів." -msgstr[2] "" +msgstr[0] "Я привітав вас %d раз." +msgstr[1] "Я привітав вас %d разів." +msgstr[2] "Я привітав вас %d разів." diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot new file mode 100644 index 0000000000..1062d382d0 --- /dev/null +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -0,0 +1,48 @@ +# 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-10-01 20:22+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: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot new file mode 100644 index 0000000000..f0bdb1aa6b --- /dev/null +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -0,0 +1,27 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+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: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index f3f881bf90..8644e65845 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -24,7 +24,7 @@ msgstr "" #: SubMirrorPlugin.php:90 msgid "Pull feeds into your timeline!" -msgstr "Стягування веб-каналів до Вашої стрічки повідомлень!" +msgstr "Стягування веб-каналів до вашої стрічки повідомлень!" #. TRANS: SubMirror plugin menu item on user settings page. #: SubMirrorPlugin.php:109 @@ -90,7 +90,7 @@ msgstr "Помилковий профіль для віддзеркалення. #: actions/basemirror.php:101 msgid "Can't mirror a StatusNet group at this time." -msgstr "На даний момент не можу віддзеркалювати групу на сайті StatusNet." +msgstr "На даний момент не можу віддзеркалювати спільноту на сайті StatusNet." #: actions/basemirror.php:115 msgid "This action only accepts POST requests." diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 97cc7d35c1..0826e2df74 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" @@ -24,4 +24,7 @@ msgstr "" #: SubscriptionThrottlePlugin.php:171 msgid "Configurable limits for subscriptions and group memberships." -msgstr "Обмеження для підписок та щодо членства у групах, що настроюються." +msgstr "" +"З допомогою цього додатку можна обмежувати кількість можливих підписок для " +"певного користувача, а також зазначати можливу кількість спільнот, до яких " +"користувач має право долучитися." diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index f374e8a9ed..775dc2a466 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: McDutchie +# Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-tabfocus\n" @@ -27,6 +28,6 @@ msgid "" "pressing the tab key focuses the \"Send\" button, matching the behavior of " "Twitter." msgstr "" -"TabFocus wijzigt het gedrag van het mededelingenformulier zodat, wanneer je " +"TabFocus wijzigt het gedrag van het mededelingenformulier zodat, wanneer u " "vanuit het tekstvak op de Tab-toets drukt, de focus op de knop \"Verzenden\" " "wordt gericht, net als in Twitter." diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 2a325ed197..eb31b1b248 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" @@ -30,4 +30,4 @@ msgid "" msgstr "" "TabFocus змінює поведінку форми надсилання дописів таким чином, що натиснута " "у вікні вводу повідомлення клавіша «Tab» перебирає на себе функцію кнопки " -"«Надіслати» («Так!»), що імітує інтерфейс Твіттера." +"«Надіслати» («Так»), що імітує інтерфейс Твіттера." diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index 336bec24e0..87a6203a12 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" @@ -26,4 +26,4 @@ msgstr "" #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" -"Для скорочення URL-адрес використовується %1$s." +"Використання %1$s для скорочення URL-адрес." diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index bd2377e848..25fccb705a 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index f02ed2ba9a..635781feb3 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Utiliser la bibliothèque TinyMCE pour permettre la modification de texte " diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 78485b8e39..66f66184ba 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Usar le bibliotheca TinyMCE pro permitter le modification de texto " diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index b8f325f1b7..37738df828 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Користи ја библиотеката TinyMCE за уредување со збогатен текст во " diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 9f1031a7ed..4792f715a0 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Bruk TinyMCE-biblioteket for å tillate rik tekstredigering i nettleseren." diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 374a7faeb2..58221c4ee1 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "TinyMCE gebruiken om WYSIWYG-bewerken in de browser mogelijk te maken." diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 486729f73c..a2f86006e7 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Utilizar a biblioteca TinyMCE para permitir edição em rich text no navegador." diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 10b64d8d81..d5c5f3da4c 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-plugin-tinymce\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" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Использование библиотеки TinyMCE, для редактирования текста в браузере." diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index ba038474f6..0d27f3b27b 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Gamitin ang aklatan ng TinyMCE upang pahintulutan ang pamamatnugot ng " diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index dfa0e16ea6..bc358c2b01 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\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" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Використання бібліотеки TinyMCE для простого форматування тексту у вікні " diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 4935076743..f6def52901 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-twitterbridge\n" @@ -23,7 +23,7 @@ msgstr "" #: twitter.php:350 msgid "Your Twitter bridge has been disabled." -msgstr "" +msgstr "Uw koppeling naar Twitter is uitgeschakeld." #: twitter.php:354 #, php-format @@ -40,6 +40,19 @@ msgid "" "Regards,\n" "%3$s" msgstr "" +"Hallo, %1$s.\n" +"\n" +"Het spijt ons u te moeten meedelen dat uw koppeling met Twitter is " +"uitgeschakeld. De site heeft niet langer het recht om uw Twitterstatus bij " +"te werken. Hebt u wellicht de rechten voor %3$s ingetrokken?\n" +"\n" +"U kunt uw koppeling met Twitter opnieuw inschakelen via de pagina met " +"Twitterinstellingen:\n" +"\n" +"\t%2$s\n" +"\n" +"Met vriendelijke groet,\n" +"%3$s" #: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 #: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 @@ -48,25 +61,27 @@ msgstr "Twitter" #: TwitterBridgePlugin.php:152 msgid "Login or register using Twitter" -msgstr "" +msgstr "Aanmelden of registreren via Twitter" #: TwitterBridgePlugin.php:175 msgid "Twitter integration options" -msgstr "" +msgstr "Opties voor Twitterintegratie" #: TwitterBridgePlugin.php:292 msgid "Twitter bridge configuration" -msgstr "" +msgstr "Instellingen voor Twitterkoppeling" #: TwitterBridgePlugin.php:316 msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" +"De plugin Twitter Brigde maakt het mogelijk en StatusNetinstallatie te " +"integreren met Twitter." #: twitteradminpanel.php:62 msgid "Twitter bridge settings" -msgstr "" +msgstr "Instellingen Twitterkoppeling" #: twitteradminpanel.php:145 msgid "Invalid consumer key. Max length is 255 characters." @@ -78,7 +93,7 @@ msgstr "Ongeldig gebruikersgeheim. De maximale lengte is 255 tekens." #: twitteradminpanel.php:207 msgid "Twitter application settings" -msgstr "" +msgstr "Instellingen Twitterapplicatie" #: twitteradminpanel.php:213 msgid "Consumer key" @@ -86,7 +101,7 @@ msgstr "Gebruikerssleutel" #: twitteradminpanel.php:214 msgid "Consumer key assigned by Twitter" -msgstr "" +msgstr "Gebruikerssleutel uitgegeven door Twitter" #: twitteradminpanel.php:222 msgid "Consumer secret" @@ -94,19 +109,19 @@ msgstr "Gebruikersgeheim" #: twitteradminpanel.php:223 msgid "Consumer secret assigned by Twitter" -msgstr "" +msgstr "Gebruikersgeheim uitgegeven door Twitter" #: twitteradminpanel.php:233 msgid "Note: a global consumer key and secret are set." -msgstr "" +msgstr "Let op: er zijn een gebruikerssleutel en gebruikersgeheim ingesteld." #: twitteradminpanel.php:240 msgid "Integration source" -msgstr "" +msgstr "Integratiebron" #: twitteradminpanel.php:241 msgid "Name of your Twitter application" -msgstr "" +msgstr "Naam van uw Twitterapplicatie" #: twitteradminpanel.php:253 msgid "Options" @@ -114,21 +129,25 @@ msgstr "Opties" #: twitteradminpanel.php:260 msgid "Enable \"Sign-in with Twitter\"" -msgstr "" +msgstr "\"Aanmelden via Twitter\" inschakelen" #: twitteradminpanel.php:262 msgid "Allow users to login with their Twitter credentials" msgstr "" +"Gebruikers toestaan aan te melden met hun gebruikersnaam en wachtwoord van " +"Twitter" #: twitteradminpanel.php:269 msgid "Enable Twitter import" -msgstr "" +msgstr "Twitterimport inschakelen" #: twitteradminpanel.php:271 msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" +"Gebruikers toestaan de tijdlijnen van hun Twittervrienden te importeren. " +"Vereist handmatig te configureren daemons." #: twitteradminpanel.php:288 twittersettings.php:200 msgid "Save" @@ -144,11 +163,11 @@ msgstr "U bent al aangemeld." #: twitterlogin.php:64 msgid "Twitter Login" -msgstr "" +msgstr "Aanmelden via Twitter" #: twitterlogin.php:69 msgid "Login with your Twitter account" -msgstr "" +msgstr "Aanmelden met uw Twittergebruiker" #: twitterlogin.php:87 msgid "Sign in with Twitter" @@ -166,16 +185,18 @@ msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." #: twitterauthorization.php:135 msgid "Something weird happened." -msgstr "" +msgstr "Er is iets vreemds gebeurd." #: twitterauthorization.php:181 twitterauthorization.php:229 #: twitterauthorization.php:300 msgid "Couldn't link your Twitter account." -msgstr "" +msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." #: twitterauthorization.php:201 msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +"Het was niet mogelijk uw Twittergebruiker te koppelen: het oauth_token kwam " +"niet overeen." #: twitterauthorization.php:312 #, php-format @@ -184,14 +205,17 @@ msgid "" "account to a local account. You can either create a new account, or connect " "with your existing account, if you have one." msgstr "" +"De is de eerste keer dat u aanmeldt bij %s en dan moeten we uw " +"Twittergebruiker koppelen met uw lokale gebruiker. U kunt een nieuwe " +"gebruiker aanmaken of koppelen met een bestaande gebruiker als u die al hebt." #: twitterauthorization.php:318 msgid "Twitter Account Setup" -msgstr "" +msgstr "Instellingen Twittergebruiker" #: twitterauthorization.php:351 msgid "Connection options" -msgstr "" +msgstr "Koppelingsinstellingen" #: twitterauthorization.php:360 #, php-format @@ -208,7 +232,7 @@ msgstr "Nieuwe gebruiker aanmaken" #: twitterauthorization.php:383 msgid "Create a new user with this nickname." -msgstr "" +msgstr "Nieuwe gebruiker met deze naam aanmaken." #: twitterauthorization.php:386 msgid "New nickname" @@ -224,13 +248,15 @@ msgstr "Aanmaken" #: twitterauthorization.php:396 msgid "Connect existing account" -msgstr "" +msgstr "Verbinden met een bestaande gebruiker" #: twitterauthorization.php:398 msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" +"Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en " +"wachtwoord om deze daarna te koppelen met uw Twittergebruiker." #: twitterauthorization.php:401 msgid "Existing nickname" @@ -269,7 +295,7 @@ msgstr "" #: twitterauthorization.php:474 msgid "Error registering user." -msgstr "" +msgstr "Fout bij het registreren van de gebruiker." #: twitterauthorization.php:485 twitterauthorization.php:523 #: twitterauthorization.php:543 @@ -289,6 +315,8 @@ msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." msgstr "" +"Koppel uw Twittergebruiker om uw berichten te delen met uw Twittervrienden " +"en vice versa." #: twittersettings.php:116 msgid "Twitter account" @@ -296,11 +324,11 @@ msgstr "Twittergebruiker" #: twittersettings.php:121 msgid "Connected Twitter account" -msgstr "" +msgstr "Gekoppelde Twittergebruiker" #: twittersettings.php:126 msgid "Disconnect my account from Twitter" -msgstr "" +msgstr "Mijn gebruiker loskoppelen van Twitter" #: twittersettings.php:132 msgid "Disconnecting your Twitter could make it impossible to log in! Please " @@ -323,6 +351,8 @@ msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +"Uw gebruiker bij %1$s behouden maar deze loskoppelen van Twitter. U kunt uw " +"wachtwoord va %1$s gebruiken om aan te melden." #: twittersettings.php:150 msgid "Disconnect" @@ -334,19 +364,19 @@ msgstr "Voorkeuren" #: twittersettings.php:161 msgid "Automatically send my notices to Twitter." -msgstr "" +msgstr "Mijn berichten automatisch naar Twitter verzenden" #: twittersettings.php:168 msgid "Send local \"@\" replies to Twitter." -msgstr "" +msgstr "Lokale antwoorden met \"2\" naar Twitter verzenden." #: twittersettings.php:175 msgid "Subscribe to my Twitter friends here." -msgstr "" +msgstr "Hier op mijn Twittervrienden abonneren." #: twittersettings.php:184 msgid "Import my friends timeline." -msgstr "" +msgstr "Tijdlijn van mijn vrienden importeren." #: twittersettings.php:202 msgid "Add" @@ -358,15 +388,15 @@ msgstr "Het formulier is onverwacht ingezonden." #: twittersettings.php:254 msgid "Couldn't remove Twitter user." -msgstr "" +msgstr "Het was niet mogelijk de Twittergebruiker te verwijderen." #: twittersettings.php:258 msgid "Twitter account disconnected." -msgstr "" +msgstr "De Twittergebruiker is ontkoppeld." #: twittersettings.php:278 twittersettings.php:288 msgid "Couldn't save Twitter preferences." -msgstr "" +msgstr "Het was niet mogelijk de Twittervoorkeuren op te slaan." #: twittersettings.php:292 msgid "Twitter preferences saved." diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index e850ba8f54..e855ed3fcb 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -41,13 +41,13 @@ msgid "" "Regards,\n" "%3$s" msgstr "" -"Вітаємо, %1$s. Нам дуже прикро про це повідомляти, але з’єднання Вашого " -"акаунту на сайті StatusNet з Twitter було відключено. Здається, ми більше не " -"маємо дозволу оновлювати Ваші статуси в Twitter. Можливо, це саме Ви " -"скасували дозвіл %3$s?\n" +"Вітаємо, %1$s. Нам дуже прикро про це повідомляти, але з’єднання вашого " +"акаунту StatusNet з Twitter було відключено. Здається, ми більше не маємо " +"дозволу оновлювати ваші статуси в Twitter. Можливо, це саме ви скасували " +"дозвіл %3$s?\n" "\n" -"Ви маєте можливість перезапустити додаток для автоматичного імпорту Ваших " -"статусів до Twitter, завітавши до сторінки Ваших налаштувань:\n" +"Ви маєте можливість перезапустити додаток для автоматичного імпорту ваших " +"статусів до Twitter, завітавши до сторінки ваших налаштувань:\n" "\n" "%2$s\n" "\n" @@ -76,8 +76,8 @@ msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" -"Додаток «місток» з Twitter дозволяє інтегрувати StatusNet-сумісний сайт з Twitter." +"Додаток TwitterBridge дозволяє інтегрувати StatusNet-сумісний сайт з Twitter, встановлюючи так званий «місток»." #: twitteradminpanel.php:62 msgid "Twitter bridge settings" @@ -121,7 +121,7 @@ msgstr "Джерело об’єднання" #: twitteradminpanel.php:241 msgid "Name of your Twitter application" -msgstr "Назва Вашого додатку для Twitter" +msgstr "Назва вашого додатку для Twitter" #: twitteradminpanel.php:253 msgid "Options" @@ -187,12 +187,12 @@ msgstr "Сталося щось незрозуміле." #: twitterauthorization.php:181 twitterauthorization.php:229 #: twitterauthorization.php:300 msgid "Couldn't link your Twitter account." -msgstr "Не вдається підключити Ваш акаутнт Twitter." +msgstr "Не вдається підключити ваш акаунт Twitter." #: twitterauthorization.php:201 msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" -"Не вдається підключити Ваш акаутнт Twitter: невідповідність oauth_token." +"Не вдається підключити ваш акаунт Twitter: невідповідність oauth_token." #: twitterauthorization.php:312 #, php-format @@ -201,9 +201,9 @@ msgid "" "account to a local account. You can either create a new account, or connect " "with your existing account, if you have one." msgstr "" -"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш акаунт Twitter " +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати ваш акаунт Twitter " "до акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " -"використати такий, що вже існує, якщо він у Вас є." +"використати такий, що вже існує, якщо він у вас є." #: twitterauthorization.php:318 msgid "Twitter Account Setup" @@ -252,7 +252,7 @@ msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" -"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " +"Якщо ви вже маєте акаунт, увійдіть з вашим ім’ям користувача та паролем, аби " "приєднати їх до Twitter." #: twitterauthorization.php:401 @@ -329,7 +329,7 @@ msgstr "Від’єднати мій акаунт від Twitter" #: twittersettings.php:132 msgid "Disconnecting your Twitter could make it impossible to log in! Please " msgstr "" -"Якщо Ви від’єднаєте свій Twitter, то це унеможливить вхід до системи у " +"Якщо ви від’єднаєте свій Twitter, то це унеможливить вхід до системи у " "майбутньому! Будь ласка, " #: twittersettings.php:136 @@ -347,7 +347,7 @@ msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" -"Зберегти Ваш акаунт %1$s, але від’єднати його від Twitter. Ви можете " +"Зберегти ваш акаунт %1$s, але від’єднати його від Twitter. Ви можете " "використовувати пароль від %1$s для входу на сайт." #: twittersettings.php:150 diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 5ba434af7c..159fdb2de8 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,16 +17,16 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: YammerImportPlugin.php:97 +#: YammerImportPlugin.php:98 msgid "Yammer" msgstr "" -#: YammerImportPlugin.php:98 actions/yammeradminpanel.php:122 +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 msgid "Yammer import" msgstr "" #: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 -#: lib/yammerprogressform.php:56 actions/yammerauth.php:71 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 msgid "Connect to Yammer" msgstr "" @@ -42,16 +42,16 @@ msgstr "" msgid "Change API key" msgstr "" -#: lib/yammerimporter.php:198 +#: lib/yammerimporter.php:230 msgid "Expertise:" msgstr "" -#: lib/yammerimporter.php:398 +#: lib/yammerimporter.php:433 #, php-format msgid "Invalid avatar URL %s." msgstr "" -#: lib/yammerimporter.php:405 +#: lib/yammerimporter.php:440 #, php-format msgid "Unable to fetch avatar from %s." msgstr "" @@ -110,7 +110,7 @@ msgstr "" msgid "Verification code:" msgstr "" -#: lib/yammerauthverifyform.php:98 +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 msgid "Continue" msgstr "" @@ -118,114 +118,135 @@ msgstr "" msgid "Save code and begin import" msgstr "" -#: lib/yammerprogressform.php:51 +#: lib/yammerprogressform.php:63 msgid "Initialize" msgstr "" -#: lib/yammerprogressform.php:52 +#: lib/yammerprogressform.php:64 msgid "No import running" msgstr "" -#: lib/yammerprogressform.php:53 +#: lib/yammerprogressform.php:65 msgid "Initiated Yammer server connection..." msgstr "" -#: lib/yammerprogressform.php:57 +#: lib/yammerprogressform.php:69 msgid "Awaiting authorization..." msgstr "" -#: lib/yammerprogressform.php:58 +#: lib/yammerprogressform.php:70 msgid "Connected." msgstr "" -#: lib/yammerprogressform.php:61 +#: lib/yammerprogressform.php:73 msgid "Import user accounts" msgstr "" -#: lib/yammerprogressform.php:62 +#: lib/yammerprogressform.php:74 #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:63 +#: lib/yammerprogressform.php:75 #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:66 +#: lib/yammerprogressform.php:78 msgid "Import user groups" msgstr "" -#: lib/yammerprogressform.php:67 +#: lib/yammerprogressform.php:79 #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:68 +#: lib/yammerprogressform.php:80 #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:71 +#: lib/yammerprogressform.php:83 msgid "Prepare public notices for import" msgstr "" -#: lib/yammerprogressform.php:72 +#: lib/yammerprogressform.php:84 #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:73 +#: lib/yammerprogressform.php:85 #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:76 +#: lib/yammerprogressform.php:88 msgid "Import public notices" msgstr "" -#: lib/yammerprogressform.php:77 +#: lib/yammerprogressform.php:89 #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:78 +#: lib/yammerprogressform.php:90 #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:81 +#: lib/yammerprogressform.php:93 msgid "Done" msgstr "" -#: lib/yammerprogressform.php:82 lib/yammerprogressform.php:83 +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 msgid "Import is complete!" msgstr "" -#: lib/yammerprogressform.php:90 +#: lib/yammerprogressform.php:108 msgid "Import status" msgstr "" -#: lib/yammerprogressform.php:113 +#: lib/yammerprogressform.php:132 msgid "Waiting..." msgstr "" +#: lib/yammerprogressform.php:146 +msgid "Reset import state" +msgstr "" + +#: lib/yammerprogressform.php:151 +msgid "Pause import" +msgstr "" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +msgid "Abort import" +msgstr "" + #: actions/yammeradminpanel.php:45 msgid "Yammer Import" msgstr "" @@ -237,3 +258,7 @@ msgid "" "transferred; in the future this may be supported for imports done by " "verified administrators on the Yammer side." msgstr "" + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..30bbf90519 --- /dev/null +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -0,0 +1,285 @@ +# Translation of StatusNet - YammerImport to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Import Yammer" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Connexion à Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Démarrer l’identification" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Demander l’autorisation de se connecter à un compte Yammer" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "Changer la clé de l’API" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Expertise :" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL d’avatar invalide : %s." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Impossible de récupérer l’avatar depuis « %s »." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "Enregistrement de l’API Yammer" + +#: lib/yammerapikeyform.php:72 +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" +"Avant de pouvoir nous connecter à votre réseau Yammer, vous devez " +"enregistrer l’application d’import comme étant autorisée à recueillir des " +"données en votre nom. Cet enregistrement ne sera valable que pour votre " +"propre réseau. Suivez ce lien pour enregistrer l’application sur Yammer ; si " +"cela est nécessaire, il vous sera demandé de vous identifier :" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Ouvrir le formulaire d’enregistrement de l’application Yammer" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Copiez dans le formulaire ci-dessous la clé et le secret utilisateur qui " +"vous sont donnés :" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Clé de l'utilisateur :" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Secret de l'utilisateur :" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Sauvegarder" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Enregistrer ces clés utilisateur" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Suivez ce lien pour confirmer l’autorisation sur Yammer ; il vous sera " +"demandé de vous identifier si nécessaire :" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Ouvrir la fenêtre d’identification Yammer" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Copiez ci-dessous le code de vérification qui vous est donné :" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Code de vérification :" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Continuer" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Enregistrer le code et commencer l’import" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Initialiser" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Aucun import en cours d’exécution" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Connexion au serveur Yammer initiée..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "En attente d’autorisation..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Connecté." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Importer des comptes utilisateur" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Import de %d utilisateur..." +msgstr[1] "Import de %d utilisateurs..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "%d utilisateur importé." +msgstr[1] "%d utilisateurs importés." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Importer des groupes utilisateur" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Import de %d groupe..." +msgstr[1] "Import de %d groupes..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "%d groupe importé." +msgstr[1] "%d groupes importés." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Préparation de l’import d’avis publiques" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Préparation de %d avis..." +msgstr[1] "Préparation de %d avis..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "%d avis prépara." +msgstr[1] "%d avis préparés." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Import d’avis publiques" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Import de %d avis..." +msgstr[1] "Import de %d avis..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "%d avis importé." +msgstr[1] "%d avis importés." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Fait" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "L’import est terminé !" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "État de l’import" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Attente..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "État de l’import" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Import Yammer" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Import Yammer" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Import Yammer" + +#: actions/yammeradminpanel.php:55 +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" +"Cet outil d’import Yammer est encore en phase de test et est en partie " +"incomplet. Les abonnements d’utilisateurs et les appartenances aux groupes " +"ne sont actuellement pas transférés ; ceci pourrait être pris en charge dans " +"le futur pour les imports réalisés par les administrateurs autorisés du côté " +"de Yammer." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..79406f4ec0 --- /dev/null +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -0,0 +1,285 @@ +# Translation of StatusNet - YammerImport to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Importation de Yammer" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Connecter a Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Comenciar authentication" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Requestar autorisation de connecter al conto Yammer" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "Cambiar clave API" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Expertise:" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL de avatar %s invalide." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Incapace de obtener avatar ab %s." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "Registration in API de Yammer" + +#: lib/yammerapikeyform.php:72 +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" +"Ante que nos pote connecter a tu rete Yammer, tu debe registrar le " +"importator como application autorisate a colliger datos in tu nomine. Iste " +"registration functionara solmente pro tu proprie rete. Seque iste ligamine " +"pro registrar le application a Yammer; tu essera demandate de aperir session " +"si necessari:" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Aperir formulario de registration del application Yammer" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Copia le clave e secreto de consumitor que tu recipe in le formulario hic " +"infra:" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Clave de consumitor:" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Secreto de consumitor:" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Salveguardar" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Salveguardar iste claves de consumitor" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Seque iste ligamine pro confirmar autorisation a Yammer; tu essera demandate " +"de aperir session si necessari:" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Aperir fenestra de authentication a Yammer" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Copia hic infra le codice de verification que tu recipe:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Codice de verification:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Continuar" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Salveguardar codice e comenciar importation" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Initialisar" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Nulle importation in curso" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Connexion al servitor Yammer initiate..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Attende autorisation..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Connectite." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Importar contos de usator" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Importa %d usator..." +msgstr[1] "Importa %d usatores..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "%d usator importate." +msgstr[1] "%d usatores importate." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Importar gruppos de usatores" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Importa %d gruppo..." +msgstr[1] "Importa %d gruppos..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "%d gruppo importate." +msgstr[1] "%d gruppos importate." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Preparar notas public pro importation" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Prepara %d nota..." +msgstr[1] "Prepara %d notas..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "%d nota preparate." +msgstr[1] "%d notas preparate." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Importar notas public" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Importa %d nota..." +msgstr[1] "Importa %d notas..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "%d nota importate." +msgstr[1] "%d notas importate." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Finite" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "Le importation es complete!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "Stato de importation" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Attende..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "Stato de importation" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Importation de Yammer" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Importation de Yammer" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Importation de Yammer" + +#: actions/yammeradminpanel.php:55 +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" +"Iste instrumento de importation de Yammer es ancora in phase de test, e es " +"incomplete in alcun areas. Actualmente le subscriptiones de usator e " +"membratos de gruppos non es transferite; in le futuro isto pote esser " +"supportate pro importationes facite per administratores verificate al latere " +"de Yammer." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..ab0ec3c6ce --- /dev/null +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -0,0 +1,284 @@ +# Translation of StatusNet - YammerImport to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Увоз од Yammer" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Поврзување со Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Започни проверка" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Барај овластување за поврзување со сметката на Yammer" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "Промени API-клуч" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Стручност:" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Неважечка URL-адреса на аватарот: %s." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Не можев да го преземам аватарот од %s." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "Регистрација на API за Yammer" + +#: lib/yammerapikeyform.php:72 +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" +"Пред да можеме да Ве поврземе на Вашата Yammer-мрежа, ќе треба да го " +"регистрирате увозникот како програм овластен за преземање на податоци во " +"Ваше име. Оваа регистрација ќе работи само за Вашата мрежа. Проследете ја " +"врската за да го регистрирате програмот на Yammer. Ако е потребно, ќе Ви " +"биде побарано да се најавите:" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Отвори образец за регистрација на програм на Yammer" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Ископирајте ги потрошувачкиот клуч и тајната што се наведени во образецот " +"подолу:" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Потрошувачки клуч:" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Потрошувачка тајна:" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Зачувај" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Зачувај ги овие потрошувачки клучеви" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Проследете ја врскава за да го потврдите овластувањето на страницата на " +"Yammer. Ако е потребно, ќе Ви биде побарано да се најавите:" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Отвори прозорец за потврда на Yammer" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Ископирајте го долунаведениот потврден код:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Потврден код:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Продолжи" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Зачувај код и почни со увоз" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Започни" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Увозот не е во тек" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Започнав со поврзувањето со опслужувачот на Yammer..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Чекам на овластување..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Поврзано." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Увези кориснички сметки" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Увезувам %d корисник..." +msgstr[1] "Увезувам %d корисници..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "Увезов %d корисник." +msgstr[1] "Увезов %d корисници." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Увези кориснички групи" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Увезувам %d група..." +msgstr[1] "Увезувам %d групи..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "Увезов %d група." +msgstr[1] "Увезов %d групи." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Подготви јавни известувања за увоз" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Подготвувам %d известување..." +msgstr[1] "Подготвувам %d известувања..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "Подготвив %d известување." +msgstr[1] "Подготвив %d известувања." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Увези јавни известувања" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Увезувам %d известување..." +msgstr[1] "Увезувам %d известувања..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "Увезов %d известување..." +msgstr[1] "Увезов %d известувања..." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Готово" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "Увозот заврши!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "Увези статус" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Чекам..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "Увези статус" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Увоз од Yammer" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Увоз од Yammer" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Увоз од Yammer" + +#: actions/yammeradminpanel.php:55 +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" +"Оваа алатка за увоз од Yammer сè уште е во фаза на испробување, а наместа е " +"недработена. Моментално не можат да се префрлаат кориснички претплати и " +"членства во групи. Ваквите префрлања може да се поддржани во иднина, и тие " +"би ги вршеле овластени администратори на Yammer." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..64d2a27f1b --- /dev/null +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -0,0 +1,285 @@ +# Translation of StatusNet - YammerImport to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); 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-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Yammerimport" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Verbinden met Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Authenticatie starten" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Autorisatie verzoeken om te verbinden met Yammergebruiker" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "API-sleutel wijzigen" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Expertise:" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "%s is een ongeldige URL voor avatar." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Het was niet mogelijk de avatar op te halen van %s." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "API-registratie voor Yammer" + +#: lib/yammerapikeyform.php:72 +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" +"Voordat er verbinding gemaakt kan worden met uw Yammernetwerk, moet u het " +"importprogramma eerst registreren als een applicatie die namens u gegevens " +"mag ophalen. Deze registratie geldt alleen voor uw eigen netwerk. Volg de " +"onderstaande verwijzing om de applicatie bij Yammer te registreren. Als het " +"nodig is om aan te melden, wordt u dat gevraagd:" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Applicatieregistratieformulier voor Yammer openen" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Kopieer de gebruikerssleutel en het gebruikersgeheim dat u hebt gekregen in " +"het formulier hieronder:" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Gebruikerssleutel:" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Gebruikersgeheim:" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Opslaan" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Deze gebruikerssleutels opslaan" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Volg deze verwijzing om de autorisatie bij Yammer te bevestigen. Als u moet " +"aanmelden wordt daarom gevraagd:" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Authenticatievenster voor Yammer openen" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Kopieer de verificatiecode die u hebt gekregen hieronder:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Verificatiecode:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Doorgaan" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Code opslaan en importeren" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Initialiseren" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Er loopt geen import" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Er is verbinding gemaakt met de Yammerserver..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Wachten op autorisatie..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Verbonden." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Gebruikers importeren" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Bezig met het importeren van %d gebruiker..." +msgstr[1] "Bezig met het importeren van %d gebruikers..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "%d gebruiker geïmporteerd." +msgstr[1] "%d gebruikers geïmporteerd." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Gebruikersgroepen importeren" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Bezig met het importeren van %d gebruikersgroep..." +msgstr[1] "Bezig met het importeren van %d gebruikersgroepen..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "%d gebruikersgroep geïmporteerd." +msgstr[1] "%d gebruikersgroepen geïmporteerd." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Publieke mededelingen voorbereiden op import" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Bezig met het voorbereiden van %d mededeling..." +msgstr[1] "Bezig met het voorbereiden van %d mededelingen..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "%d mededeling voorbereid." +msgstr[1] "%d mededelingen voorbereid." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Publieke mededelingen importeren" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Bezig met het importeren van %d mededeling..." +msgstr[1] "Bezig met het importeren van %d mededelingen..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "%d mededeling geïmporteerd." +msgstr[1] "%d mededelingen geïmporteerd." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Afgerond" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "Het importeren is voltooid!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "Importstatus" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Even geduld alstublieft..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "Importstatus" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Yammerimport" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Yammerimport" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Yammerimport" + +#: actions/yammeradminpanel.php:55 +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" +"Dit Yammerimportprogramma wordt nog getest en bepaalde onderdelen zijn nog " +"niet afgerond. Op dit moment worden gebruikersabonnementen en " +"groepslidmaatschappen nog niet overgenomen. In de toekomst is dit wellicht " +"mogelijk voor imports die door bevestigde beheerders in Yammer worden " +"uitgevoerd." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..21189e7173 --- /dev/null +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -0,0 +1,294 @@ +# Translation of StatusNet - YammerImport to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\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" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Імпорт з Yammer" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "З’єднання з Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Початок автентифікації" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Запит дозволу на підключення до Yammer" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "Змінити API-ключ" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Експертиза:" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Невірна URL-адреса аватари %s." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Неможливо завантажити аватару з %s." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "Реєстрація API Yammer" + +#: lib/yammerapikeyform.php:72 +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" +"Перш ніж ми зможемо підключитися до вашого акаунту Yammer, вам необхідно " +"зареєструвати у якості імпортера цей авторизований додаток, аби той забирав " +"дані від вашого імені. Ця реєстрація буде працювати тільки для вашої власної " +"мережі. Перейдіть за цим посиланням, щоб зареєструвати додаток на Yammer; " +"вам буде запропоновано увійти до системи, якщо це необхідно:" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Відкрити реєстраційну форму додатку для Yammer" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Скопіюйте ключ споживача та секретний код, котрі вам було надано, до віконця " +"нижче:" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Ключ споживача:" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Секретний код:" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Зберегти" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Зберегти ключі споживача" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Перейдіть за цим посиланням для підтвердження дозволу від Yammer; вам буде " +"запропоновано увійти до системи, якщо це необхідно:" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Відкрити вікно автентифікації Yammer" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Скопіюйте наданий вам код підтвердження до віконця нижче:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Код підтвердження:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Продовжити" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Зберегти код і почати імпорт" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Ініціалізація" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Імпорт не працює" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Розпочато з’єднання з сервером Yammer..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Чекаємо дозволу..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Під’єднано." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Імпорт облікових записів користувачів" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Імпорт %d користувача..." +msgstr[1] "Імпорт %d користувачів..." +msgstr[2] "Імпорт %d користувачів..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "Імпортовано %d користувача." +msgstr[1] "Імпортовано %d користувачів." +msgstr[2] "Імпортовано %d користувачів." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Імпорт спільнот" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Імпорт %d спільноти..." +msgstr[1] "Імпорт %d спільнот..." +msgstr[2] "Імпорт %d спільнот..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "Імпортовано %d спільноту." +msgstr[1] "Імпортовано %d спільнот." +msgstr[2] "Імпортовано %d спільнот." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Підготовка до імпорту стрічки дописів" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Підготовка %d допису..." +msgstr[1] "Підготовка %d дописів..." +msgstr[2] "Підготовка %d дописів..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "Готовий %d допис." +msgstr[1] "Готово %d дописів." +msgstr[2] "Готово %d дописів." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Імпорт стрічки дописів" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Імпорт %d допису..." +msgstr[1] "Імпорт %d дописів..." +msgstr[2] "Імпорт %d дописів..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "Імпортовано %d допис." +msgstr[1] "Імпортовано %d дописів." +msgstr[2] "Імпортовано %d дописів." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Виконано" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "Імпорт завершено!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "Статус процесу імпорту" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Очікування..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "Статус процесу імпорту" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Імпорт з Yammer" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Імпорт з Yammer" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Імпорт з Yammer" + +#: actions/yammeradminpanel.php:55 +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" +"Цей додаток імпорту даних з Yammer все ще проходить випробовування і працює " +"десь неповною мірою. На даний момент неможливо імпортувати дані щодо " +"підписок та спільнот користувача; втім, можливо у майбутньому, адміністрація " +"сайту Yammer піде нам на зустріч і тоді роботу над цим додатком буде " +"завершено." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" From 0f4f6fdb0130aacb0d8c7aa04ddfb76baa1b9e6b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 2 Oct 2010 22:25:32 +0200 Subject: [PATCH 017/112] * i18n/L10n review. * add onPluginVersion() --- plugins/UserFlag/UserFlagPlugin.php | 37 ++++++++++++++++++-------- plugins/UserFlag/User_flag_profile.php | 10 ++----- plugins/UserFlag/adminprofileflag.php | 36 +++++++++---------------- plugins/UserFlag/clearflag.php | 13 +++++---- plugins/UserFlag/clearflagform.php | 10 +++---- plugins/UserFlag/flagprofile.php | 15 +++++------ plugins/UserFlag/flagprofileform.php | 11 +++----- 7 files changed, 61 insertions(+), 71 deletions(-) diff --git a/plugins/UserFlag/UserFlagPlugin.php b/plugins/UserFlag/UserFlagPlugin.php index ae3dfe0365..e6ad3e37d3 100644 --- a/plugins/UserFlag/UserFlagPlugin.php +++ b/plugins/UserFlag/UserFlagPlugin.php @@ -40,7 +40,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 UserFlagPlugin extends Plugin { const REVIEWFLAGS = 'UserFlagPlugin::reviewflags'; @@ -56,7 +55,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook return */ - function onCheckSchema() { $schema = Schema::get(); @@ -83,7 +81,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook return */ - function onRouterInitialized($m) { $m->connect('main/flag/profile', array('action' => 'flagprofile')); @@ -99,7 +96,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook return */ - function onAutoload($cls) { switch (strtolower($cls)) @@ -130,7 +126,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onEndProfilePageActionsElements(&$action, $profile) { $user = common_current_user(); @@ -140,6 +135,8 @@ class UserFlagPlugin extends Plugin $action->elementStart('li', 'entity_flag'); if (User_flag_profile::exists($profile->id, $user->id)) { + // @todo FIXME: Add a title explaining what 'flagged' means? + // TRANS: Message added to a profile if it has been flagged for review. $action->element('p', 'flagged', _('Flagged')); } else { $form = new FlagProfileForm($action, $profile, @@ -161,7 +158,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onEndProfileListItemActionElements($item) { $user = common_current_user(); @@ -189,7 +185,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onEndShowScripts($action) { $action->inlineScript('if ($(".form_entity_flag").length > 0) { '. @@ -210,7 +205,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onUserRightsCheck($user, $right, &$result) { switch ($right) { @@ -233,7 +227,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onEndBlockProfile($user, $profile) { if ($this->flagOnBlock && !User_flag_profile::exists($profile->id, @@ -255,7 +248,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onProfileDeleteRelated($profile, &$related) { $related[] = 'user_flag_profile'; @@ -272,10 +264,33 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onUserDeleteRelated($user, &$related) { $related[] = 'user_flag_profile'; return true; } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:UserFlag'; + + $versions[] = array('name' => 'UserFlag', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('This plugin allows flagging of profiles for review and reviewing flagged profiles.')); + + return true; + } } diff --git a/plugins/UserFlag/User_flag_profile.php b/plugins/UserFlag/User_flag_profile.php index 86b39160bf..69fe0f356b 100644 --- a/plugins/UserFlag/User_flag_profile.php +++ b/plugins/UserFlag/User_flag_profile.php @@ -44,7 +44,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class User_flag_profile extends Memcached_DataObject { ###START_AUTOCODE @@ -67,7 +66,6 @@ class User_flag_profile extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array( @@ -83,7 +81,6 @@ class User_flag_profile extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array('profile_id' => 'K', 'user_id' => 'K'); @@ -94,7 +91,6 @@ class User_flag_profile extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return $this->keys(); @@ -107,7 +103,6 @@ class User_flag_profile extends Memcached_DataObject * * @return User_flag_profile found object or null */ - function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('User_flag_profile', $kv); @@ -121,7 +116,6 @@ class User_flag_profile extends Memcached_DataObject * * @return boolean true if exists, else false */ - static function exists($profile_id, $user_id) { $ufp = User_flag_profile::pkeyGet(array('profile_id' => $profile_id, @@ -138,7 +132,6 @@ class User_flag_profile extends Memcached_DataObject * * @return boolean success flag */ - static function create($user_id, $profile_id) { $ufp = new User_flag_profile(); @@ -148,7 +141,8 @@ class User_flag_profile extends Memcached_DataObject $ufp->created = common_sql_now(); if (!$ufp->insert()) { - $msg = sprintf(_("Couldn't flag profile '%d' for review."), + // TRANS: Server exception. + $msg = sprintf(_m('Couldn\'t flag profile "%d" for review.'), $profile_id); throw new ServerException($msg); } diff --git a/plugins/UserFlag/adminprofileflag.php b/plugins/UserFlag/adminprofileflag.php index 17374927b3..df0450f66a 100644 --- a/plugins/UserFlag/adminprofileflag.php +++ b/plugins/UserFlag/adminprofileflag.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class AdminprofileflagAction extends Action { var $page = null; @@ -53,7 +52,6 @@ class AdminprofileflagAction extends Action * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -109,7 +107,6 @@ class AdminprofileflagAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -122,10 +119,10 @@ class AdminprofileflagAction extends Action * * @return string Title of the page */ - function title() { - return _('Flagged profiles'); + // TRANS: Title for page with a list of profiles that were flagged for review. + return _m('Flagged profiles'); } /** @@ -133,7 +130,6 @@ class AdminprofileflagAction extends Action * * @return void */ - function showContent() { $pl = new FlaggedProfileList($this->profiles, $this); @@ -149,7 +145,6 @@ class AdminprofileflagAction extends Action * * @return Profile $profile Profile query results */ - function getProfiles() { $ufp = new User_flag_profile(); @@ -196,7 +191,6 @@ class AdminprofileflagAction extends Action * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class FlaggedProfileList extends ProfileList { /** @@ -206,7 +200,6 @@ class FlaggedProfileList extends ProfileList * * @return ProfileListItem newly-created item */ - function newListItem($profile) { return new FlaggedProfileListItem($this->profile, $this->action); @@ -222,7 +215,6 @@ class FlaggedProfileList extends ProfileList * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class FlaggedProfileListItem extends ProfileListItem { const MAX_FLAGGERS = 5; @@ -235,7 +227,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showActions() { $this->user = common_current_user(); @@ -247,7 +238,8 @@ class FlaggedProfileListItem extends ProfileListItem $this->startActions(); if (Event::handle('StartProfileListItemActionElements', array($this))) { $this->out->elementStart('li', 'entity_moderation'); - $this->out->element('p', null, _('Moderate')); + // TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). + $this->out->element('p', null, _m('Moderate')); $this->out->elementStart('ul'); $this->showSandboxButton(); $this->showSilenceButton(); @@ -265,7 +257,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showSandboxButton() { if ($this->user->hasRight(Right::SANDBOXUSER)) { @@ -286,7 +277,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showSilenceButton() { if ($this->user->hasRight(Right::SILENCEUSER)) { @@ -307,7 +297,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showDeleteButton() { @@ -324,7 +313,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showClearButton() { if ($this->user->hasRight(UserFlagPlugin::CLEARFLAGS)) { @@ -340,7 +328,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function endProfile() { $this->showFlaggersList(); @@ -352,7 +339,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showFlaggersList() { $flaggers = array(); @@ -394,12 +380,16 @@ class FlaggedProfileListItem extends ProfileListItem } if ($cnt > 0) { - $text = _('Flagged by '); - - $text .= implode(', ', $lnks); - if ($others > 0) { - $text .= sprintf(_(' and %d others'), $others); + $flagging_users = implode(', ', $lnks); + // TRANS: Message displayed on a profile if it has been flagged. + // TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. + // TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. + $text .= sprintf(_m('Flagged by %1$s and %2$d other', 'Flagged by %1$s and %2$d others', $others), $flagging_users, $others); + } else { + // TRANS: Message displayed on a profile if it has been flagged. + // TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. + $text .= sprintf(_m('Flagged by %s'), $flagging_users); } $this->out->elementStart('p', array('class' => 'flaggers')); diff --git a/plugins/UserFlag/clearflag.php b/plugins/UserFlag/clearflag.php index f032527ed6..feda29f1b7 100644 --- a/plugins/UserFlag/clearflag.php +++ b/plugins/UserFlag/clearflag.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class ClearflagAction extends ProfileFormAction { /** @@ -75,7 +74,6 @@ class ClearflagAction extends ProfileFormAction * * @return void */ - function handle($args) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { @@ -93,7 +91,6 @@ class ClearflagAction extends ProfileFormAction * * @return void */ - function handlePost() { $ufp = new User_flag_profile(); @@ -104,7 +101,8 @@ class ClearflagAction extends ProfileFormAction 'AND profile_id = ' . $this->profile->id); if ($result == false) { - $msg = sprintf(_("Couldn't clear flags for profile '%s'."), + // TRANS: Server exception given when flags could not be cleared. + $msg = sprintf(_m('Couldn\'t clear flags for profile "%s".'), $this->profile->nickname); throw new ServerException($msg); } @@ -121,17 +119,18 @@ class ClearflagAction extends ProfileFormAction * * @return void */ - function ajaxResults() { header('Content-Type: text/xml;charset=utf-8'); $this->xw->startDocument('1.0', 'UTF-8'); $this->elementStart('html'); $this->elementStart('head'); - $this->element('title', null, _('Flags cleared')); + // TRANS: Title for AJAX form to indicated that flags were removed. + $this->element('title', null, _m('Flags cleared')); $this->elementEnd('head'); $this->elementStart('body'); - $this->element('p', 'cleared', _('Cleared')); + // TRANS: Body element for "flags cleared" form. + $this->element('p', 'cleared', _m('Cleared')); $this->elementEnd('body'); $this->elementEnd('html'); } diff --git a/plugins/UserFlag/clearflagform.php b/plugins/UserFlag/clearflagform.php index eefd15c368..26a8848758 100644 --- a/plugins/UserFlag/clearflagform.php +++ b/plugins/UserFlag/clearflagform.php @@ -42,7 +42,6 @@ require_once INSTALLDIR.'/lib/form.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 ClearFlagForm extends ProfileActionForm { /** @@ -51,7 +50,6 @@ class ClearFlagForm extends ProfileActionForm * * @return string class of the form */ - function formClass() { return 'form_user_clearflag'; @@ -62,7 +60,6 @@ class ClearFlagForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'clearflag'; @@ -73,10 +70,10 @@ class ClearFlagForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Clear'); + // TRANS: Form title for action on a profile. + return _m('Clear'); } /** @@ -87,6 +84,7 @@ class ClearFlagForm extends ProfileActionForm function description() { - return _('Clear all flags'); + // Form description for clearing flags from a profile. + return _m('Clear all flags'); } } diff --git a/plugins/UserFlag/flagprofile.php b/plugins/UserFlag/flagprofile.php index 018c1e8ac9..283eea40ce 100644 --- a/plugins/UserFlag/flagprofile.php +++ b/plugins/UserFlag/flagprofile.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class FlagprofileAction extends ProfileFormAction { /** @@ -50,7 +49,6 @@ class FlagprofileAction extends ProfileFormAction * * @return boolean success flag */ - function prepare($args) { if (!parent::prepare($args)) { @@ -64,7 +62,8 @@ class FlagprofileAction extends ProfileFormAction if (User_flag_profile::exists($this->profile->id, $user->id)) { - $this->clientError(_('Flag already exists.')); + // TRANS: Client error when setting flag that has already been set for a profile. + $this->clientError(_m('Flag already exists.')); return false; } @@ -81,7 +80,6 @@ class FlagprofileAction extends ProfileFormAction * * @return void */ - function handle($args) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { @@ -97,7 +95,6 @@ class FlagprofileAction extends ProfileFormAction * * @return void */ - function handlePost() { $user = common_current_user(); @@ -119,19 +116,19 @@ class FlagprofileAction extends ProfileFormAction * * @return void */ - function ajaxResults() { header('Content-Type: text/xml;charset=utf-8'); $this->xw->startDocument('1.0', 'UTF-8'); $this->elementStart('html'); $this->elementStart('head'); - $this->element('title', null, _('Flagged for review')); + // TRANS: AJAX form title for a flagged profile. + $this->element('title', null, _m('Flagged for review')); $this->elementEnd('head'); $this->elementStart('body'); - $this->element('p', 'flagged', _('Flagged')); + // TRANS: Body text for AJAX form when a profile has been flagged for review. + $this->element('p', 'flagged', _m('Flagged')); $this->elementEnd('body'); $this->elementEnd('html'); } } - diff --git a/plugins/UserFlag/flagprofileform.php b/plugins/UserFlag/flagprofileform.php index c20929a20c..045c9de852 100644 --- a/plugins/UserFlag/flagprofileform.php +++ b/plugins/UserFlag/flagprofileform.php @@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/form.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 FlagProfileForm extends ProfileActionForm { /** @@ -53,7 +52,6 @@ class FlagProfileForm extends ProfileActionForm * * @return string class of the form */ - function formClass() { return 'form_entity_flag'; @@ -64,7 +62,6 @@ class FlagProfileForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'flagprofile'; @@ -75,10 +72,10 @@ class FlagProfileForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Flag'); + // TRANS: Form title for flagging a profile for review. + return _m('Flag'); } /** @@ -86,9 +83,9 @@ class FlagProfileForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { - return _('Flag profile for review'); + // TRANS: Form description. + return _m('Flag profile for review.'); } } From 458512aafdd224f32eb466d78c2d2624f3c86593 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Oct 2010 22:46:38 +0200 Subject: [PATCH 018/112] Localisation updates from http://translatewiki.net --- locale/af/LC_MESSAGES/statusnet.po | 8 +- locale/ar/LC_MESSAGES/statusnet.po | 8 +- locale/arz/LC_MESSAGES/statusnet.po | 8 +- locale/bg/LC_MESSAGES/statusnet.po | 8 +- locale/br/LC_MESSAGES/statusnet.po | 54 +- locale/ca/LC_MESSAGES/statusnet.po | 33 +- locale/cs/LC_MESSAGES/statusnet.po | 8 +- locale/de/LC_MESSAGES/statusnet.po | 14 +- locale/en_GB/LC_MESSAGES/statusnet.po | 8 +- locale/eo/LC_MESSAGES/statusnet.po | 30 +- locale/es/LC_MESSAGES/statusnet.po | 8 +- locale/fa/LC_MESSAGES/statusnet.po | 8 +- locale/fi/LC_MESSAGES/statusnet.po | 8 +- locale/fr/LC_MESSAGES/statusnet.po | 14 +- locale/ga/LC_MESSAGES/statusnet.po | 8 +- locale/gl/LC_MESSAGES/statusnet.po | 8 +- locale/hsb/LC_MESSAGES/statusnet.po | 8 +- locale/hu/LC_MESSAGES/statusnet.po | 8 +- locale/ia/LC_MESSAGES/statusnet.po | 18 +- locale/is/LC_MESSAGES/statusnet.po | 8 +- locale/it/LC_MESSAGES/statusnet.po | 215 +++---- locale/ja/LC_MESSAGES/statusnet.po | 8 +- locale/ka/LC_MESSAGES/statusnet.po | 8 +- locale/ko/LC_MESSAGES/statusnet.po | 8 +- locale/mk/LC_MESSAGES/statusnet.po | 99 ++-- locale/nb/LC_MESSAGES/statusnet.po | 8 +- locale/nl/LC_MESSAGES/statusnet.po | 38 +- locale/nn/LC_MESSAGES/statusnet.po | 8 +- locale/pl/LC_MESSAGES/statusnet.po | 18 +- locale/pt/LC_MESSAGES/statusnet.po | 8 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 8 +- locale/ru/LC_MESSAGES/statusnet.po | 8 +- locale/statusnet.pot | 2 +- locale/sv/LC_MESSAGES/statusnet.po | 8 +- locale/te/LC_MESSAGES/statusnet.po | 8 +- locale/tr/LC_MESSAGES/statusnet.po | 315 +++++----- locale/uk/LC_MESSAGES/statusnet.po | 20 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 14 +- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/es/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 8 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 101 ++++ .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 8 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 107 ++++ .../locale/ia/LC_MESSAGES/AnonymousFave.po | 106 ++++ .../locale/mk/LC_MESSAGES/AnonymousFave.po | 106 ++++ .../locale/nl/LC_MESSAGES/AnonymousFave.po | 114 ++++ .../locale/uk/LC_MESSAGES/AnonymousFave.po | 111 ++++ plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 8 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ja/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ru/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Autocomplete.po | 8 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/es/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/pt_BR/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BitlyUrl.po | 8 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/br/LC_MESSAGES/Blacklist.po | 95 +++ .../locale/es/LC_MESSAGES/Blacklist.po | 29 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 8 +- .../locale/gl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 8 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 8 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 26 + .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 26 + .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 8 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/es/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/fr/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlogspamNet.po | 8 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/es/LC_MESSAGES/CacheLog.po | 8 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 8 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 8 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 8 +- .../locale/CasAuthentication.pot | 2 +- .../es/LC_MESSAGES/CasAuthentication.po | 76 +++ .../fr/LC_MESSAGES/CasAuthentication.po | 8 +- .../ia/LC_MESSAGES/CasAuthentication.po | 8 +- .../mk/LC_MESSAGES/CasAuthentication.po | 8 +- .../nl/LC_MESSAGES/CasAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 8 +- .../uk/LC_MESSAGES/CasAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 8 +- .../locale/ClientSideShorten.pot | 2 +- .../es/LC_MESSAGES/ClientSideShorten.po | 35 ++ .../fr/LC_MESSAGES/ClientSideShorten.po | 8 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 8 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 8 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/es/LC_MESSAGES/Comet.po | 28 + plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 8 +- .../Comet/locale/pt_BR/LC_MESSAGES/Comet.po | 28 + plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 8 +- .../Comet/locale/zh_CN/LC_MESSAGES/Comet.po | 8 +- .../locale/DirectionDetector.pot | 2 +- .../es/LC_MESSAGES/DirectionDetector.po | 8 +- .../fr/LC_MESSAGES/DirectionDetector.po | 8 +- .../ia/LC_MESSAGES/DirectionDetector.po | 8 +- .../ja/LC_MESSAGES/DirectionDetector.po | 8 +- .../lb/LC_MESSAGES/DirectionDetector.po | 8 +- .../mk/LC_MESSAGES/DirectionDetector.po | 8 +- .../nb/LC_MESSAGES/DirectionDetector.po | 8 +- .../nl/LC_MESSAGES/DirectionDetector.po | 8 +- .../ru/LC_MESSAGES/DirectionDetector.po | 8 +- .../tl/LC_MESSAGES/DirectionDetector.po | 8 +- .../uk/LC_MESSAGES/DirectionDetector.po | 8 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 8 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/es/LC_MESSAGES/DiskCache.po | 26 + .../locale/fr/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 8 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 8 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 8 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 45 ++ .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 47 ++ .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 47 ++ .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 47 ++ .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 10 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 8 +- .../locale/EmailAuthentication.pot | 2 +- .../es/LC_MESSAGES/EmailAuthentication.po | 30 + .../fr/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 8 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 8 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 8 +- plugins/Facebook/locale/Facebook.pot | 2 +- .../locale/br/LC_MESSAGES/Facebook.po | 536 +++++++++++++++++ .../locale/es/LC_MESSAGES/Facebook.po | 558 ++++++++++++++++++ .../locale/fr/LC_MESSAGES/Facebook.po | 8 +- .../locale/gl/LC_MESSAGES/Facebook.po | 8 +- .../locale/ia/LC_MESSAGES/Facebook.po | 8 +- .../locale/mk/LC_MESSAGES/Facebook.po | 8 +- .../locale/nb/LC_MESSAGES/Facebook.po | 8 +- .../locale/nl/LC_MESSAGES/Facebook.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Facebook.po | 8 +- .../locale/tl/LC_MESSAGES/Facebook.po | 8 +- .../locale/uk/LC_MESSAGES/Facebook.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Facebook.po | 8 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 27 + .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 8 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 38 ++ .../locale/ia/LC_MESSAGES/ForceGroup.po | 38 ++ .../locale/mk/LC_MESSAGES/ForceGroup.po | 38 ++ .../locale/nl/LC_MESSAGES/ForceGroup.po | 38 ++ .../locale/tl/LC_MESSAGES/ForceGroup.po | 39 ++ .../locale/uk/LC_MESSAGES/ForceGroup.po | 40 ++ plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 8 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/br/LC_MESSAGES/Geonames.po | 31 + .../locale/eo/LC_MESSAGES/Geonames.po | 30 + .../locale/es/LC_MESSAGES/Geonames.po | 31 + .../locale/fr/LC_MESSAGES/Geonames.po | 8 +- .../locale/ia/LC_MESSAGES/Geonames.po | 8 +- .../locale/mk/LC_MESSAGES/Geonames.po | 8 +- .../locale/nb/LC_MESSAGES/Geonames.po | 8 +- .../locale/nl/LC_MESSAGES/Geonames.po | 8 +- .../locale/ru/LC_MESSAGES/Geonames.po | 8 +- .../locale/tl/LC_MESSAGES/Geonames.po | 8 +- .../locale/uk/LC_MESSAGES/Geonames.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Geonames.po | 8 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 8 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/de/LC_MESSAGES/Gravatar.po | 8 +- .../locale/es/LC_MESSAGES/Gravatar.po | 78 +++ .../locale/fr/LC_MESSAGES/Gravatar.po | 8 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 8 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 8 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 55 ++ .../locale/ia/LC_MESSAGES/GroupFavorited.po | 53 ++ .../locale/mk/LC_MESSAGES/GroupFavorited.po | 54 ++ .../locale/nl/LC_MESSAGES/GroupFavorited.po | 55 ++ .../locale/tl/LC_MESSAGES/GroupFavorited.po | 55 ++ .../locale/uk/LC_MESSAGES/GroupFavorited.po | 54 ++ plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 8 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 35 ++ .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/LdapAuthentication.pot | 2 +- .../es/LC_MESSAGES/LdapAuthentication.po | 30 + .../fr/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ja/LC_MESSAGES/LdapAuthentication.po | 8 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../nb/LC_MESSAGES/LdapAuthentication.po | 8 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ru/LC_MESSAGES/LdapAuthentication.po | 8 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../locale/LdapAuthorization.pot | 2 +- .../es/LC_MESSAGES/LdapAuthorization.po | 30 + .../fr/LC_MESSAGES/LdapAuthorization.po | 8 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 8 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 8 +- .../nb/LC_MESSAGES/LdapAuthorization.po | 8 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../ru/LC_MESSAGES/LdapAuthorization.po | 8 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 8 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 8 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/es/LC_MESSAGES/Linkback.po | 34 ++ .../locale/fr/LC_MESSAGES/Linkback.po | 8 +- .../locale/ia/LC_MESSAGES/Linkback.po | 8 +- .../locale/mk/LC_MESSAGES/Linkback.po | 8 +- .../locale/nb/LC_MESSAGES/Linkback.po | 8 +- .../locale/nl/LC_MESSAGES/Linkback.po | 8 +- .../locale/tl/LC_MESSAGES/Linkback.po | 8 +- .../locale/uk/LC_MESSAGES/Linkback.po | 8 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 57 ++ .../locale/de/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 8 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/es/LC_MESSAGES/Memcache.po | 29 + .../locale/fr/LC_MESSAGES/Memcache.po | 8 +- .../locale/ia/LC_MESSAGES/Memcache.po | 8 +- .../locale/mk/LC_MESSAGES/Memcache.po | 8 +- .../locale/nb/LC_MESSAGES/Memcache.po | 8 +- .../locale/nl/LC_MESSAGES/Memcache.po | 8 +- .../locale/ru/LC_MESSAGES/Memcache.po | 8 +- .../locale/tl/LC_MESSAGES/Memcache.po | 8 +- .../locale/uk/LC_MESSAGES/Memcache.po | 8 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/es/LC_MESSAGES/Memcached.po | 29 + .../locale/fr/LC_MESSAGES/Memcached.po | 8 +- .../locale/ia/LC_MESSAGES/Memcached.po | 8 +- .../locale/mk/LC_MESSAGES/Memcached.po | 8 +- .../locale/nb/LC_MESSAGES/Memcached.po | 8 +- .../locale/nl/LC_MESSAGES/Memcached.po | 8 +- .../locale/ru/LC_MESSAGES/Memcached.po | 8 +- .../locale/tl/LC_MESSAGES/Memcached.po | 8 +- .../locale/uk/LC_MESSAGES/Memcached.po | 8 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 8 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 8 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/br/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 8 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 8 +- plugins/OStatus/locale/OStatus.pot | 2 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 22 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 8 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 28 + .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 8 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 30 + .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 8 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/es/LC_MESSAGES/PostDebug.po | 27 + .../locale/fr/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 8 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 8 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/PoweredByStatusNet.pot | 2 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 28 + .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 8 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 8 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/RequireValidatedEmail.pot | 2 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 8 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 55 ++ .../locale/mk/LC_MESSAGES/ShareNotice.po | 55 ++ .../locale/nl/LC_MESSAGES/ShareNotice.po | 56 ++ .../locale/tl/LC_MESSAGES/ShareNotice.po | 55 ++ .../locale/uk/LC_MESSAGES/ShareNotice.po | 56 ++ plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 28 + .../locale/fr/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 32 + .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 34 ++ .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 34 ++ .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 34 ++ .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 33 ++ plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 8 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 8 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 8 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 8 +- .../locale/SubscriptionThrottle.pot | 2 +- .../es/LC_MESSAGES/SubscriptionThrottle.po | 27 + .../fr/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../nb/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../ru/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 8 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/es/LC_MESSAGES/TabFocus.po | 32 + .../locale/fr/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 8 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 8 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 8 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/es/LC_MESSAGES/TightUrl.po | 28 + .../locale/fr/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 8 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 8 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 8 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 8 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 8 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 8 +- plugins/UserFlag/locale/UserFlag.pot | 108 ++++ plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/de/LC_MESSAGES/UserLimit.po | 26 + .../locale/es/LC_MESSAGES/UserLimit.po | 26 + .../locale/fr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 8 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 8 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/fr/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/nb/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/pt_BR/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/ru/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/tr/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 8 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 8 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/es/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 8 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 17 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 23 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 23 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 24 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 260 ++++++++ .../locale/uk/LC_MESSAGES/YammerImport.po | 23 +- 682 files changed, 7260 insertions(+), 2726 deletions(-) create mode 100644 plugins/APC/locale/br/LC_MESSAGES/APC.po create mode 100644 plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po create mode 100644 plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po create mode 100644 plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/Comet/locale/es/LC_MESSAGES/Comet.po create mode 100644 plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po create mode 100644 plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po create mode 100644 plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po create mode 100644 plugins/Echo/locale/br/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/es/LC_MESSAGES/Echo.po create mode 100644 plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po create mode 100644 plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po create mode 100644 plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po create mode 100644 plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po create mode 100644 plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po create mode 100644 plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po create mode 100644 plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po create mode 100644 plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/UserFlag/locale/UserFlag.pot create mode 100644 plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po create mode 100644 plugins/XCache/locale/br/LC_MESSAGES/XCache.po create mode 100644 plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 069438eb2e..04dbe3806b 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:35+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 8a50f1da89..b1cb14da51 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:39+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 3d7eed84ad..28941399c1 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:40+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 9cfc38adaa..9d810ec08a 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:42+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 09a22da36d..c68e172c60 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:57+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:43+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1875,7 +1875,7 @@ msgstr "Stankañ" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Stankañ an implijer-mañ" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1891,7 +1891,7 @@ msgstr "Lakaat ur merour" #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Lakaat an implijer-mañ da verour" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2286,7 +2286,7 @@ msgstr "%1$s en deus kuitaet ar strollad %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Aotre-implijout" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" @@ -2332,7 +2332,7 @@ msgstr "Prevez" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Pep gwir miret strizh." #: actions/licenseadminpanel.php:247 msgid "Creative Commons" @@ -2352,7 +2352,7 @@ msgstr "" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Perc'henn" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." @@ -2360,7 +2360,7 @@ msgstr "" #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Titl an aotre-implijout" #: actions/licenseadminpanel.php:284 msgid "The title of the license." @@ -4649,7 +4649,7 @@ msgstr "Ma rankomp merañ an dalc'hoù hon unan." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Enrollañ arventennoù an implijer" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -5675,10 +5675,9 @@ msgstr "Aprouet d'an %1$s - moned \"%2$s\"." #. TRANS: Button label #: lib/applicationlist.php:157 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" -msgstr "Dilemel" +msgstr "Disteuler" #: lib/atom10feed.php:112 msgid "author element must contain a name element." @@ -5922,7 +5921,7 @@ msgstr "" #: lib/command.php:667 #, php-format msgid "Subscribed to %s." -msgstr "" +msgstr "Koumanantet da %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. @@ -5981,7 +5980,7 @@ msgstr "" #: lib/command.php:808 #, php-format msgid "Unsubscribed %s." -msgstr "" +msgstr "Digoumanatet %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. #: lib/command.php:826 @@ -6238,7 +6237,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Strollad" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6246,13 +6245,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "strollad %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Izili" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6260,13 +6259,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Izili ar strollad %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Stanket" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6274,7 +6273,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "implijerien stanket ar strollad %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6282,13 +6281,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Kemmañ perzhioù ar strollad %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6296,7 +6295,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Ouzhpennañ pe kemmañ logo ar strollad %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6304,7 +6303,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Ouzhpennañ pe kemmañ tres ar strollad %s" #: lib/groupsbymemberssection.php:71 #, fuzzy @@ -6333,12 +6332,11 @@ msgstr "Diembreget eo ar furmad-se." #: lib/imagefile.php:88 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." -msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." +msgstr "Re vras eo ar restr ! %d eo ar vent vrasañ evit ur restr." #: lib/imagefile.php:93 -#, fuzzy msgid "Partial upload." -msgstr "N'eus bet enporzhiet restr ebet." +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 diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index ddaf88036f..5513129bdb 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:58+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:45+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1900,13 +1900,13 @@ msgstr "Admin" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" -msgstr "" +msgstr "Bloca" #. TRANS: Submit button title. #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bloca aquest usuari" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1916,13 +1916,13 @@ msgstr "Fes l'usuari un administrador del grup" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Fes-lo administrador" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Fes aquest usuari administrador" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2414,7 +2414,7 @@ msgstr "" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Tipus" #: actions/licenseadminpanel.php:254 msgid "Select license" @@ -2434,7 +2434,7 @@ msgstr "" #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Títol de la llicència" #: actions/licenseadminpanel.php:284 msgid "The title of the license." @@ -5240,7 +5240,7 @@ msgstr "No s'ha pogut eliminar la subscripció." #. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 msgid "Follow" -msgstr "" +msgstr "Segueix" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -6370,7 +6370,7 @@ msgstr "FOAF" #: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Canals" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6429,7 +6429,7 @@ msgstr "Sobrenoms addicionals del grup, separats amb comes o espais, màx. %d" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Grup" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -7134,7 +7134,7 @@ msgstr "" #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Avís duplicat." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7282,7 +7282,7 @@ msgstr "Paraules clau" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Cerca" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7560,9 +7560,8 @@ msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "No s'ha especificat cap ID d'usuari." +msgstr "No s'ha especificat cap usuari; s'utilitza l'usuari de reserva." #: scripts/restoreuser.php:94 #, php-format diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index a779d40496..32356d21dc 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:46+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index d6d63669b4..11af5e1f86 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -7589,9 +7589,3 @@ msgstr "Keine Benutzer-ID angegeben" #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s markierte Nachricht %s als Favorit." - -#~ msgid "%s is now following %s." -#~ msgstr "%s folgt nun %s." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 8cddfc2b7d..b4396b1776 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:49+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 453327949a..8f9bd5cc72 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:49+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -51,7 +51,7 @@ msgstr "Ĉu malpermesi al anonimaj uzantoj (ne ensalutintaj) vidi retejon?" #: actions/accessadminpanel.php:167 msgctxt "LABEL" msgid "Private" -msgstr "Nepublika" +msgstr "Privata" #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 @@ -1123,7 +1123,7 @@ msgstr "Aspekto" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Desegna agordo por ĉi tiu StatusNet-retejo" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1885,7 +1885,7 @@ msgstr "Bloki" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bloki ĉi tiun uzanton" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2331,7 +2331,7 @@ msgstr "%1$s eksaniĝis de grupo %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Permesilo" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" @@ -2339,7 +2339,7 @@ msgstr "" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Nevalida permesila elekto" #: actions/licenseadminpanel.php:149 msgid "" @@ -2349,7 +2349,7 @@ msgstr "" #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Nevalida permesila titolo. La longlimo estas 255 literoj." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." @@ -2373,19 +2373,19 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privata" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Ĉiuj rajtoj rezervitaj." #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Speco" #: actions/licenseadminpanel.php:254 msgid "Select license" @@ -6266,7 +6266,7 @@ msgstr "FOAF" #: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Fluoj" #: lib/galleryaction.php:121 msgid "Filter tags" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index c203a1d94d..c99b33d9c4 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:50+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index b7769db2d5..f5d8f300d4 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:51+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 4d67811d4c..933028780a 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:06+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:52+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 698242f28b..5f5ef01a4e 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -7629,9 +7629,3 @@ 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 "%s marked notice %s as a favorite." -#~ msgstr "%s a marqué l’avis %s comme favori." - -#~ msgid "%s is now following %s." -#~ msgstr "%s suit à présent %s." diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 8380cbb393..056dde849f 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:54+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index da1a3411ce..3fe875f47f 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:55+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index a5411edf75..3ffc1df02d 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:56+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index df39b10351..6b66ae58a6 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:10+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:56+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index ec031153c6..df8ad6106d 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5037,7 +5037,7 @@ msgstr "Le cancellation del membrato del gruppo ha fallite." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Le ID de profilo %s es invalide." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5822,7 +5822,7 @@ msgstr "Revocar" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "Le elemento \"author\" debe continer un elemento \"name\"." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -7551,9 +7551,3 @@ 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 "%s marked notice %s as a favorite." -#~ msgstr "%s marcava le nota %s como favorite." - -#~ msgid "%s is now following %s." -#~ msgstr "%s seque ora %s." diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index c58390a607..66793c4fde 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:02+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index cf0a5fffaf..929f885efc 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:03+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -386,9 +386,8 @@ msgid "You cannot unfollow yourself." msgstr "Non puoi non seguirti." #: actions/apifriendshipsexists.php:91 -#, fuzzy msgid "Two valid IDs or screen_names must be supplied." -msgstr "Devono essere forniti due ID utente o nominativi." +msgstr "Devono essere forniti due ID o screen_names." #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." @@ -525,9 +524,8 @@ msgid "groups on %s" msgstr "Gruppi su %s" #: actions/apimediaupload.php:100 -#, fuzzy msgid "Upload failed." -msgstr "Carica file" +msgstr "Caricamento non riuscito." #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." @@ -677,7 +675,7 @@ msgstr "Nessuno stato trovato con quel ID." #: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." -msgstr "" +msgstr "Il client deve fornire un parametro \"status\" con un valore." #: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 @@ -1129,7 +1127,7 @@ msgstr "Aspetto" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Impostazioni dell'aspetto per questo sito StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1898,13 +1896,13 @@ msgstr "Amministra" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" -msgstr "" +msgstr "Blocca" #. TRANS: Submit button title. #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Blocca questo utente" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1914,13 +1912,13 @@ msgstr "Rende l'utente amministratore del gruppo" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Rendi amministratore" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Fa diventare questo utente un amministratore" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2356,45 +2354,47 @@ msgstr "%1$s ha lasciato il gruppo %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licenza" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "La licenza per questo sito StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Selezione della licenza non valida." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"È necessario specificare il proprietario dei contenuti quando viene usata la " +"licenza \"Tutti i diritti riservati\"." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Titolo della licenza non valido. Lunghezza massima 255 caratteri." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Indirizzo della licenza non valido." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Indirizzo immagine della licenza non valido." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "L'indirizzo della licenza deve essere vuoto o un URL valido." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "L'immagine della licenza deve essere vuota o un URL valido." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Selezione licenza" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2402,59 +2402,59 @@ msgstr "Privato" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Tutti i diritti riservati" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Tipo" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Seleziona licenza" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Dettagli licenza" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Proprietario" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nome del proprietario dei contenuti del sito (se applicabile)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Titolo licenza" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Il titolo della licenza." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "Indirizzo licenza" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "Indirizzo per informazioni aggiuntive riguardo la licenza." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "Indirizzo immagine licenza" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "Indirizzo di un'immagine da visualizzare con la licenza." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Salva impostazioni licenza" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2655,7 +2655,6 @@ msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Messaggi che corrispondono al termine \"%1$s\" su %2$s!" #: actions/nudge.php:85 -#, fuzzy msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." msgstr "" @@ -2693,7 +2692,7 @@ msgstr "Applicazioni collegate" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Hai consentito alle seguenti applicazioni di accedere al tuo account." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2885,7 +2884,7 @@ msgstr "Percorsi" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Percorso e impostazioni del server per questo sito StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3741,7 +3740,7 @@ msgstr "Sessioni" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Impostazioni sessione per questo sito StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3880,13 +3879,13 @@ msgstr "" "forma di cuore per salvare i messaggi e rileggerli in un altro momento." #: actions/showfavorites.php:208 -#, fuzzy, php-format +#, php-format msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" "%s non ha aggiunto alcun messaggio tra i suoi preferiti. Scrivi qualche cosa " -"di interessante in modo che lo inserisca tra i suoi preferiti. :)" +"di interessante in modo che lo inserisca tra i suoi preferiti! :)" #: actions/showfavorites.php:212 #, php-format @@ -4683,7 +4682,7 @@ msgstr "Utente" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Impostazioni utente per questo sito StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4747,7 +4746,7 @@ msgstr "Indica se consentire agli utenti di invitarne di nuovi" #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Salva impostazioni utente" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4972,23 +4971,23 @@ msgstr "Preferisci" #: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" -msgstr "" +msgstr "Impossibile elaborare l'indirizzo \"%s\"" #. TRANS: Server exception thrown when... Robin thinks something is impossible! #: classes/File.php:174 msgid "Robin thinks something is impossible." -msgstr "" +msgstr "Si è verificato qualche cosa di impossibile." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. #: classes/File.php:189 -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr "" -"Nessun file può superare %d byte e il file inviato era di %d byte. Prova a " -"caricarne una versione più piccola." +"Nessun file può superare %1$d byte e il file inviato era di %2$d byte. Prova " +"a caricarne una versione più piccola." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. @@ -5008,9 +5007,8 @@ msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. #: classes/File.php:247 classes/File.php:262 -#, fuzzy msgid "Invalid filename." -msgstr "Dimensione non valida." +msgstr "Nome file non valido." #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 @@ -5032,7 +5030,7 @@ msgstr "Uscita dal gruppo non riuscita." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "L'ID di profilo %s non è valido." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5051,7 +5049,7 @@ msgstr "Iscriviti" #: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "L'utente %1$s è entrato nel gruppo %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5068,7 +5066,7 @@ msgstr "Impossibile creare il token di accesso per %s" #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." -msgstr "" +msgstr "Non è stato trovato un nome di database o DNS." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. #: classes/Message.php:45 @@ -5090,7 +5088,7 @@ msgstr "Impossibile aggiornare il messaggio con il nuovo URI." #: classes/Notice.php:98 #, php-format msgid "No such profile (%1$d) for notice (%2$d)." -msgstr "" +msgstr "Non c'è alcun profilo (%1$d) per il messaggio (%2$d)." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:193 @@ -5139,7 +5137,7 @@ msgstr "Problema nel salvare il messaggio." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). #: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" -msgstr "" +msgstr "Fornito un tipo errato per saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. #: classes/Notice.php:1006 @@ -5159,6 +5157,7 @@ msgstr "RT @%1$s %2$s" #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" +"Impossibile revocare il ruolo \"%1$s\" per l'utente n° %2$d: non esiste." #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). @@ -5166,18 +5165,18 @@ msgstr "" #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +"Impossibile revocare il ruolo \"%1$s\" per l'utente n° %2$d: errore nel " +"database." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. #: classes/Remote_profile.php:54 -#, fuzzy msgid "Missing profile." -msgstr "L'utente non ha un profilo." +msgstr "Profilo mancante." #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 -#, fuzzy msgid "Unable to save tag." -msgstr "Impossibile salvare il messaggio del sito." +msgstr "Impossibile salvare l'etichetta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 @@ -5217,7 +5216,7 @@ msgstr "Impossibile salvare l'abbonamento." #. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 msgid "Follow" -msgstr "" +msgstr "Segui" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5669,7 +5668,7 @@ msgstr "Configurazione snapshot" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Imposta licenza" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5681,33 +5680,33 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Nessuna applicazione per quella chiave." #. TRANS: OAuth exception given when an incorrect access token was given for a user. #: lib/apiauth.php:212 msgid "Bad access token." -msgstr "" +msgstr "Token di accesso errato." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Nessun utente per quel token." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "Impossibile autenticarti." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Tentativo di revocare un token sconosciuto." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." -msgstr "" +msgstr "Eliminazione del token revocato non riuscita." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5818,7 +5817,7 @@ msgstr "Revoca" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "L'elemento author deve contenere un elemento name." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -5906,7 +5905,7 @@ msgstr "Impossibile trovare un utente col soprannome %s." #: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." -msgstr "" +msgstr "Impossibile trovare un utente locale dal soprannome %s." #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:183 @@ -5950,14 +5949,14 @@ msgstr "Messaggio indicato come preferito." #: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." -msgstr "" +msgstr "L'utente %1$s è entrato nel gruppo %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." -msgstr "" +msgstr "%1$s ha lasciato il gruppo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:430 @@ -6054,7 +6053,7 @@ msgstr "Impossibile abbonarsi ai profili OMB attraverso un comando." #: lib/command.php:667 #, php-format msgid "Subscribed to %s." -msgstr "" +msgstr "Abbonati a %s." #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. @@ -6067,7 +6066,7 @@ msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento." #: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." -msgstr "" +msgstr "Abbonamento a %s annullato." #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. @@ -6106,13 +6105,15 @@ msgstr "Il comando di accesso è disabilitato." #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" +"Questo collegamento è utilizzabile una sola volta ed è valido per 2 minuti: %" +"s." #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. #: lib/command.php:808 #, php-format msgid "Unsubscribed %s." -msgstr "" +msgstr "Abbonamento di %s annullato." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. #: lib/command.php:826 @@ -6346,7 +6347,7 @@ msgstr "FOAF" #: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Feed" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6405,7 +6406,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Gruppo" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6413,13 +6414,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "Gruppo %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Membri" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6427,13 +6428,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Membri del gruppo %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Bloccato" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6441,7 +6442,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "Utenti bloccati di %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6449,13 +6450,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Modifica proprietà di %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6463,7 +6464,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Aggiungi o modifica il logo di %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6471,7 +6472,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Aggiungi o modifica l'aspetto di %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -6972,13 +6973,15 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" non è un tipo di file supportato su questo server. Prova a usare un " +"formato %2$s." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "\"%s\" non è un tipo di file supportata su questo server." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -7061,7 +7064,7 @@ msgstr "presso" #: lib/noticelist.php:512 msgid "web" -msgstr "" +msgstr "web" #: lib/noticelist.php:578 msgid "in context" @@ -7097,20 +7100,20 @@ msgstr "Invia un richiamo a questo utente" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Errore nell'inserire il nuovo profilo." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Errore nell'inserire l'immagine." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Errore nell'inserire il profilo remoto." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Messaggio duplicato." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7258,7 +7261,7 @@ msgstr "Parole" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Cerca" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7375,6 +7378,7 @@ msgstr "" #: lib/themeuploader.php:224 msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +"Il tema contiene file con estensioni non sicure: potrebbe non essere sicuro." #: lib/themeuploader.php:241 #, php-format @@ -7474,8 +7478,8 @@ msgstr "circa un minuto fa" #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circa un minuto fa" +msgstr[1] "circa %d minuti fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1136 @@ -7487,8 +7491,8 @@ msgstr "circa un'ora fa" #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circa un'ora fa" +msgstr[1] "circa %d ore fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1143 @@ -7500,8 +7504,8 @@ msgstr "circa un giorno fa" #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circa un giorno fa" +msgstr[1] "circa %d giorni fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1150 @@ -7513,8 +7517,8 @@ msgstr "circa un mese fa" #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circa un mese fa" +msgstr[1] "circa %d mesi fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1157 @@ -7534,14 +7538,13 @@ msgstr "%s non è un colore valido. Usa 3 o 6 caratteri esadecimali." #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "File di backup per l'utente %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Nessun ID utente specificato." +msgstr "Nessun utente specificato: viene usato l'utente di backup." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d voci nel backup." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 30b84e9691..c94c24a7bc 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:04+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 9f1cb23744..9290a8a02c 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:05+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 0b09eecb30..ed9c69574c 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:06+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index d9ff54241d..17baeffeec 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -354,20 +354,20 @@ msgstr "Нема пронајдено статус со таков ID." #: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." -msgstr "Овој статус веќе Ви е омилен." +msgstr "Веќе сте го бендисале овој статус." #. TRANS: Error message text shown when a favorite could not be set. #: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." -msgstr "Не можам да создадам омилина забелешка." +msgstr "Не можам да создадам бендисана забелешка." #: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." -msgstr "Тој статус не Ви е омилен." +msgstr "Тој статус не Ви е бендисан." #: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." -msgstr "Не можам да ја избришам омилената забелешка." +msgstr "Не можам да ја избришам бендисаната забелешка." #: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." @@ -702,12 +702,12 @@ msgstr "Неподдржан формат." #: actions/apitimelinefavorites.php:110 #, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%1$s / Омилени од %2$s" +msgstr "%1$s / Бендисани од %2$s" #: actions/apitimelinefavorites.php:119 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "Подновувања на %1$s омилени на %2$s / %2$s." +msgstr "Подновувања на %1$s бендисани од %2$s / %2$s." #: actions/apitimelinementions.php:118 #, php-format @@ -1265,11 +1265,11 @@ msgstr "Зачувај изглед" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "Оваа забелешка не Ви е омилена!" +msgstr "Оваа забелешка не Ви е бендисана!" #: actions/disfavor.php:94 msgid "Add to favorites" -msgstr "Додај во омилени" +msgstr "Додај во бендисани" #: actions/doc.php:158 #, php-format @@ -1492,7 +1492,7 @@ msgstr "Испраќај ми известувања за нови претпл #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Испраќај ми е-пошта кога некој ќе додаде моја забелешка како омилена." +msgstr "Испраќај ми е-пошта кога некој ќе бендиса моја забелешка." #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:197 @@ -1622,11 +1622,11 @@ msgstr "Додадена е нова влезна е-поштенска адре #: actions/favor.php:79 msgid "This notice is already a favorite!" -msgstr "Оваа белешка е веќе омилена!" +msgstr "Веќе сте ја бендисале оваа забелешка!" #: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" -msgstr "Тргни од омилени" +msgstr "Тргни од бендисани" #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 @@ -1645,16 +1645,16 @@ msgstr "Моментално најпопуларни забелешки на м #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -"Омилените забелешки се појавуваат на оваа страница, но никој досега нема " -"одбележано таква." +"Бендисаните забелешки се појавуваат на оваа страница, но досега никој нема " +"бендисано ништо." #: actions/favorited.php:153 msgid "" "Be the first to add a notice to your favorites by clicking the fave button " "next to any notice you like." msgstr "" -"Бидете првиот што ќе додаде белешка во омилени со тоа што ќе кликнете на " -"копчето за омилени забелешки веднаш до забелешката која Ви се допаѓа." +"Бидете првиот што ќе бендиса забелешка со тоа што ќе кликнете на копчето за " +"бендисување веднаш до забелешката која Ви се допаѓа." #: actions/favorited.php:156 #, php-format @@ -1663,18 +1663,18 @@ msgid "" "notice to your favorites!" msgstr "" "А зошто не [регистрирате сметка](%%action.register%%) и да бидете први што " -"ќе додадете забелешка во Вашите омилени!" +"ќе бендисате забелешка!" #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 #, php-format msgid "%s's favorite notices" -msgstr "Омилени забелешки на %s" +msgstr "Бендисани забелешки на %s" #: actions/favoritesrss.php:115 #, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "Подновувања, омилени на %1$s на %2$s!" +msgstr "Подновувања, бендисани од %1$s на %2$s!" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 @@ -3872,35 +3872,35 @@ msgstr "" #: actions/showfavorites.php:79 #, php-format msgid "%1$s's favorite notices, page %2$d" -msgstr "Омилени забелешки на %1$s, стр. %2$d" +msgstr "Бендисан забелешки на %1$s, страница %2$d" #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." -msgstr "Не можев да ги вратам омилените забелешки." +msgstr "Не можев да ги повратам бендисаните забелешки." #: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Канал за омилени забелешки на %s (RSS 1.0)" +msgstr "Канал за бендисани забелешки на %s (RSS 1.0)" #: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Канал за омилени забелешки на %s (RSS 2.0)" +msgstr "Канал за бендисани забелешки на %s (RSS 2.0)" #: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Канал за омилени забелешки на %s (Atom)" +msgstr "Канал за бендисани забелешки на %s (Atom)" #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -"Сè уште немате избрано ниедна омилена забелешка. Кликнете на копчето за " -"омилена забелешка веднаш до самата забелешката што Ви се допаѓа за да ја " -"обележите за подоцна, или за да ѝ дадете на важност." +"Сè уште немате избрано ниедна бендисана забелешка. Кликнете на копчето за " +"бендисување веднаш до самата забелешката што Ви се допаѓа за да ја обележите " +"за подоцна, или за да ѝ дадете на важност." #: actions/showfavorites.php:208 #, php-format @@ -3908,8 +3908,8 @@ msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" -"%s сè уште нема додадено омилени забелешки. Објавете нешто интересно, што " -"корисникот би го обележал како омилено :)" +"%s сè уште нема бендисано ниедна забелешка. Објавете нешто интересно, што " +"корисникот би го бендисал :)" #: actions/showfavorites.php:212 #, php-format @@ -3918,9 +3918,9 @@ msgid "" "action.register%%%%) and then post something interesting they would add to " "their favorites :)" msgstr "" -"%s сè уште нема додадено омилени забелешки. Зошто не се [регистрирате](%%%%" +"%s сè уште нема додадено бендисани забелешки. Зошто не се [регистрирате](%%%%" "action.register%%%%) и потоа објавите нешто интересно што корисникот би го " -"додал како омилено :)" +"бендисал :)" #: actions/showfavorites.php:243 msgid "This is a way to share what you like." @@ -4996,7 +4996,7 @@ msgstr "Автор(и)" #. TRANS: Activity title when marking a notice as favorite. #: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" -msgstr "Омилено" +msgstr "Бендисај" #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -5060,7 +5060,7 @@ msgstr "Напуштањето на групата не успеа." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Назнаката (ID) %s на профилот е неважечка." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5848,7 +5848,7 @@ msgstr "Одземи" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "авторскиот елемент мора да содржи елемент на име." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -5973,7 +5973,7 @@ msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. #: lib/command.php:312 msgid "Notice marked as fave." -msgstr "Забелешката е обележана како омилена." +msgstr "Забелешката е обележана како бендисана." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. @@ -6245,8 +6245,8 @@ msgstr "" "d - директна порака за корисник\n" "get - прикажи последна забелешка на корисник\n" "whois - прикажи профилни информации за корисник\n" -"fav - додај последна забелешка на корисник во омилени\n" -"fav # - додај забелешка со даден id како омилена\n" +"fav - додај ја последната забелешка на корисникот во бендисани\n" +"fav # - додај забелешка со даден id како бендисана\n" "repeat # - повтори забелешка со даден id\n" "repeat - повтори последна забелешка на корисник\n" "reply # - одговори на забелешка со даден id\n" @@ -6350,11 +6350,11 @@ msgstr "Основно-зададениот изглед е вратен." #: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" -msgstr "Отстрани ја белешкава од омилени" +msgstr "Одбендисај ја забелешкава" #: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" -msgstr "Означи ја забелешкава како омилена" +msgstr "Бендисај ја забелешкава" #: lib/feed.php:85 msgid "RSS 1.0" @@ -6788,7 +6788,7 @@ msgstr "" #: lib/mail.php:589 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%s (@%s) додаде Ваша забелешка како омилена" +msgstr "%s (@%s) бендиса Ваша забелешка" #. TRANS: Body for favorite notification email #: lib/mail.php:592 @@ -6811,8 +6811,7 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" -"%1$s (@%7$s) штотуку ја додаде Вашата забелешка од %2$s како една од " -"омилените.\n" +"%1$s (@%7$s) штотуку ја бендиса Вашата забелешка од %2$s.\n" "\n" "URL-адресата на Вашата забелешка е:\n" "\n" @@ -6822,7 +6821,7 @@ msgstr "" "\n" "%4$s\n" "\n" -"Погледнете список на омилените забелешки на %1$s тука:\n" +"Погледнете список на бендисаните забелешки на %1$s тука:\n" "\n" "%5$s\n" "\n" @@ -7160,7 +7159,7 @@ msgstr "Одговори" #: lib/personalgroupnav.php:114 msgid "Favorites" -msgstr "Омилени" +msgstr "Бендисани" #: lib/personalgroupnav.php:125 msgid "Inbox" @@ -7578,9 +7577,3 @@ msgstr "Нема назначено корисник. Ќе го употреба #, php-format msgid "%d entries in backup." msgstr "%d резервни ставки." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s ја означи забелешката %s како омилена." - -#~ msgid "%s is now following %s." -#~ msgstr "%s сега го/ја следи %s." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 10f0bc9758..26eb32056d 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:10+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index f0d5df52ff..bf0be6d0c9 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1278,7 +1278,7 @@ msgstr "Ontwerp opslaan" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "Deze mededeling staats niet op uw favorietenlijst." +msgstr "Deze mededeling staat niet op uw favorietenlijst." #: actions/disfavor.php:94 msgid "Add to favorites" @@ -1638,7 +1638,7 @@ msgstr "Deze mededeling staat al in uw favorietenlijst." #: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" -msgstr "Van favotietenlijst verwijderen" +msgstr "Van favorietenlijst verwijderen" #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 @@ -5091,14 +5091,14 @@ msgstr "Groepslidmaatschap opzeggen is mislukt." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Profiel-ID %s is ongeldig." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. #: classes/Group_member.php:89 -#, fuzzy, php-format +#, php-format msgid "Group ID %s is invalid." -msgstr "Fout bij opslaan gebruiker; ongeldig." +msgstr "Groep-ID %s is ongeldig." #. TRANS: Activity title. #: classes/Group_member.php:113 lib/joinform.php:114 @@ -5791,10 +5791,10 @@ msgstr "Icoon voor deze applicatie" #. TRANS: Form input field instructions. #. TRANS: %d is the number of available characters for the description. #: lib/applicationeditform.php:201 -#, fuzzy, php-format +#, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" -msgstr[0] "Beschrijf uw applicatie in %d tekens" +msgstr[0] "Beschrijf uw applicatie in een enkel teken" msgstr[1] "Beschrijf uw applicatie in %d tekens" #. TRANS: Form input field instructions. @@ -5887,7 +5887,7 @@ msgstr "Intrekken" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "Het element author moet een element name bevatten." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -5916,13 +5916,11 @@ msgstr "Labels voor deze bijlage" #. TRANS: Exception thrown when a password change fails. #: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 -#, fuzzy msgid "Password changing failed." msgstr "Wachtwoord wijzigen is mislukt" #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. #: lib/authenticationplugin.php:238 -#, fuzzy msgid "Password changing is not allowed." msgstr "Wachtwoord wijzigen is niet toegestaan" @@ -5938,7 +5936,6 @@ msgstr "Commandoresultaten" #. TRANS: Title for command results. #: lib/channel.php:194 -#, fuzzy msgid "AJAX error" msgstr "Er is een Ajax-fout opgetreden" @@ -6342,7 +6339,6 @@ msgstr "Naar het installatieprogramma gaan." #. TRANS: Menu item for Instant Messaging settings. #: lib/connectsettingsaction.php:106 -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -6354,7 +6350,6 @@ msgstr "Updates via instant messenger (IM)" #. TRANS: Menu item for Short Message Service settings. #: lib/connectsettingsaction.php:113 -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -6366,10 +6361,9 @@ msgstr "Updates via SMS" #. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 -#, fuzzy msgctxt "MENU" msgid "Connections" -msgstr "Verbindingen" +msgstr "Koppelingen" #. TRANS: Tooltip for connected applications (Connections through OAth) menu item. #: lib/connectsettingsaction.php:122 @@ -7630,9 +7624,3 @@ msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt." #, php-format msgid "%d entries in backup." msgstr "%d regels in de back-up." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s heeft de mededeling %s als favoriet gemarkeerd." - -#~ msgid "%s is now following %s." -#~ msgstr "%s volgt nu $s." diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 28da648ee1..4469e27768 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:21+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:09+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 371550e090..533f037b7c 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:11+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5027,7 +5027,7 @@ msgstr "Opuszczenie grupy nie powiodło się." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Identyfikator profilu %s jest nieprawidłowy." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5814,7 +5814,7 @@ msgstr "Unieważnij" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "element autora musi zawierać element nazwy." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -7552,9 +7552,3 @@ 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 "%s marked notice %s as a favorite." -#~ msgstr "Użytkownik %s oznaczył wpis %s jako ulubiony." - -#~ msgid "%s is now following %s." -#~ msgstr "Użytkownik %s obserwuje teraz %s." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 90a14d917e..48ff136b50 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:23+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:12+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index ce9407ae06..ebee1ca5f3 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:24+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:13+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 01a8dfc192..ce1f90620b 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 973a599fbb..8d976f2619 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-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 99fbeae471..c277294c6e 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:26+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:15+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 88e383d20f..19e0a80520 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:27+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:16+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 4f5e88c692..a8d4774fb9 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:29+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:17+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -732,7 +732,7 @@ msgstr "%s için cevaplar" #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" -msgstr "" +msgstr "%s ile etiketli durum mesajları" #: actions/apitimelinetag.php:107 actions/tagrss.php:65 #, fuzzy, php-format @@ -1515,9 +1515,8 @@ msgstr "Bir takma ad veya eposta adresi girin." #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:338 -#, fuzzy msgid "Email preferences saved." -msgstr "Tercihler kaydedildi." +msgstr "E-posta tercihleri kaydedildi." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:357 @@ -1539,9 +1538,8 @@ msgstr "Geçersiz bir eposta adresi." #. TRANS: Message given saving e-mail address that is already set. #: actions/emailsettings.php:374 -#, fuzzy msgid "That is already your email address." -msgstr "Bu zaten sizin Jabber ID'niz." +msgstr "Bu zaten sizin e-posta adresiniz." #. TRANS: Message given saving e-mail address that is already set for another user. #: actions/emailsettings.php:378 @@ -1588,9 +1586,8 @@ msgstr "İptal etmek için beklenen onay yok." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. #: actions/emailsettings.php:462 -#, fuzzy msgid "That is not your email address." -msgstr "Yanlış IM adresi." +msgstr "Bu sizin e-posta adresiniz değil." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:483 @@ -1606,9 +1603,8 @@ msgstr "Geçersiz bir eposta adresi." #. TRANS: Server error thrown on database error adding incoming e-mail address. #: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 -#, fuzzy msgid "Couldn't update user record." -msgstr "Kullanıcı güncellenemedi." +msgstr "Kullanıcı kayıtları güncellenemedi." #. TRANS: Message given after successfully removing an incoming e-mail address. #: actions/emailsettings.php:512 actions/smssettings.php:581 @@ -1738,9 +1734,8 @@ msgid "Error updating remote profile." msgstr "Uzaktaki profili güncellemede hata oluştu" #: actions/getfile.php:79 -#, fuzzy msgid "No such file." -msgstr "Böyle bir durum mesajı yok." +msgstr "Böyle bir dosya yok." #: actions/getfile.php:83 msgid "Cannot read file." @@ -1780,26 +1775,23 @@ msgstr "" #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." -msgstr "" +msgstr "Hiçbir grup belirtilmedi." #: actions/groupblock.php:91 msgid "Only an admin can block group members." -msgstr "" +msgstr "Sadece bir yönetici grup üyelerini engelleyebilir." #: actions/groupblock.php:95 -#, fuzzy msgid "User is already blocked from group." -msgstr "Kullanıcının profili yok." +msgstr "Kullanıcı zaten gruptan engellenmiş." #: actions/groupblock.php:100 -#, fuzzy msgid "User is not a member of group." -msgstr "Bize o profili yollamadınız" +msgstr "Kullanıcı grubunun bir üyesi değil." #: actions/groupblock.php:134 actions/groupmembers.php:364 -#, fuzzy msgid "Block user from group" -msgstr "Böyle bir kullanıcı yok." +msgstr "Kullanıcıyı gruptan engelle" #: actions/groupblock.php:160 #, php-format @@ -1811,15 +1803,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:182 -#, fuzzy msgid "Do not block this user from this group" -msgstr "Sunucuya yönlendirme yapılamadı: %s" +msgstr "Bu kullanıcıyı bu gruptan engellemeyin" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 -#, fuzzy msgid "Block this user from this group" -msgstr "Böyle bir kullanıcı yok." +msgstr "Bu kullanıcıyı bu gruptan engelleyin" #: actions/groupblock.php:206 msgid "Database error blocking user from group." @@ -1835,7 +1825,7 @@ msgstr "Bir grubu düzenlemek için giriş yapmış olmanız gerekir." #: actions/groupdesignsettings.php:144 msgid "Group design" -msgstr "" +msgstr "Grup dizaynı" #: actions/groupdesignsettings.php:155 msgid "" @@ -1856,7 +1846,7 @@ msgstr "Tercihler kaydedildi." #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" -msgstr "" +msgstr "Grup logosu" #: actions/grouplogo.php:153 #, fuzzy, php-format @@ -1884,7 +1874,7 @@ msgstr "Avatar güncellemede hata." #: actions/groupmembers.php:102 #, php-format msgid "%s group members" -msgstr "" +msgstr "%s grup üyeleri" #. TRANS: Title of the page showing group members. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. @@ -1895,7 +1885,7 @@ msgstr "" #: actions/groupmembers.php:122 msgid "A list of the users in this group." -msgstr "" +msgstr "Bu gruptaki kullanıcıların listesi." #: actions/groupmembers.php:186 msgid "Admin" @@ -1911,32 +1901,32 @@ msgstr "Engelle" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bu kullanıcıyı engelle" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" -msgstr "" +msgstr "Kullanıcıyı grubun bir yöneticisi yap" #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Yönetici Yap" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Bu kullanıcıyı yönetici yap" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 -#, fuzzy, php-format +#, php-format msgid "%s timeline" -msgstr "Genel zaman çizgisi" +msgstr "%s zaman çizelgesi" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #: actions/grouprss.php:142 @@ -1965,9 +1955,8 @@ msgid "" msgstr "" #: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -#, fuzzy msgid "Create a new group" -msgstr "Yeni hesap oluştur" +msgstr "Yeni bir grup oluştur" #: actions/groupsearch.php:52 #, fuzzy, php-format @@ -1980,15 +1969,13 @@ msgstr "" "karakterden oluşmalı. " #: actions/groupsearch.php:58 -#, fuzzy msgid "Group search" -msgstr "Kişi Arama" +msgstr "Grup arama" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "Sonuç yok" +msgstr "Sonuç yok." #: actions/groupsearch.php:82 #, php-format @@ -2009,14 +1996,12 @@ msgid "Only an admin can unblock group members." msgstr "" #: actions/groupunblock.php:95 -#, fuzzy msgid "User is not blocked from group." -msgstr "Kullanıcının profili yok." +msgstr "Kullanıcı gruptan engellenmedi." #: actions/groupunblock.php:128 actions/unblock.php:86 -#, fuzzy msgid "Error removing the block." -msgstr "Kullanıcıyı kaydetmede hata oluştu." +msgstr "Engellemeyi kaldırırken hata." #. TRANS: Title for instance messaging settings. #: actions/imsettings.php:60 @@ -2037,16 +2022,14 @@ msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. #: actions/imsettings.php:94 -#, fuzzy msgid "IM is not available." -msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" +msgstr "Anlık mesajlaşma mevcut değil." #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 -#, fuzzy msgid "IM address" -msgstr "IM adresi" +msgstr "Anlık mesajlaşma adresi" #: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." @@ -2182,7 +2165,7 @@ msgstr "" #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" -msgstr "" +msgstr "%s için gelen kutusu" #: actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." @@ -2204,11 +2187,11 @@ msgstr "Geçersiz bir eposta adresi." #: actions/invite.php:110 msgid "Invitation(s) sent" -msgstr "" +msgstr "Davet(iyeler) gönderildi" #: actions/invite.php:112 msgid "Invite new users" -msgstr "" +msgstr "Yeni kullanıcıları davet et" #: actions/invite.php:128 #, fuzzy @@ -2252,9 +2235,8 @@ msgid "Addresses of friends to invite (one per line)" msgstr "" #: actions/invite.php:192 -#, fuzzy msgid "Personal message" -msgstr "Kişisel" +msgstr "Kişisel mesaj" #: actions/invite.php:194 msgid "Optionally add a personal message to the invitation." @@ -2262,7 +2244,6 @@ msgstr "" #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Gönder" @@ -2307,7 +2288,7 @@ msgstr "" #: actions/joingroup.php:60 msgid "You must be logged in to join a group." -msgstr "" +msgstr "Gruba katılmak için giriş yapmalısınız." #: actions/joingroup.php:88 actions/leavegroup.php:88 #, fuzzy @@ -2325,9 +2306,8 @@ msgstr "" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. #: actions/leavegroup.php:100 lib/command.php:386 -#, fuzzy msgid "You are not a member of that group." -msgstr "Bize o profili yollamadınız" +msgstr "Bu grubun bir üyesi değilsiniz." #: actions/leavegroup.php:137 #, fuzzy, php-format @@ -2338,15 +2318,15 @@ msgstr "%1$s'in %2$s'deki durum mesajları " #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Lisans" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Bu StatusNet sitesi için lisans" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Geçersiz lisans seçimi." #: actions/licenseadminpanel.php:149 msgid "" @@ -2356,27 +2336,27 @@ msgstr "" #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Geçersiz lisans başlığı. En fazla uzunluk 255 karakterdir." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Geçersiz lisans bağlantısı." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Geçersiz lisans resmi bağlantısı." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Lisans bağlantısı boş veya geçerli bir tane olmalıdır." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Lisans resmi boş veya geçerli bir tane olmalıdır." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Lisans seçimi" #: actions/licenseadminpanel.php:245 #, fuzzy @@ -2385,11 +2365,11 @@ msgstr "Gizlilik" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Tüm Hakları Saklıdır" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" @@ -2397,47 +2377,47 @@ msgstr "" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Lisans seç" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Lisans ayrıntıları" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Sahibi" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "site içeriğinin sahibinin ismi (eğer varsa)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Lisans Başlığı" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Lisansın başlığı." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "Lisans Bağlantısı" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "Lisans hakkında daha fazla bilgi için bağlantı." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "Lisans Resminin Bağlantısı" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "Lisansla birlikte gösterilecek bir resim için bağlantı." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Lisans ayarlarını kaydet" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2458,7 +2438,7 @@ msgstr "Giriş" #: actions/login.php:249 msgid "Login to site" -msgstr "" +msgstr "Siteye giriş" #: actions/login.php:258 actions/register.php:485 msgid "Remember me" @@ -2496,7 +2476,7 @@ msgstr "" #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." -msgstr "" +msgstr "Sadece bir yönetici, başka bir kullanıcıyı yönetici yapabilir." #: actions/makeadmin.php:96 #, fuzzy, php-format @@ -2519,9 +2499,8 @@ msgid "No current status." msgstr "Sonuç yok" #: actions/newapplication.php:52 -#, fuzzy msgid "New Application" -msgstr "Böyle bir durum mesajı yok." +msgstr "Yeni Uygulama" #: actions/newapplication.php:64 msgid "You must be logged in to register an application." @@ -2541,7 +2520,7 @@ msgstr "Eposta onayı silinemedi." #: actions/newgroup.php:53 msgid "New group" -msgstr "" +msgstr "Yeni grup" #: actions/newgroup.php:110 msgid "Use this form to create a new group." @@ -2549,7 +2528,7 @@ msgstr "" #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" -msgstr "" +msgstr "Yeni mesaj" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). #: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 @@ -2583,20 +2562,19 @@ msgstr "" #: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." -msgstr "" +msgstr "%s kullanıcısına özel mesaj gönderildi." #: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" -msgstr "" +msgstr "Ajax Hatası" #: actions/newnotice.php:69 msgid "New notice" msgstr "Yeni durum mesajı" #: actions/newnotice.php:227 -#, fuzzy msgid "Notice posted" -msgstr "Durum mesajları" +msgstr "Durum mesajı gönderildi" #: actions/noticesearch.php:68 #, php-format @@ -2612,9 +2590,9 @@ msgid "Text search" msgstr "Metin arama" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr " \"%s\" için arama sonuçları" +msgstr "%2$s üzerindeki \"%1$s\" için arama sonuçları" #: actions/noticesearch.php:121 #, php-format @@ -2655,15 +2633,15 @@ msgstr "" #: actions/oauthappssettings.php:59 msgid "You must be logged in to list your applications." -msgstr "" +msgstr "Uygulamalarınızı listelemek için giriş yapmış olmanız gerekir." #: actions/oauthappssettings.php:74 msgid "OAuth applications" -msgstr "" +msgstr "OAuth uygulamaları" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" -msgstr "" +msgstr "Kaydettiğiniz uygulamalar" #: actions/oauthappssettings.php:135 #, php-format @@ -2672,16 +2650,15 @@ msgstr "" #: actions/oauthconnectionssettings.php:72 msgid "Connected applications" -msgstr "" +msgstr "Bağlı uygulamalar" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:175 -#, fuzzy msgid "You are not a user of that application." -msgstr "Bize o profili yollamadınız" +msgstr "Bu uygulamanın bir kullanıcısı değilsiniz." #: actions/oauthconnectionssettings.php:186 #, php-format @@ -2720,19 +2697,16 @@ msgstr "" #. TRANS: Client error on an API request with an unsupported data format. #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 #: lib/apiaction.php:1227 lib/apiaction.php:1350 -#, fuzzy msgid "Not a supported data format." -msgstr "Desteklenmeyen görüntü dosyası biçemi." +msgstr "Desteklenen bir veri biçimi değil." #: actions/opensearch.php:64 -#, fuzzy msgid "People Search" msgstr "Kişi Arama" #: actions/opensearch.php:67 -#, fuzzy msgid "Notice Search" -msgstr "Ara" +msgstr "Durum Mesajı Arama" #: actions/othersettings.php:60 msgid "Other settings" @@ -2748,16 +2722,15 @@ msgstr "" #: actions/othersettings.php:116 msgid "Shorten URLs with" -msgstr "" +msgstr "Bağlantıları şununla kısalt" #: actions/othersettings.php:117 msgid "Automatic shortening service to use." -msgstr "" +msgstr "Kullanılacak otomatik kısaltma servisi." #: actions/othersettings.php:122 -#, fuzzy msgid "View profile designs" -msgstr "Profil ayarları" +msgstr "Profil dizaynlarını görüntüle" #: actions/othersettings.php:123 msgid "Show or hide profile designs." @@ -2811,14 +2784,12 @@ msgid "Change password" msgstr "Parolayı değiştir" #: actions/passwordsettings.php:69 -#, fuzzy msgid "Change your password." -msgstr "Parolayı değiştir" +msgstr "Parolanızı değiştirin." #: actions/passwordsettings.php:96 actions/recoverpassword.php:231 -#, fuzzy msgid "Password change" -msgstr "Parola kaydedildi." +msgstr "Parola değiştirildi" #: actions/passwordsettings.php:104 msgid "Old password" @@ -2846,7 +2817,6 @@ msgid "Change" msgstr "Değiştir" #: actions/passwordsettings.php:154 actions/register.php:237 -#, fuzzy msgid "Password must be 6 or more characters." msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." @@ -2873,11 +2843,11 @@ msgstr "Parola kaydedildi." #. TRANS: Menu item for site administration #: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" -msgstr "" +msgstr "Yollar" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Bu StatusNet sitesi için yol ve sunucu ayarları" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format @@ -2905,7 +2875,7 @@ msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 msgid "Site" -msgstr "" +msgstr "Site" #: actions/pathsadminpanel.php:238 msgid "Server" @@ -2917,12 +2887,11 @@ msgstr "" #: actions/pathsadminpanel.php:242 msgid "Path" -msgstr "" +msgstr "Yol" #: actions/pathsadminpanel.php:242 -#, fuzzy msgid "Site path" -msgstr "Yeni durum mesajı" +msgstr "Site yolu" #: actions/pathsadminpanel.php:246 msgid "Path to locales" @@ -3133,33 +3102,35 @@ msgstr "" #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:210 msgid "Tags" -msgstr "" +msgstr "Etiketler" #: actions/profilesettings.php:147 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" +"Kendiniz için etiketler (harf, sayı, -. ., ve _ kullanılabilir), virgül veya " +"boşlukla ayırabilirsiniz" #: actions/profilesettings.php:151 msgid "Language" -msgstr "" +msgstr "Dil" #: actions/profilesettings.php:152 msgid "Preferred language" -msgstr "" +msgstr "Tercih edilen dil" #: actions/profilesettings.php:161 msgid "Timezone" -msgstr "" +msgstr "Zaman dilimi" #: actions/profilesettings.php:162 msgid "What timezone are you normally in?" -msgstr "" +msgstr "Normalde hangi zaman dilimi içindesiniz?" #: actions/profilesettings.php:167 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +msgstr "Bana abone olan herkese abone yap (insan olmayanlar için en iyisi)" #: actions/profilesettings.php:228 actions/register.php:230 #, php-format @@ -3168,12 +3139,11 @@ msgstr "Yer bilgisi çok uzun (azm: %d karakter)." #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." -msgstr "" +msgstr "Zaman dilimi seçilmedi." #: actions/profilesettings.php:241 -#, fuzzy msgid "Language is too long (max 50 chars)." -msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." +msgstr "Dil çok uzun (maksimum: 50 karakter)." #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format @@ -3442,7 +3412,7 @@ msgstr "Onay kodu hatası." #: actions/register.php:119 msgid "Registration successful" -msgstr "" +msgstr "Kayıt başarılı" #: actions/register.php:121 actions/register.php:506 lib/logingroupnav.php:85 msgid "Register" @@ -3450,7 +3420,7 @@ msgstr "Kayıt" #: actions/register.php:142 msgid "Registration not allowed." -msgstr "" +msgstr "Kayıt yapılmasına izin verilmiyor." #: actions/register.php:205 msgid "You can't register if you don't agree to the license." @@ -3521,7 +3491,7 @@ msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. #: actions/register.php:535 msgid "All rights reserved." -msgstr "" +msgstr "Tüm hakları saklıdır." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. #: actions/register.php:540 @@ -3759,7 +3729,7 @@ msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" -msgstr "" +msgstr "Simge" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 @@ -3770,16 +3740,14 @@ msgstr "Takma ad" #. TRANS: Form input field label. #: actions/showapplication.php:178 lib/applicationeditform.php:227 -#, fuzzy msgid "Organization" -msgstr "Yer" +msgstr "Organizasyon" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:172 -#, fuzzy msgid "Description" -msgstr "Abonelikler" +msgstr "Tanım" #: actions/showapplication.php:192 actions/showgroup.php:436 #: lib/profileaction.php:187 @@ -3900,13 +3868,12 @@ msgstr "Kullanıcının profili yok." #: actions/showgroup.php:272 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" -msgstr "" +msgstr "Bağlantı" #: actions/showgroup.php:283 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 -#, fuzzy msgid "Note" -msgstr "Durum mesajları" +msgstr "Not" #: actions/showgroup.php:293 lib/groupeditform.php:184 msgid "Aliases" @@ -3949,12 +3916,11 @@ msgstr "" #: actions/showgroup.php:404 msgid "All members" -msgstr "" +msgstr "Tüm üyeler" #: actions/showgroup.php:439 -#, fuzzy msgid "Created" -msgstr "Yarat" +msgstr "Oluşturuldu" #: actions/showgroup.php:455 #, php-format @@ -3977,12 +3943,11 @@ msgstr "" #: actions/showgroup.php:489 msgid "Admins" -msgstr "" +msgstr "Yöneticiler" #: actions/showmessage.php:81 -#, fuzzy msgid "No such message." -msgstr "Böyle bir kullanıcı yok." +msgstr "Böyle bir mesaj yok." #: actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." @@ -3999,9 +3964,8 @@ msgid "Message from %1$s on %2$s" msgstr "" #: actions/shownotice.php:90 -#, fuzzy msgid "Notice deleted." -msgstr "Durum mesajları" +msgstr "Durum mesajı silindi." #: actions/showstream.php:73 #, php-format @@ -4115,12 +4079,11 @@ msgstr "" #: actions/siteadminpanel.php:221 msgid "General" -msgstr "" +msgstr "Genel" #: actions/siteadminpanel.php:224 -#, fuzzy msgid "Site name" -msgstr "Yeni durum mesajı" +msgstr "Site ismi" #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" @@ -4148,13 +4111,12 @@ msgid "Contact email address for your site" msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." #: actions/siteadminpanel.php:245 -#, fuzzy msgid "Local" -msgstr "Yer" +msgstr "Yerel" #: actions/siteadminpanel.php:256 msgid "Default timezone" -msgstr "" +msgstr "Öntanımlı saat dilimi" #: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." @@ -4162,7 +4124,7 @@ msgstr "" #: actions/siteadminpanel.php:262 msgid "Default language" -msgstr "" +msgstr "Öntanımlı dil" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" @@ -5060,15 +5022,13 @@ msgstr "Avatar eklemede hata oluştu" #. TRANS: Client exception thrown if a notice contains too many characters. #: classes/Notice.php:265 -#, fuzzy msgid "Problem saving notice. Too long." -msgstr "Durum mesajını kaydederken hata oluştu." +msgstr "Durum mesajını kaydederken hata oluştu. Çok uzun." #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 -#, fuzzy msgid "Problem saving notice. Unknown user." -msgstr "Durum mesajını kaydederken hata oluştu." +msgstr "Durum mesajını kaydederken hata oluştu. Bilinmeyen kullanıcı." #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. #: classes/Notice.php:276 @@ -5128,15 +5088,13 @@ msgstr "" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. #: classes/Remote_profile.php:54 -#, fuzzy msgid "Missing profile." -msgstr "Kullanıcının profili yok." +msgstr "Profil yok." #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 -#, fuzzy msgid "Unable to save tag." -msgstr "Durum mesajını kaydederken hata oluştu." +msgstr "Etiket kaydedilemedi." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 @@ -5145,9 +5103,8 @@ msgstr "" #. TRANS: Exception thrown when trying to subscribe while already subscribed. #: classes/Subscription.php:80 -#, fuzzy msgid "Already subscribed!" -msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" +msgstr "Zaten abone olunmuş!" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 @@ -5210,21 +5167,18 @@ msgstr "Profil kaydedilemedi." #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:104 -#, fuzzy msgid "Change your profile settings" -msgstr "Profil ayarları" +msgstr "Profil ayarlarınızı değiştirin" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:111 -#, fuzzy msgid "Upload an avatar" -msgstr "Avatar güncellemede hata." +msgstr "Bir kullanıcı resmi yükle" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:118 -#, fuzzy msgid "Change your password" -msgstr "Parolayı değiştir" +msgstr "Parolanızı değiştirin" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:125 @@ -5233,19 +5187,18 @@ msgstr "" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:132 -#, fuzzy msgid "Design your profile" -msgstr "Kullanıcının profili yok." +msgstr "Profilinizi tasarlayın" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:139 msgid "Other options" -msgstr "" +msgstr "Diğer seçenekler" #. TRANS: Link description in user account settings menu. #: lib/accountsettingsaction.php:141 msgid "Other" -msgstr "" +msgstr "Diğer" #. TRANS: Page title. %1$s is the title, %2$s is the site name. #: lib/action.php:148 @@ -5256,7 +5209,7 @@ msgstr "%1$s'in %2$s'deki durum mesajları " #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" -msgstr "" +msgstr "Başlıksız sayfa" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. #: lib/action.php:448 @@ -5267,11 +5220,10 @@ msgstr "" #: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" -msgstr "" +msgstr "Kişisel profil ve arkadaşların zaman çizelgesi" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline #: lib/action.php:457 -#, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Kişisel" @@ -5284,10 +5236,9 @@ msgstr "E-postanızı, kullanıcı resminizi, parolanızı, profilinizi değişt #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:464 -#, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" -msgstr "Sunucuya yönlendirme yapılamadı: %s" +msgstr "Servislere bağlan" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:467 @@ -5305,7 +5256,7 @@ msgstr "Site yapılandırmasını değiştir" #: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" -msgstr "" +msgstr "Yönetim" #. TRANS: Tooltip for main menu option "Invite" #: lib/action.php:477 @@ -5313,6 +5264,8 @@ msgstr "" msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" +"%s üzerinde size katılmaları için arkadaşlarınızı ve meslektaşlarınızı davet " +"edin" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users #: lib/action.php:480 diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index f67f06333b..52b750ce89 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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:30+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3058,7 +3058,7 @@ msgstr "Це недійсний особистий теґ: %s." #: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "Користувачі з особистим теґом %1$s — сторінка %2$d" +msgstr "Користувачі з особистим теґом «%1$s» — сторінка %2$d" #: actions/postnotice.php:95 msgid "Invalid notice content." @@ -5038,7 +5038,7 @@ msgstr "Не вдалося залишити спільноту." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Ід. номер профілю %s не є дійсним." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5821,7 +5821,7 @@ msgstr "Відкликати" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "авторський елемент повинен містити назву елемента." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -7557,9 +7557,3 @@ msgstr "" #, php-format msgid "%d entries in backup." msgstr "У резервному файлі збережено %d дописів." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s додав допис %s до списку обраних." - -#~ msgid "%s is now following %s." -#~ msgstr "%s тепер слідкує за %s." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index bca81310e8..eec90e3c45 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:32+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:19+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 (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -7358,9 +7358,3 @@ msgstr "没有用户被指定;使用备份用户。\n" #, php-format msgid "%d entries in backup." msgstr "备份中有 %d 个条目。\n" - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s 将消息 %s 添加到了收藏。" - -#~ msgid "%s is now following %s." -#~ msgstr "%s 现在开始关注 %s." diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index c1e83ee5ac..9343ee5ede 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..6aab6d5787 --- /dev/null +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Fulup +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Ober gant an APC grubuilh " +"kemm-digemm evit krubuilhañ disoc'hoù ar rekedoù." diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index 87b3d6d4e9..e3b8ec8b2b 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-apc\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 1a143d8541..92f342b378 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index 6726759eea..67305afc1a 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:15:20+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 54c93cfe67..14a1832613 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index b187afed72..088acc9b01 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index 1b5e6fadd1..5e3f15b5a6 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-apc\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index 8f35461900..c65407320d 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-apc\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 2b4a0f3392..392a204117 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:15:20+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-apc\n" diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index 55c071e1c8..1198fefcb4 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-apc\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index f7c292a9dc..2aeb21ab09 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-apc\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index 58d8ecec38..7996ea2f41 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-apc\n" diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index b6044f1ea6..690be13bd6 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index 5aa555972a..f363d29c49 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index 50137acfbc..7c27e264cb 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-apc\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index 6871677923..5b64960c89 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index b1ee5549ab..f9a8d4a7a6 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:20+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-adsense\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index 1d5778a4fd..d5df371b72 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index f3c0c35ce6..e658cb074a 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 3eb92f937e..1434535cb9 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..f9b171875c --- /dev/null +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Italian (Italiano) +# Expored from translatewiki.net +# +# Author: Milocasagrande +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"Language-Team: Italian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Configurazione AdSene" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Plugin per aggiungere Google Adsense ai siti StatusNet" + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Impostazioni AdSense per questo sito StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ID client" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID client Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL script Ad" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL script (avanzato)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Rettangolo medio" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Rettangolo" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 55c1da7ff9..003b60c02e 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-adsense\n" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index 7dc6fad7f3..fa9e1fe1b4 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index 23e1377697..65197bc021 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-adsense\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index 246ea8cf8f..044ea0bcc7 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-adsense\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index dde8044735..0f289d4339 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-adsense\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 5f48e074d3..2d71b55aa1 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index 0089ae40e4..0615bbc7d5 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/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-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-adsense\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index c0f446205d..ff07f17d7b 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..8b91051a08 --- /dev/null +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,107 @@ +# Translation of StatusNet - AnonymousFave to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:22+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "marcado como favorito una vez" +msgstr[1] "marcado como favorito %d veces" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "No se pudo crear sesión de usuario anónimo." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Permitir a usuarios anónimos marcar mensajes como favoritos." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"No fue posible marcar el mensaje como favorito. Por favor, asegúrate de que " +"las cookies están habilitadas en tu navegador." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Hubo un problema con tu token de sesión. Por favor, inténtalo de nuevo." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "¡Este mensaje ya está en favoritos!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "No se pudo crear favorito." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Eliminar de la lista de favoritos." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "No se pudo actualizar el la cuenta favorita para el mensaje de ID %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "No se pudo crear una cuenta favorita para el mensaje de ID %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"¡No es posible eliminar el mensaje de entre los favoritos! Por favor, " +"asegúrate de que las cookies estén habilitadas en tu navegador." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "¡Este mensaje no es un favorito!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "No se pudo borrar el favorito." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Añadir a favoritos" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..eb0ef34b94 --- /dev/null +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,106 @@ +# Translation of StatusNet - AnonymousFave to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:22+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "favorite un vice" +msgstr[1] "favorite %d vices" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "Non poteva crear session de usator anonyme." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Permitter a usatores anonyme de favorir notas." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Non poteva favorir le nota! Per favor assecura te que tu navigator ha le " +"cookies activate." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Iste nota es ja favorite!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Non poteva crear le favorite." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Disfavorir favorite" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "Non poteva actualisar le numero de favorites pro le ID de nota %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "Non poteva crear un numero de favorites pro le ID de nota %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Non poteva disfavorir le nota! Per favor assecura te que tu navigator ha le " +"cookies activate." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Iste nota non es favorite!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Non poteva deler le favorite." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Adder al favorites" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..c7d0157fe4 --- /dev/null +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,106 @@ +# Translation of StatusNet - AnonymousFave to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "бендисано еднаш" +msgstr[1] "бендисано %d пати" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "Не можев да создадам анонимна корисничка сесија." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Дозволи анонимни корисници да бендисуваат забелешки." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Не можев да ја бендисам заблешката. Проверете дали имате овозможено колачиња " +"во прелистувачот." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се подоцна." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Веќе сте ја бендисале оваа забелешка!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Не можев да создадам бендисана забелешка." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Одбендисај бендисана" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "Не можев да го поновам бројот на бендисувања за забелешката со ID %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "Не можев создадам бројач на бендисувања за забелешката со ID %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Не можев да ја одбендисам забелешката! Проверете дали имате овозможено " +"колачиња во прелистувачот." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Оваа забелешка не Ви е бендисана!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Не можев да ја избришам бендисаната забелешка." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Додај во бендисани" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..e729adefb8 --- /dev/null +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,114 @@ +# Translation of StatusNet - AnonymousFave to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: SPQRobin +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+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-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "één keer als favoriet aangemerkt" +msgstr[1] "%d keer als favoriet aangemerkt" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "Het was niet mogelijk een anonieme gebruikerssessie aan te maken." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Staat anonieme gebruikers toe mededelingen als favoriet aan te merken." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"De mededeling kon niet als favoriet aangemerkt worden. Zorg dat uw browser " +"het gebruik van cookies toestaat." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Deze mededeling staat al in uw favorietenlijst." + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Het was niet mogelijk een favoriet aan te maken." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Van favorietenlijst verwijderen" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "" +"Het was niet mogelijk de telling voor aantal favorieten bij te werken voor " +"de mededeling met ID %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "" +"Het was niet mogelijk de telling voor aantal favorieten aan te maken voor de " +"mededeling met ID %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"De mededeling kon niet als favoriet verwijderd worden. Zorg dat uw browser " +"het gebruik van cookies toestaat." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Deze mededeling staat niet op uw favorietenlijst." + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "" +"Het was niet mogelijk deze mededeling van uw favorietenlijst te verwijderen." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Aan favorieten toevoegen" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..57497d2816 --- /dev/null +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,111 @@ +# Translation of StatusNet - AnonymousFave to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\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" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "обране один раз" +msgstr[1] "обране %d рази" +msgstr[2] "обране %d разів" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "Не вдалося створити сесію анонімного користувача." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Дозволити анонімнім користувачам позначати повідомлення як обрані." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Не вдалося позначити повідомлення як обране! Будь ласка, переконайтеся, що у " +"вашому браузері увімкнено кукі." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Цей допис вже є обраним!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Не вдалося позначити як обране." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Видалити з обраних" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "" +"Не вдалося оновити кількість позначок «обране» для допису за номером %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "" +"Не вдалося створити лічильник кількості позначок «обране» для допису за " +"номером %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Не вдалося видалити повідомлення зі списку обраних! Будь ласка, " +"переконайтеся, що у вашому браузері увімкнено кукі." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Цей допис не є обраним!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Не можу видалити допис зі списку обраних." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Додати до обраних" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 8b89da3611..644420f4d8 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index 8925554f45..ff946f8bc9 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index 4ded500573..79d73805e5 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index 4f7cda6acf..1ccdbcc11e 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index 8c4c36bc97..996e3b085e 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index 9b23f16436..6d29637e3e 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 23a83fb634..9f6ac5b828 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index da02536e7c..ff12e5034e 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:36+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:12+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index 9e48c45533..a4f282849c 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-autosandbox\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 5149425c7a..7dd4fe2665 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index d336353736..59fa0dbe4d 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 79ad4b2a90..2af8c82a52 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index ece3747911..70f03d99bd 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po index 5c375d341a..4ec766ba19 100644 --- a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index be5a386ee2..64636623fa 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index e7c0276828..b8c2446e9f 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po index 3f47811801..2a3984b277 100644 --- a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index 115343780b..1c7432068c 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index bd2596738c..429ee6b3d9 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:35+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po index d308a7c3ee..8b318190f9 100644 --- a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-autocomplete\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 00c5405d94..937f8f08a8 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po index fcf460cee7..335e4df0ef 100644 --- a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 24a9f3ddb6..9487dca83e 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index df27635d9d..2e4e8847fd 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 17743e76d9..ec6fdcd002 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index fea2d5559c..6083396153 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index 457d4895e4..6f8b319bc0 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po index 942bcd659e..bad97ab2a2 100644 --- a/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index aa637d376d..3c94b42c45 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po index 5f6b22c769..1e891d40cd 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 1748170f18..05b3f1dd7c 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po index 6c771ca939..82fd39598a 100644 --- a/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-bitlyurl\n" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 23ad4d902c..bcd7e65149 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..40ba326092 --- /dev/null +++ b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po @@ -0,0 +1,95 @@ +# Translation of StatusNet - Blacklist to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "Ne c'hellit ket en em enskrivañ gant ar bajenn degemer \"%s\"." + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "Ne c'hellit ket en em enskrivañ gant al lesanv \"%s\"." + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "Ne c'hellit ket implij ar bajenn degemer \"%s\"." + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "Ne c'hellit ket implij al lesanv \"%s\"." + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "Ne c'hellit ket implij an URL \"%s\" en alioù." + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "" + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "Lesanvioù" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "URLoù" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Enrollañ" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "Enrollañ arventennoù al lec'hienn" diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po index e07e52eaf0..09799df241 100644 --- a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-blacklist\n" @@ -45,39 +45,40 @@ msgstr "No puedes utilizar el nombre de usuario '%s'." #: BlacklistPlugin.php:234 #, php-format msgid "You may not use URL \"%s\" in notices." -msgstr "" +msgstr "No puedes utilizar el URL \"%s\" en los mensajes." #: BlacklistPlugin.php:338 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" +"Mantiene una lista negra de patrones de nombres de usuario y URL prohibidos." #: BlacklistPlugin.php:375 blacklistadminpanel.php:52 msgid "Blacklist" -msgstr "" +msgstr "Lista negra" #: BlacklistPlugin.php:376 msgid "Blacklist configuration" -msgstr "" +msgstr "Configuración de lista negra" #: BlacklistPlugin.php:402 msgid "Add this nickname pattern to blacklist" -msgstr "" +msgstr "Añadir este patrón de nombre de usuario a la lista negra" #: BlacklistPlugin.php:411 msgid "Add this homepage pattern to blacklist" -msgstr "" +msgstr "Añadir este patrón de página principal a la lista negra" #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" -msgstr "" +msgstr "URL y nombres de usuario incluidos en la lista negra" #: blacklistadminpanel.php:174 msgid "Nicknames" -msgstr "" +msgstr "Nombres de usuario" #: blacklistadminpanel.php:176 msgid "Patterns of nicknames to block, one per line" -msgstr "" +msgstr "Patrones de nombres de usuario a bloquear, uno por línea" #: blacklistadminpanel.php:182 msgid "URLs" @@ -85,7 +86,7 @@ msgstr "URLs" #: blacklistadminpanel.php:184 msgid "Patterns of URLs to block, one per line" -msgstr "" +msgstr "Patrones de URL a bloquear, uno por línea" #: blacklistadminpanel.php:198 msgid "Save" @@ -93,4 +94,4 @@ msgstr "Guardar" #: blacklistadminpanel.php:201 msgid "Save site settings" -msgstr "" +msgstr "Guardar la configuración del sitio" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index 36266917d6..f6a1d195c6 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po index 1c95072ec0..daf89cc503 100644 --- a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 20e15071d0..82b37a1a20 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index eedc24cd67..a1866c1dca 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index b2f40c960f..21e731ceec 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-blacklist\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index e594a009d1..8fb53e8461 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index 1cedbfe500..58661e647b 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-blacklist\n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index 55a0f9656b..ab31dc9092 100644 --- a/plugins/BlankAd/locale/BlankAd.pot +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..236653fd49 --- /dev/null +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Fulup +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Astenn da arnodiñ doare pajennaozañ ar bruderezh." diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..9fecedcdef --- /dev/null +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Extensión para la probar la maquetación de publicidad." diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index f8cd9718b0..8153234d53 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index d0bc05c4ba..b887c6961f 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index 439633c746..c01f4ad204 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index b7d294fc3d..fd7bf15a44 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-blankad\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index 09de4e9c76..97e5a108b8 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index cbf11bca10..959090e25c 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index e73576b70f..87d624dc73 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index 1ddce32bb7..37539ce5a6 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-blankad\n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 1e187badd8..ac2da9e728 100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index afdb8bfe8a..5f69390236 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..d8d773e501 --- /dev/null +++ b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Extensión para revisar los mensajes enviados con blogspam.net." diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index 4563cce2cf..e55731db12 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 3cdbcdec58..c3ffd56977 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 10525a781c..40a7b37371 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 95::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 1180fc1d06..9b0b138cc4 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 20a1cc5e97..26d20bc5c0 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 95::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index 9efacdbe0c..c59c80adbc 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 95::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po index 402a9d4847..e8dff72d08 100644 --- a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-blogspamnet\n" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 34c42385f3..644196f564 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index 020f295ced..07d0419fae 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index 17e0770614..90c25580d7 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index e3fb74b271..943a490c89 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index da0e2c36de..92fe1b3420 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index b91fe28461..c0700465c1 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-cachelog\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index 6f7833c8e5..8c0123c0fd 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index be78b92230..44a967f9d7 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index 988c097d4c..c210ae2f99 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index 731edf4538..f496355821 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 89dee4f27a..71a0998144 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-cachelog\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index 13ea401073..d28eb8fab3 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..1b6976a064 --- /dev/null +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,76 @@ +# Translation of StatusNet - CasAuthentication to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Locos epraix +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "CAS" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "Inicia sesión o regístrate con CAS." + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" +"(¿Tienes una cuenta con CAS? Prueba nuestro [Inicio de usuario CAS](%%action." +"caslogin%%)!)" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "Se requiere especificar un servidor." + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "Se requiere especificar un servidor." + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "Se requiere especificar una ruta." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" +"La extensión de Autenticación CAS permite a StatusNet manejar autenticación " +"a través de CAS (Servicio de Autenticación Central)." + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "Ya has iniciado sesión" + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "Nombre de usuario o contraseña incorrectos." + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "Error al configurar el usuario. Posiblemente no tengas autorización." diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index ce0c8015fc..4469a54efd 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index 2eecc24d01..eeb584df6e 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index 58235164a8..a43436225d 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index d1a72ef6e2..741092215f 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index d3a8604b19..e37367a787 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index b159c7a963..cf402ab536 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:17+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index 63820c98fc..d079f314dc 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-casauthentication\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 509f1931b1..bc376527ae 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..9443e654e0 --- /dev/null +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ClientSideShorten to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten hace que el formulario de mensaje de la interfaz web " +"acorte las URL automáticamente conforme se introducen t antes de que se " +"envíe el mensaje." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "Debe especificarse el argumento 'texto'." diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index b69826609f..9cc6033c28 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index bfaf2d8473..896ae4c855 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index ba5cb2c5a1..3aef629397 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index e44714c347..3a95085657 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index 2ab860c203..daceb78ba8 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index f681b4e153..663b11b2e0 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 8088a8f2a5..8337536b6a 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index f4202abb13..256d523036 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-clientsideshorten\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index 476fbfc58c..0a5054c508 100644 --- a/plugins/Comet/locale/Comet.pot +++ b/plugins/Comet/locale/Comet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..096795a5bf --- /dev/null +++ b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Extensión para hacer actualizaciones en \"tiempo real\" utilizando Comet/" +"Bayeux." diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index 7aaef14c82..8ef1d1ebc1 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index 740eb543b5..cd2616f7c9 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index caa63ae346..4bff9a14ae 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 25::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index 493457278f..b44f97ed16 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-comet\n" diff --git a/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..624248095f --- /dev/null +++ b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+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-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-comet\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Plugin para realizar atualizações em \"tempo real\" usando Comet/Bayeux." diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index a41a7236d8..c58aab85c6 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 25::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index 8df01db34a..b6b4beb58e 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 25::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po index fd7721e261..ce870624c3 100644 --- a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-comet\n" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 6b0fa74a75..aa193f2a7d 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index aca6099adc..727ef3f640 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index 26faae1b3d..e97cb6edab 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 8863bc1d57..7bb1b13403 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index 426b5c762b..ea16c16276 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:33+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index 7f0b9d4582..acfee4cd59 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 8c813dfd8b..71c9d2f7bc 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 5d0a6f859e..9877ab67cf 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index 9baf2a61e9..c22fcdffe5 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,16 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 58f1acbb15..3359201d17 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 9630f35b12..6b0df007a2 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 5a97121aa5..f52c1b4b72 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index a6fe2cc06c..2905e01f60 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-directiondetector\n" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 8b96fc773e..a32e645c9b 100644 --- a/plugins/DiskCache/locale/DiskCache.pot +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..e43e639fc9 --- /dev/null +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DiskCache to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "Extensión para implementar interfaz de caché con archivos de disco." diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index 3767c03717..618a665e9e 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index 9bca2677df..a2e46af9b6 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 06::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index 93ccaad68e..bc62e4ee54 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index e6d235c27a..27bc10aae9 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 06::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-diskcache\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index 65350c4c89..6453395377 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 6a7e96cad0..7f54aa1ce6 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 415cd180a0..aff420a52a 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..0a64e7e0e7 --- /dev/null +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - Disqus to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "" + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Evezhiadennoù" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Implijit Disqus evit ouzhpennañ " +"evezhiadennoù d'ar pajennoù alioù." diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..3d49a5d974 --- /dev/null +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - Disqus to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Por favor, habilita JavaScript para ver los [comentarios con tecnología de " +"Disqus](http://disqus.com/?ref_noscript=%s)." + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "Comentarios con tecnología de " + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Comentarios" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Usar Disqus para añadir comentarios a las " +"páginas de mensajes." diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 574a27090c..e1a69f75c1 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" @@ -36,7 +36,7 @@ msgstr "Commentos actionate per " #: DisqusPlugin.php:201 msgid "Comments" -msgstr "" +msgstr "Commentos" #: DisqusPlugin.php:241 msgid "" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..5bfb4d394a --- /dev/null +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - Disqus to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Вклучете го JavaScript за да можете да ги прегледувате [коментарите " +"овозможени од Disqus](http://disqus.com/?ref_noscript=%s)." + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "Коментарите ги овозможува " + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Коментари" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Користи Disqus за додавање на коментари " +"во страниците на забелешките." diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index f79e0736ba..46f0c31038 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-disqus\n" @@ -36,7 +36,7 @@ msgstr "Reacties powered by " #: DisqusPlugin.php:201 msgid "Comments" -msgstr "" +msgstr "Reacties" #: DisqusPlugin.php:241 msgid "" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..3a961bd888 --- /dev/null +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - Disqus to Russian (Русский) +# Expored from translatewiki.net +# +# Author: MaxSem +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-disqus\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" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "" + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Комментарии" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Использование Disqus для добавления " +"комментариев на страницы уведомления." diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index 6651517023..c5c76008c4 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" @@ -36,7 +36,7 @@ msgstr "Mga puna na pinatatakbo ng " #: DisqusPlugin.php:201 msgid "Comments" -msgstr "" +msgstr "Mga puna" #: DisqusPlugin.php:241 msgid "" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 1c650e8d92..e7a581fe5f 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" @@ -37,7 +37,7 @@ msgstr "Коментування можливе завдяки сервісу " #: DisqusPlugin.php:201 msgid "Comments" -msgstr "" +msgstr "Коментарі" #: DisqusPlugin.php:241 msgid "" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index f034cf6400..9ce8c61a73 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..8e4497c65d --- /dev/null +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Implijit Echo evit ouzhpennañ " +"evezhiadennoù d'ar pajennoù alioù." diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..518984e3d7 --- /dev/null +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Usar Echo para añadir comentarios a " +"las páginas de mensajes." diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index f64b7b93a2..ad343e0488 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index f87ea0178d..aaf555c0fe 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 20eed9b832..b5aa39c1f9 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index d73d1f08ee..9f945e9a64 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-echo\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index f3c0eac138..b558e09ea4 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-echo\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index 009b115bcb..82a14dd561 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-echo\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index dcf706c6c9..3fb5f1a4ab 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index 61ec08a67d..01f9dc5ef1 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index 5b6b39b4f5..a1ae2a9e34 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-echo\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 6d22b23668..574852edf4 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..901bb21afb --- /dev/null +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"La extensión de Autenticación de Correo Electrónico permite a los usuarios " +"iniciar sesión con su dirección de correo electrónico." diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index ab07093799..76579f86f9 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index de9fe900c2..36a70a3731 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index d224d5c845..32857987e9 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 4f0b4b5b66..e537f1d279 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index d53d879f31..cd91edc097 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index a96a9a3177..1a9e8b58ec 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index 66db11f31f..3f613486b5 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 93e5c83931..a6f1c92fa4 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index 797ffe6d8b..e2a1f52fde 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index cbf3345d46..bb48f9c1da 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index f7b017f445..19906597e5 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-emailauthentication\n" diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index 11072ca60f..09e3003814 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..99f5a08ded --- /dev/null +++ b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po @@ -0,0 +1,536 @@ +# Translation of StatusNet - Facebook to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:43+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" +"Rankout a rit bezañ kevreet war Facebook evit implijout Facebook Connect." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "Un implijer lec'hel liammet d'ar gont Facebook-se a zo dija." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "" +"Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " +"gont." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Ur gudenn dizanv a zo bet." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your " +"Facebook to a local account. You can either create a new account, or connect " +"with your existing account, if you have one." +msgstr "" + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Kefluniadur ar gont Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Dibarzhioù kevreañ" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Krouiñ ur gont nevez" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Krouiñ un implijer nevez gant al lesanv-se." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Lesanv nevez" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Krouiñ" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Kevreañ d'ur gont a zo dioutañ" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Lesanv a zo dioutañ" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Ger-tremen" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Kevreañ" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "N'eo ket aotreet krouiñ kontoù." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "N'eo ket reizh ar c'hod pedadenn." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Lesanv nann-aotreet." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "" + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Anv implijer pe ger-tremen direizh." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Kevreañ" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Kas un ali" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Penaos 'mañ kont, %s ?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Arouezennoù a chom" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Kas" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Anv implijer pe ger-tremen direizh." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s hag e vignoned" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Ok, en ober !" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Mont hebiou" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Pajennadur" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "War-lerc'h" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "A-raok" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Trugarez da bediñ ho mignoned da implijout %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Pedadennoù a zo bet kaset d'an implijerien da-heul :" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Pedet oc'h bet da %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Pedit ho mignoned da implijout %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Mignoned hag a implij dija %s :" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Kas pedadennoù" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Implijer Facebook Connect" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Kevreañ pe en em enskrivañ dre Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Arventennoù evit Facebook Connect" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Kevreet oc'h dija." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "Kevreit gant ho kont Facebook" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "Kevreadenn Facebook" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "Dibosupl eo dilemel an implijer Facebook." + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Degemer" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Degemer" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Pediñ" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Pediñ" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Arventennoù" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr "ur gont nevez." + +#: facebookaction.php:242 +msgid "Register" +msgstr "En em enskrivañ" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Lesanv" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Kevreañ" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Ha kollet o peus ho ker-tremen ?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "Danvez ebet en ali !" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Alioù" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Enrollañ" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "Termeniñ ur ger-tremen" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr "" + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Enrollañ" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..8b1ab93ca7 --- /dev/null +++ b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po @@ -0,0 +1,558 @@ +# Translation of StatusNet - Facebook to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Locos epraix +# Author: Peter17 +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: facebookutil.php:425 +#, fuzzy, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"Hola, %$1s: Lamentamos informarte que no podemos actualizar tu estado de " +"Facebook desde %$2s y hemos inhabilitado la aplicación de Facebook en tu " +"cuenta. Esto puede deberse a que has eliminado la autorización de Facebook o " +"porque hax borrado tu cuenta de Facebook. Puedes volver a habilitar la " +"aplicación de Facebook y la actualización automática de estados mediante la " +"reinstalación de la aplicación de Facebook %2$s." + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" +"Debes haber iniciado sesión en Facebook para poder utilizar Facebook Connect." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "Ya hay un usuario local vinculado a esta cuenta de Facebook." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Hubo un problema con tu token de sesión. Por favor, inténtalo de nuevo." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "No puedes registrarte si no estás de acuerdo con la licencia." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Ha ocurrido un error desconocido." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your " +"Facebook to a local account. You can either create a new account, or connect " +"with your existing account, if you have one." +msgstr "" +"Esta es la primera vez que inicias sesión en %s, así que debemos conectar " +"Facebook a una cuenta local. Puedes crear una cuenta nueva o conectarte con " +"tu cuenta, de tenerla." + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Configuración de cuenta de Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Opciones de conexión" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Mi texto y archivos están disponibles en %s, salvo estos datos privados: " +"contraseña, dirección de correo electrónico, dirección de mensajería " +"instantánea y número de teléfono." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Crear cuenta nueva" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Crear un nuevo usuario con este nombre de usuario." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Nuevo nombre de usuario" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 letras en minúscula o números, sin signos de puntuación o espacios" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Crear" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Conectar cuenta existente" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Si ya tienes una cuenta, ingresa con tu nombre de usuario y contraseña para " +"conectarte a tu Facebook." + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "El nombre de usuario ya existe" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Contraseña" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Registro de usuario no permitido." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "No es un código de invitación válido." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"El nombre de usuario debe tener sólo letras minúsculas y números, sin " +"espacios." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Nombre de usuario no autorizado." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "El nombre de usuario ya existe. Prueba con otro." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "Error de conexión del usuario a Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Nombre de usuario o contraseña inválidos." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Iniciar sesión" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Enviar un mensaje" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "¿Qué tal, %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Caracteres disponibles" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Error de servidor: ¡No se pudo obtener el usuario!" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "" +"Nombre de usuario o contraseña incorrectos\n" +"." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s y sus amistades" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Si desesa que la aplicación %s actualice automáticamente tu estado de " +"Facebook con tu último mensaje, tienes que darle permiso." + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Ok, ¡hazlo!" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Omitir" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Paginación" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Después" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Antes" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Gracias por invitar a tus amistades a usar %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Se ha enviado invitaciones a los siguientes usuarios:" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Te han invitado a %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Invita a tus amistades a usar %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Amistades que ya usan %s:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Configuración de integración de Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "" + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "" + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Pagina principal" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Pagina principal" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Invitar" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Invitar" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Preferencias" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Preferencias" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr "" + +#: facebookaction.php:242 +msgid "Register" +msgstr "Registrarse" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Nickname" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Iniciar sesión" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Avisos" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "Configuración de integración de Facebook" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "Secreto" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Guardar" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "establecer una contraseña" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr "" + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po index b2d24ec18f..d7fe794046 100644 --- a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po index 7e0bde5011..7a4d4a11be 100644 --- a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/gl/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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:49+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po index 068e0e6409..db9e43f1dc 100644 --- a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/ia/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-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po index 1832f5bdbf..2c14c84812 100644 --- a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/mk/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-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po index 2cb4c1ea6f..45149e2f52 100644 --- a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nb/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-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-facebook\n" diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po index b925791c13..40682eb931 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-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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" diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po index fa61eaf377..0c9d38a56e 100644 --- a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-facebook\n" diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po index 5c9d28822b..2099155dae 100644 --- a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/tl/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-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index 0f38d3a904..7b8d8384fb 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/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-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index c96c212157..62ef78f369 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-facebook\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 3b27b7c4f0..056d788c6e 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..99eb31c5ce --- /dev/null +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - FirePHP to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "" +"La extensión FirePHP escribe la salida del registro de StatusNet en FirePHP." diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index c7bc7655af..a7bae2b5e3 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-firephp\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index bf55055d1c..b53390d4b0 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index 60224d5af0..bd26e50b7b 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index d716f8a73b..d2aea2bbb6 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index 404c022965..d99a7ababa 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 9e42a3aa8f..b1c0bdd080 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 4f40fe1a9c..39167e2c7f 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-firephp\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index 720445ee6e..5ed7be0d61 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index 467216c605..87008b2bd5 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index 875d73de82..ded26687e8 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index 389090e38a..10883a657c 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 1fc0c34261..841f0d7a7b 100644 --- a/plugins/ForceGroup/locale/ForceGroup.pot +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..7f9c5d2454 --- /dev/null +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "No se pudo incluir al usuario %1$s en el grupo %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Permite forzar inclusiones en grupos y fuerza la aparición de todos los " +"mensajes en los grupos en los que los usuarios fueron incluidos a la fuerza." diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..18a728c659 --- /dev/null +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Permitte fortiar le inscription in gruppos e fortia que tote le notas appare " +"in gruppos in que usatores esseva inscribite." diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..0f1f88e7e1 --- /dev/null +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Не можев да го зачленам корисникот %1$s во групата %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Овозможува наметнати членства во групи и наметнува на сите забелешки да се " +"јавуваат во групите кајшто корисниците имаат наметнати членства" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..a2f21de447 --- /dev/null +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+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-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Maakt het mogelijk gedwongen lid te worden van groepen en alle mededelingen " +"weer te geven in die groepen." diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..6b755c3e2d --- /dev/null +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - ForceGroup to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Hindi maisama ang tagagamit na %1$s sa pangkat na %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Nagpapahintulot ng pinilit na mga pagkakasapi sa pangkat at pumipilit sa " +"lahat ng mga pabatid na lumitaw sa loob ng mga pangkat na pinagpilitang " +"paloob ng mga tagagamit." diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..bd693e7ef2 --- /dev/null +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - ForceGroup to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\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" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Дозволяє примусове долучення користувачів до спільнот разом із дописами, " +"котрі відповідають темі той чи іншої спільноти, до якої було примусово " +"долучено користувача." diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 1f910e52a0..ca4aa70217 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..0ba3259f61 --- /dev/null +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Esperanto (Esperanto) +# Expored from translatewiki.net +# +# Author: LyzTyphone +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Esperanto \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Eĥosondu GeoURL-n, kiam sciigon pri " +"plibonigo de terlokigado aperas." diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..4d2211fd0e --- /dev/null +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Hacer ping al GeoURL cade vez que se " +"publique nuevos mensajes de geolocalización mejorados." diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 48b42c4296..4dff863f19 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index 3c8fce7cb1..bd29feced9 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 0844be8f16..0055bcfaea 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index 648b9ab67c..b4cc4d4e73 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-geourl\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index 237dde8013..da00c34497 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index d527d8dba4..f0b54398f0 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 94ead0234b..10efb57ef9 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..cf5fba1351 --- /dev/null +++ b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Fulup +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Implijout a ra ar servij Geonames evit " +"tapout anvadurioù douaroniel lennus gant mab-den evit lec'hiadoù diazezet " +"war un daouad ledred/hedred pourchaset gant an implijer." diff --git a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..55ac440db8 --- /dev/null +++ b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Geonames to Esperanto (Esperanto) +# Expored from translatewiki.net +# +# Author: LyzTyphone +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Esperanto \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Uziĝas Geonames servo por akiri " +"kompreneblan nomon de lokoj baze de latituda-longituda paro donita de uzanto." diff --git a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..ad3841c949 --- /dev/null +++ b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Usa el servicio Geonamespara obtener " +"nombresde ubicaciones legibles por humanos, basadas en pares longitud/" +"latitud provistos por el usuario." diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index ad8a3f6790..8deaeed650 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index d4a36f203e..a367b58227 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index fb11335213..b57e675b4e 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po index 69d52a0eb3..7cf63717d9 100644 --- a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index ccaa503ad5..b8358b781a 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-geonames\n" diff --git a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po index b71c8b871f..1387047e64 100644 --- a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-geonames\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index f24fc3a05f..269a774343 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index 2193d04eec..1ee4b40eb5 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po index 92c7c6700a..09a9784702 100644 --- a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-geonames\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index b3c0bc92b2..1b037740e3 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..36ccea9c7b --- /dev/null +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Utiliza Google Analytics " +"para hacer seguimiento de accesos al sitio web." diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index fb88afd61b..e644dc6a20 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index d4e5512f62..3cadef7b01 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index 6c35eb389e..20d4cf633c 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index dd728d65d8..3362bac5bf 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index 60e7b4a787..bb141be175 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index 59d479900b..45422ecce0 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index bbc1f90d84..6fd585c8e2 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index faa0924030..49a20f2fe9 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index 5510809c65..b7d5c2bba9 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-googleanalytics\n" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index b425259814..d4bc0f8163 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 7d1e5db537..ae7e29286e 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..918475de54 --- /dev/null +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - Gravatar to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Definir un Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "Si deseas utilizar tu imagen Gravatar, haz clic en \"Agregar\"" + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Añadir" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Eliminar el Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "Si desesa eliminar tu imagen de Gravatar, haz clic en \"Eliminar\"." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Borrar" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "" +"Para utilizar un Gravatar, primero introduce una dirección de correo " +"electrónico." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "" +"No tienes una dirección de correo electrónico establecida en tu perfil." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Error al guardar Gravatar en la base de datos." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar agregado." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar eliminado." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"La extensión Gravatar permite a los usuarios utilizar su Gravatar con StatusNet." diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 207fa2fc86..4db0d0157a 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index 9144cbbf63..af871eba57 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 6e88cfa1b4..6b8fb1bbcc 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 6be92e6517..8115b736f8 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-gravatar\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 060fe4b6f2..d76b123cf3 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 0e08abe888..f8ac9f88df 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index fec92e51c6..906b171b9f 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-gravatar\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index 77cfbc84ae..7a80d5e577 100644 --- a/plugins/GroupFavorited/locale/GroupFavorited.pot +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..6b57a88371 --- /dev/null +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - GroupFavorited to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Mensajes populares en el grupo %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Mensajes populares en el grupo %1$s, página %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Popular" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Mensajes populares en el grupo %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Esta extensión añade un elemento de menú para los mensajes populares en " +"grupos." diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..3d1b3e15fa --- /dev/null +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - GroupFavorited to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Messages popular in gruppo %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Messages popular in gruppo %1$s, pagina %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Popular" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Notas popular in gruppo %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "Iste plug-in adde un option de menu pro notas popular in gruppos." diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..48dc76c7ad --- /dev/null +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - GroupFavorited to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Популарни објави во групата %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Популарни објави во групата %1$s, страница %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Популарни" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Популарни забелешки во групата %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Овој приклучок додава елемент во менито за популарни забелешки во групи." diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..85074b7aec --- /dev/null +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - GroupFavorited to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: SPQRobin +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+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-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Populaire berichten in de groep %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Populaire berichten in de groep %1$s, pagina %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Populair" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Populaire mededelingen in de groep %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Deze plug-in voegt een menukeuze toe voor populaire mededelingen in groepen." diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..deaa8b09cf --- /dev/null +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - GroupFavorited to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Tanyag na mga pagpapaskila sa loob ng pangkat na %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Tanyag na mga pagpapaskila sa loob ng pangkat na %1$s, pahina %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Tanyag" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Bantog na mga pabatid sa loob ng pangkat na %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Ang pampasak na ito ay nagdaragdag ng isang bagay ng menu para sa mga bantog " +"na pabatid sa loob ng mga pangkat." diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..850263fc14 --- /dev/null +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - GroupFavorited to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\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" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Популярні повідомлення спільноти %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Популярні повідомлення спільноти %1$s, сторінка %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Популярні" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Популярні дописи спільноти %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "Цей додаток долучає до меню пункт для популярних дописів у спільноті." diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 5537c45bc3..aaef1d81fb 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index b2029098e2..3f48f9e97e 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:10+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index 4655954336..163722b630 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index b3c140f0c5..ccf2313d73 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index c27f3ab51f..694386f660 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-imap\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 76454680a5..68c0d24889 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-imap\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index 3ff067b28b..42032f1a10 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-imap\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index a1c614f3e9..459cfaf87a 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index 9d3e6cf20b..5476500770 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index b8e25d01a3..86aa2524fa 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..0dfb2ddfe3 --- /dev/null +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - InfiniteScroll to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Desplazamiento Infinito añade la siguiente funcionalidad a tu instalación " +"StatusNet: Cuando un usuario se desplaza hacia el final de la página, la " +"próxima página de mensajes se recupera y añade automáticamente. Esto " +"significa que no será necesario hacer clic en \"Próxima página\", con lo que " +"se aumenta dramáticamente la capacidad de retención." diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index ea339383ae..be488f73a2 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 844652bba9..613eb1e5af 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 2af480c1ff..450a69c83b 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 98ff1d3d4d..bf70e304a7 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index bf15301851..55c40e9f61 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 74d213dafd..8619644b03 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index ef50d1b194..e82745a2c5 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index a02cb1d75e..8948fdba66 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 14342d59ea..23c773a9d9 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..4ab4ea6190 --- /dev/null +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"La extensión de Autenticación LDAP permite a StatusNet manejar la " +"autenticación a través de LDAP." diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index bfe15183a9..4eeb05da73 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index bcaae861c5..be4c697f3d 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po index 0bf2066f9a..0eff138319 100644 --- a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index b4695e3f01..b121de304b 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po index cab3284b04..dd3ceb8edc 100644 --- a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index fc48c98443..b31afe58bc 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po index 8889acdf4e..21c6e21ae0 100644 --- a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 39d58e27bd..51ee5d68ac 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index ddcd8796e3..7ea723b674 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index bd7adbb094..0cc414c101 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..7ea15395f5 --- /dev/null +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"La extensión de Autorización LDAP permite a StatusNet para manejar la " +"autorización a través de LDAP." diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 103044ab77..8ade16ce21 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 02e5660c3c..ae34871aff 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 03150ff41c..9511d5597a 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po index 4c74b30288..3385768a49 100644 --- a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index 51dc2db3df..034a0cee91 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po index e2e4e77132..f366956e69 100644 --- a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 2766803d85..683885f16a 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index 89884b6ef2..e8ef754ddf 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 586b7a63f5..65f0baf68e 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index b5356f2ad4..9594e83542 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 3d260ca73a..a1a3601018 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 589fae541f..97261be9fd 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index 00f0b78b64..7a09a9df6e 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index af1e8b3d47..4699be8b21 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index e2cec1e665..a139c9d4f9 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-lilurl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index 49bcacc62e..1523fd5cd5 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index dab91db1b0..f7dfe8a18f 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index bdef6bc9e9..5eb5059c6a 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:57+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 5c5d63860f..1d1b0437cd 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..dec449471c --- /dev/null +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-linkback\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Notificar a los autores de blogs cunado sus publicaciones hayan sido " +"vinculadas en mensajes de microblogs mediante protocolosPingback o Trackback protocols." diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index 329abc03a8..525c681dc3 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index ddfed77d25..46c10ff826 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index 395003aa27..3f45b8dd96 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 061d0f2d5e..cc12672884 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 558ba0d0dd..9d923ba79a 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-linkback\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 447e168283..f61749d75d 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index 1d1eb506d3..6a2b00d9ba 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index b7a849d1b4..3c53391009 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..7a926598bf --- /dev/null +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,57 @@ +# Translation of StatusNet - Mapstraction to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Kartenn" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" + +#: map.php:72 +msgid "No such user." +msgstr "N'eus ket eus an implijer-se." + +#: map.php:79 +msgid "User has no profile." +msgstr "" + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Kartenn mignoned %s" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "%s gartenn, pajenn %d" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index fc605b1fb2..8e3b8d54d7 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 7ee4a01584..a6f8b0d935 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 2e59eb24b0..5de819b1b7 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index ddc5793292..340a211146 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 0b7408d774..c2fcc51b64 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index bd808641a0..840e337f50 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 2c515212dd..f4fade52be 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index 5f1af6da9f..da8cb7aaa0 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:58+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index bc7f2e5d4b..1253cd82b1 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index 11960be87d..b10928213e 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:58+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 848a39af8f..53b0536d55 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..21dc686909 --- /dev/null +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Utilizar Memcached para cachear " +"resultados de consulta." diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 757b929de8..b3c4d8bd3c 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 584b2d6bdf..8035bdb468 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index 464b18fccf..489434f785 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 47ea1c5013..8cb0896c94 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index 553588b208..2f0ddbffcd 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-memcache\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index a6a0c5a04b..94d0d27a75 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-memcache\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index 8ea48360f0..bd9a9417a6 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 4dff264b4f..afaef9b2c9 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index 86a57375e5..03d62b7cdf 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..e7473802d6 --- /dev/null +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Utilizar Memcached para cachear " +"resultados de consulta." diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 9b414d189f..7b0edf91e9 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 5022d8ff63..9f043fa4a2 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index da804c6737..5062665abd 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index ef100881bd..72775e02c3 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 1143bcab2a..ebd7c25cbb 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-memcached\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index a5451e2c72..1cc22c363c 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-memcached\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index 4171af4de7..b6be85ca91 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index 00212437ca..abdb411372 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index fd0c16799f..86ddef2cb0 100644 --- a/plugins/Meteor/locale/Meteor.pot +++ b/plugins/Meteor/locale/Meteor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 7518c7638f..438b67318b 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index 1f964341ea..0344b551f3 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 03::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index ec855bad38..b5ca82b69b 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 96::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 5ea59a35d6..65f98c24ba 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 03::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-meteor\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 29856f207b..cd5a4f206f 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 96::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index 0295fd9b7e..de5c31d72a 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 96::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index fb19ccfc49..1323e4436f 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 086f1b59de..8fa40c082a 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index c4f82e3502..93d1af8b52 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 7a03c1d484..09bc7d07de 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index d5c3a0044b..e3ab34b14b 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-minify\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index 7d32081dc1..a46b798a17 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index 3947498485..028c3dcbf3 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 34dfa8d7db..9af3c011bc 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po index cde0930a56..e735e59f64 100644 --- a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index dddda0f37f..ce7b1a22f8 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index a7884571a3..356f522970 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index a72dfb7511..08a6c5a1d6 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 71b0af5064..772eea0f68 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index e7d9bbc906..40c4819d94 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 59b93c1f70..e427905a66 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 97::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index f442784fda..e76dd223f1 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index 3706978cbd..123ed6a1ad 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-mobileprofile\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 73b4185400..6a3ac86f27 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index e1f537b240..a2c5b823d4 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 07f6bb4886..c13b48b669 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index c0102cfd15..ae75c1f552 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 4d9bd60d6a..6fe2084e63 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 87c0e17479..c7309d8472 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 5f6828e137..6881e630ff 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index 7e23a3b147..b098f20b52 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index b1614838ba..fd08313022 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index de66ef8b34..ad4445d973 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index f684a138bf..a55b30f4b4 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 4d4ee37d2a..39101b8393 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 63c7def6e1..cd5eebd16a 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 53970a77f3..fc2e4b1e2e 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -69,14 +69,14 @@ msgstr "Напушти" #: OStatusPlugin.php:785 msgid "Disfavor" -msgstr "Откажи омилено" +msgstr "Откажи бендисана" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. #: OStatusPlugin.php:788 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." -msgstr "%1$s ја означи забелешката %2$s како неомилена." +msgstr "%1$s повеќе не ја бендисува забелешката %2$s." #. TRANS: Link text for link to remote subscribe. #: OStatusPlugin.php:864 @@ -304,12 +304,12 @@ msgstr "Оваа цел не разбира прекини на следења." #. TRANS: Client exception. #: lib/salmonaction.php:145 msgid "This target doesn't understand favorites." -msgstr "Оваа цел не разбира омилени." +msgstr "Оваа цел не разбира бендисување на забелешки." #. TRANS: Client exception. #: lib/salmonaction.php:151 msgid "This target doesn't understand unfavorites." -msgstr "Оваа цел не разбира отстранувања од омилени." +msgstr "Оваа цел не разбира одбендисување на забелешки." #. TRANS: Client exception. #: lib/salmonaction.php:157 @@ -442,18 +442,18 @@ msgstr "" #. TRANS: Client exception. #: actions/usersalmon.php:163 msgid "Could not save new favorite." -msgstr "Не можам да го зачувам новото омилено." +msgstr "Не можам да го зачувам новобендисаното." #. TRANS: Client exception. #: actions/usersalmon.php:195 msgid "Can't favorite/unfavorite without an object." -msgstr "Не можам да означам како омилено или да тргнам омилено без објект." +msgstr "Не можам да означам како бендисано или да тргнам бендисано без објект." #. TRANS: Client exception. #: actions/usersalmon.php:207 msgid "Can't handle that kind of object for liking/faving." msgstr "" -"Не можам да работам со таков објект за ставање врски/означување омилени." +"Не можам да работам со таков објект за ставање врски/означување бендисани." #. TRANS: Client exception. %s is an object ID. #: actions/usersalmon.php:214 diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index baa64270b5..e0c6c4aa83 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 5e49d12526..0f49a02459 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 540b8cae53..1d4e2737b3 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..82b8be953e --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Abre vínculos externos (por ejemplo, con rel=external) en una nueva ventana " +"o pestaña." diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 93b5caeff8..91f9f5faf5 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 6b2bf2bcce..12a071148c 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 87fad79928..b5e4d1386c 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 1c11f8a6cd..8d9045dc66 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index 3f1c3dbe8d..f1a4e4c72c 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index a9aab443e4..5da6bee90c 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po index 00c047d9f1..d3d8816b06 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index 145c06bcd4..773a641515 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index c2fc037b22..a6dced4e26 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 8de6d537d6..51a8d0f8d3 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-openid\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 9378edf530..603cfb0cdd 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index bac4169d20..10a7380360 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index ae2b00abf6..b682038d5e 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 6fd679bf89..8a5bcc5e19 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-openid\n" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index b7f246fe61..439c4f54c2 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 7662e8d6ee..f5550f5de7 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index ff63aacab2..f9491cc4bf 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..a809ea1b67 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - PiwikAnalytics to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Utiliza el software de análisis de sitios Web de fuente abierta Piwik." diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 8919456781..99178db73b 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index 2c60014f54..99867ca4ac 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 776af5d6aa..b7ef8467d9 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index fe9a85984f..62b7b645be 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index c9f145fb08..26f7ec4e64 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index a94150b752..e257b89c64 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index 599ebd6c6e..1955825b87 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 93c9a585de..7824f950c6 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..8619cc4a44 --- /dev/null +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - PostDebug to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "" +"Herramienta de depuración para registrar detalles de solicitud en POST." diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index f8094da371..fc0f233f6b 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 459ce9cf17..a01587def6 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index e150f16302..d9b4ff4f6a 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index b885af5b70..3892c8be2b 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index ba96e25dc8..2d592374bb 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-postdebug\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 6a2d1fe90e..3e172cdc75 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index 107558379f..0cd74c66c4 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index e86e100ec3..547aaabdb3 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index dc2b85db1e..c6f4eaaafa 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index 5f62dd5f34..7d6bdd6ad1 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 9c16e01e54..2d8249e255 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index 317354475f..b276e0a11e 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index 0c285600a9..adb46bd5ba 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 60fa496286..204a473e17 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index 5cc5cd2768..1950bc8788 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 6a419f4196..1545ed7f5b 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index 841e58644a..e8924f93eb 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index 3e32b69b0c..c2eeeabb7d 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index 5d75e0c85d..b2e9145b95 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..a50553d852 --- /dev/null +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - PtitUrl to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utiliza el servicio de acortamiento de URL %1$s." diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index b1db002d65..d6843741fb 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index 97f0570624..e88328c1c7 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index ea4b6bf239..ee4553f311 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index c5d3f28b51..de54b468bc 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index f76a0025f0..6e833f393d 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index 8551fce072..e88b78a878 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index a323532bf7..107553a8c0 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 8be07a2f35..6b6f409668 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 64a4487af6..8627b17f6c 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index d4fb04df7d..0fda09212c 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index 41aeca2ddd..1f8f461f7a 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 2e5d69333e..1982aecf63 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 883a703c9b..387bbe9d21 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index 7a3aed62e5..ce80076587 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-rsscloud\n" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index d6b7aa1ca2..e17fa5b58d 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index 6090e00428..6997c53740 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:28+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:26+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index c59820bfa4..1efda827ab 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 428b5989c1..fc3180cea5 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index 3e7db99551..874a44656c 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index 4c40a22170..b5dcfaa628 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 025dc7652a..216f3c44d6 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index be02a3aa80..2943b89bed 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-recaptcha\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index d01aec27ea..b72a4d75bc 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index a7872f223a..2dbabd69d6 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 08eaadc2cd..725e64e427 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index f478fbe898..16b8e1e5a6 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 765de70df3..14053a82d2 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index ade31d12a7..de54757dc1 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index af932de16b..7d1a7c593a 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 69d96cc4b3..8826451a8e 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index ff84b85fd2..03ddc80e14 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:26+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index d6e58ea4d5..8825867760 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index 97111b2425..3925c5d4ad 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index b222f712e1..f208b8c777 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 522ac7a6ba..9347f8d447 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index c7c55e083d..64790f3365 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index 13e2923b64..da63cc8b46 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 93110622a1..d1f2b85a41 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index e1b3daf762..f66b6deee6 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index a680e404e6..0f6bb2fe37 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index 0f7c4dd5e3..b1f51c37ce 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index fe67287237..329607b730 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index cd9e450e9c..e12975dc7e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index c93a4ad69a..b1ca068d0d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index 9263ff1f1a..bcf1f40db0 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index f8a4d90787..44aa0235bc 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index 4f1bf587f9..60234e3c4f 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 06852f91cd..1686bf174e 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index b25b3bf9f2..8b4728c47c 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index f37dfe0faa..fbaf98a790 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 17c907df2d..58f09fc8fe 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index fcf42e1955..0d265acb31 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-sample\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index cabaad5500..076c09ba00 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 365adb6aba..1ada83ad27 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:30+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:26+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index f41f00c18b..e0a3f97b96 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-sample\n" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 1062d382d0..ed180fa444 100644 --- a/plugins/ShareNotice/locale/ShareNotice.pot +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..0f6c4afe86 --- /dev/null +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - ShareNotice to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "\"%s\"" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Condivider in Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Condivider in %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Condivider in Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Iste plug-in permitte condivider notas in Twitter, Facebook e altere " +"platteformas." diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..ea98906c20 --- /dev/null +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - ShareNotice to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "„%s“" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Сподели на Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Сподели на %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Сподели на Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Приклучокот Ви овозможува да споделувате забелешки на Twitter, Facebook и " +"други подлоги." diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..cbf057a151 --- /dev/null +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,56 @@ +# Translation of StatusNet - ShareNotice to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: SPQRobin +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+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-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "\"%s\"" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Delen op Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Delen op %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Delen op Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Deze plug-in maakt het mogelijk mededelingen te delen op Twitter, Facebook " +"en andere platformen." diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..6bd6594937 --- /dev/null +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - ShareNotice to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "\"%s\"" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Ibahagi sa Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Ibahagi sa %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Ibahagi sa Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Ang pampasak na ito ay nagpapahintulot na pagpapamahagi ng mga pabatid sa " +"Twitter, Facebook at ibang mga plataporma." diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..ed3105facc --- /dev/null +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,56 @@ +# Translation of StatusNet - ShareNotice to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\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" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "«%s»" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Розмістити в Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Розмістити в %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Розмістити в Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Цей додаток дозволяє ділитися дописами в Twitter, Facebook та інших " +"сервісах, розміщуючи їх там." diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index f1e0abf0c2..27eda38ff9 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..d7ec27779b --- /dev/null +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - SimpleUrl to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-simpleurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Usa el servicio de acortamiento de URL %1$s." diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index a6a449623a..73b1562247 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index a31e000c3e..b3c155c924 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index c076b2a799..a01b000937 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index d214a34e7a..84e6115271 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 07ac2507fd..28c9815c33 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index c905f0b95c..78f44feb0a 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 15ee8bf48c..3546df97eb 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index 7058596ef8..91ac07ab7b 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index e28996f5c2..ddf67c36c2 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index f0bdb1aa6b..7d4a541c63 100644 --- a/plugins/SlicedFavorites/locale/SlicedFavorites.pot +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..625a678003 --- /dev/null +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - SlicedFavorites to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "Monstra chronologias de notas popular pro certe gruppos de usatores." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Section de favorites incognite." diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..a8406a452f --- /dev/null +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - SlicedFavorites to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Прикажува хронологии на популарни забелешки за определени подмножества " +"корисници." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Непознато парче од бендисаните." diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..1b9ee5bdf3 --- /dev/null +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - SlicedFavorites to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+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-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Geeft de tijdlijnen van populaire mededelingen weer voor ingestelde groepen " +"gebruikers." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Onbekende favorietengebruikersgroep." diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..9b8905f211 --- /dev/null +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - SlicedFavorites to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Nagpapakita ng mga guhit ng panahon ng tanyag na mga pabatid para sa " +"inilarawang mga kabahaging pangkat ng mga tagagamit." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Hindi nalalamang hiwa ng mga paborito." diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..5c5f0d0039 --- /dev/null +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - SlicedFavorites to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\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" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "Показує стрічки популярних дописів для певних підмножин користувачів." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Невідома вибірка обраних повідомлень." diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index a2953b9076..b42a77cd9c 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 1e20384240..ba379ea32e 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index cfbe1016f9..4da2c0da66 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index f1a2f21b71..69da696115 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index 136bfb7874..baa10a197b 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-submirror\n" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 6de5184b12..e99f07b194 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 8644e65845..857cc68a52 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:32+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index 98b8073850..25c48db771 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..50cb448a5f --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - SubscriptionThrottle to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubscriptionThrottlePlugin.php:171 +msgid "Configurable limits for subscriptions and group memberships." +msgstr "" +"Límites configurables para las suscripciones y adhesiones a los grupos." diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index bc7d2dcb8d..83ad537b0d 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index 255fe5d333..8f6336b818 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index 4846c89327..6d0505cfa9 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po index c7ff451488..e8072e61f2 100644 --- a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index dbdd70f662..e64341a3e7 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po index 47820e81bd..25efbab795 100644 --- a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index e781441259..eb2dfef888 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 0826e2df74..88e330a72d 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 582daf2530..90666a1d24 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..16aed8a9fe --- /dev/null +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tabfocus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus Cambia el comportamiento del formulario del aviso de modo que, al " +"estar en el área de texto, pulsar la tecla de tabulación se enfoque en el " +"botón \"Enviar\", al igual que en el comportamiento de Twitter." diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index b58a14075f..7d9e1da650 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 21c44198f3..eedf5cb8b0 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 9da2c4a548..ff4fa75cef 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index 93d20f2378..244dc38091 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index 775dc2a466..9e499b6e66 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:28+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-tabfocus\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 346e0e9ae5..7bab99a24e 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index 2c46ebe609..b7b6fb7a16 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index eb31b1b248..3c3521ce3f 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:28+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index dae56b6a48..f0a036968d 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..e8a5d5471c --- /dev/null +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TightUrl to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utiliza el servicio de acortamiento de URL %1$s." diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index 3938f14fe5..d55583323c 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index 8fdf167ce0..f312a94185 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index d09633b90b..b689a37fc6 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index 9961c4aa4b..9a59c7c848 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index f3b93e8c44..c426de9fa6 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 81365bb4a4..338a7f3b6e 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-tighturl\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index 2d74a172ec..42f1795e5d 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index 50c8fe782b..24adab5a43 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index 87a6203a12..90ad55197d 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:08+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index 25fccb705a..4160a42a84 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..164b4f6ed9 --- /dev/null +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TinyMCEPlugin.php:83 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Utiliza la biblioteca TinyMCE para permitir la edición de texto enriquecido " +"en el navegador." diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 635781feb3..cf23c1c4b2 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 66f66184ba..9dd59764c0 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 37738df828..03b043d6e7 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 4792f715a0..6c349f71e3 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 58221c4ee1..1185e7c54b 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index a2f86006e7..608eede335 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+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-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-tinymce\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index d5c5f3da4c..271497f956 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index 0d27f3b27b..9b2856f94b 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index bc358c2b01..f8665c2c73 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 48c0a7a987..702793c877 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index fa5154facf..9c03dc101a 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index a209f9c10a..d5be8c0f18 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 4530a58956..03e7720f83 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index f6def52901..ed29e9895e 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 0a9569e7f0..a4e716c7ec 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index e855ed3fcb..46de2797d1 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 2860fe66c0..fe65d4397d 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-twitterbridge\n" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot new file mode 100644 index 0000000000..7e0bc3114b --- /dev/null +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -0,0 +1,108 @@ +# 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-10-03 19:53+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" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "" + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "" + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "" + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "" + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index 54952712e9..3991568f83 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..1699a81740 --- /dev/null +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to German (Deutsch) +# Expored from translatewiki.net +# +# Author: The Evil IP address +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: UserLimitPlugin.php:89 +msgid "Limit the number of users who can register." +msgstr "Beschränkung der Anzahl von Benutzern, die sich registrieren können." diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..e64ec8954f --- /dev/null +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: UserLimitPlugin.php:89 +msgid "Limit the number of users who can register." +msgstr "Limitarla cantidad de usuarios que pueden registrarse." diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index a52002a904..5c68f2dcfd 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 7c9cc948c1..760cebc676 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index 59481404a2..d685e8ca9d 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 3c2901f931..f3d54f6f4c 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 11a1422815..e099949349 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-userlimit\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index dec02d8b0b..216a8e6c31 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-userlimit\n" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index 052204fbe1..ed402a3974 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 3ab6bcaa26..71ff8a65fb 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index 9391333cce..538505e48e 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 098d7e41f4..6564c78976 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 10f3945d62..c9282d1747 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po index b6f2c25a00..971db31133 100644 --- a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 37fcd0fe61..d879d2a1d9 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index aef6e9e398..5be14522db 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po index c908f32f7c..8741ffb994 100644 --- a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 6a9a367639..369c3650eb 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po index 58fc9d6a35..8f1d8b7f64 100644 --- a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po index 2ef1103b56..75e44a2682 100644 --- a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index daaf88e423..8488f2843e 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po index d3e3704104..7810080654 100644 --- a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index 3d642d4bc9..8b62c5be93 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index e1a5e10f11..fffb3ac243 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index 206d7d6c14..f6df675c8f 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index 58a5c154ea..3ca5438b19 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 4be4c18717..7f43004cb2 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index de7218e31a..e8e4374166 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index b7a7ea6e86..bf3861a9e7 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index 15347e108f..ed6d70a8c4 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index 01106bbc5b..5b4df1d675 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index f482635812..53944d0c40 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index 856ca28059..e38f5c845e 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..c5025c52af --- /dev/null +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Fulup +# -- +# 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-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Ober gant ar grubuilh hegemm XCache da grubuilhañ disoc'hoù ar rekedoù." diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index 482ef25ff5..d24ff11898 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-xcache\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 2aca3bbc6a..5513c25f0b 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index e846df3129..4f8e5a1e91 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index fee680dbf7..cb6e5c4199 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index a01aaefea5..c8812aaa8b 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-xcache\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index 101f70b627..22d5a87ceb 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-xcache\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index 194f9741e4..16df3c2d96 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-xcache\n" diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index f4b76f386d..83abdf0af1 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index 71783f1626..d9550d72fb 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-xcache\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index ae4e4d4003..1c56db2fe1 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 159fdb2de8..053834cde2 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 30bbf90519..d26c5128a8 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -240,14 +240,12 @@ msgid "Waiting..." msgstr "Attente..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "État de l’import" +msgstr "" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Import Yammer" +msgstr "" #: lib/yammerprogressform.php:160 #, php-format @@ -259,9 +257,8 @@ msgid "Paused" msgstr "" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Import Yammer" +msgstr "" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 79406f4ec0..0de756d587 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -240,28 +240,25 @@ msgid "Waiting..." msgstr "Attende..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "Stato de importation" +msgstr "" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Importation de Yammer" +msgstr "" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "Incontrava error \"%s\"" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "Pausate" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Importation de Yammer" +msgstr "" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -282,4 +279,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Pausate ab le pannello admin." diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index ab0ec3c6ce..db906ea828 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -240,28 +240,25 @@ msgid "Waiting..." msgstr "Чекам..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "Увези статус" +msgstr "" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Увоз од Yammer" +msgstr "" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "Наидов на грешка „%s“" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "Паузирано" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Увоз од Yammer" +msgstr "" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -281,4 +278,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Паузирано од администраторската табла." diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 64d2a27f1b..1d849fb6bc 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -1,6 +1,7 @@ # Translation of StatusNet - YammerImport to Dutch (Nederlands) # Expored from translatewiki.net # +# Author: SPQRobin # Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-yammerimport\n" @@ -240,28 +241,25 @@ msgid "Waiting..." msgstr "Even geduld alstublieft..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "Importstatus" +msgstr "Importstatus herstellen" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Yammerimport" +msgstr "Import pauzeren" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "Er is een fout opgetreden: \"%s\"" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "Gepauzeerd" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Yammerimport" +msgstr "Import afbreken" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -282,4 +280,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Gepauzeerd vanuit het beheerpaneel." diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..f61add2f82 --- /dev/null +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -0,0 +1,260 @@ +# Translation of StatusNet - YammerImport to Turkish (Türkçe) +# Expored from translatewiki.net +# +# Author: Maidis +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" +"Language-Team: Turkish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); 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-plugin-yammerimport\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Yammer içeri aktarma" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Yammer'a Bağlan" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Kimlik doğrulamaya başla" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Geçersiz kullanıcı resmi bağlantısı %s." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "" + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "" + +#: lib/yammerapikeyform.php:72 +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Kaydet" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Open Yammer kimlik doğrulama penceresi" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Aşağıda verilen doğrulama kodunu kopyalayın:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Doğrulama kodu:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Devam et" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Kodu kaydet ve içeri aktarmaya başla" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "İlk kullanıma hazırla" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Çalışan içeri aktarma yok" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Başlatılan Yammer sunucu bağlantısı..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Yetkilendirme bekleniyor..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Bağlandı." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Kullanıcı hesaplarını içeri aktar" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "" + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "" + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Kullanıcı gruplarını içeri aktar" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "" + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "" + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Genel durum mesajlarını içeri aktarmak için hazırla" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "" + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "" + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Genel durum mesajlarını içeri aktar" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "" + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "" + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Tamamlandı" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "İçeri aktarma tamamlandı!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "İçeri aktarma durumu" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Bekleniyor..." + +#: lib/yammerprogressform.php:146 +msgid "Reset import state" +msgstr "İçeri aktarma durumunu sıfırla" + +#: lib/yammerprogressform.php:151 +msgid "Pause import" +msgstr "İçeri aktarmayı duraklat" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "Karşılaşılan hata \"%s\"" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "Duraklatıldı" + +#: lib/yammerprogressform.php:165 +msgid "Abort import" +msgstr "İçeri aktarmayı iptal et" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Yammer İçeri Aktar" + +#: actions/yammeradminpanel.php:55 +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "Yönetim panelinden durduruldu." diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 21189e7173..0d4ba086d1 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -249,28 +249,25 @@ msgid "Waiting..." msgstr "Очікування..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "Статус процесу імпорту" +msgstr "" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Імпорт з Yammer" +msgstr "" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "Виявлено помилку «%s»" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "Призупинено" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Імпорт з Yammer" +msgstr "" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -291,4 +288,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Призупинено з адміністраторської панелі." From 67f97194e446e81e0bc57ef60ae75ba0579170b7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Oct 2010 23:54:57 +0200 Subject: [PATCH 019/112] i18n/L10n review, plugin credits added. --- plugins/Sitemap/SitemapPlugin.php | 34 +++++++++++++----- plugins/Sitemap/Sitemap_notice_count.php | 9 ++--- plugins/Sitemap/Sitemap_user_count.php | 7 ++-- plugins/Sitemap/noticesitemap.php | 1 - plugins/Sitemap/sitemapaction.php | 2 -- plugins/Sitemap/sitemapadminpanel.php | 44 +++++++++++++----------- plugins/Sitemap/sitemapindex.php | 2 -- plugins/Sitemap/usersitemap.php | 1 - 8 files changed, 53 insertions(+), 47 deletions(-) diff --git a/plugins/Sitemap/SitemapPlugin.php b/plugins/Sitemap/SitemapPlugin.php index b6d3b1ad33..6a77f81231 100644 --- a/plugins/Sitemap/SitemapPlugin.php +++ b/plugins/Sitemap/SitemapPlugin.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class SitemapPlugin extends Plugin { const USERS_PER_MAP = 50000; @@ -57,7 +56,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onAutoload($cls) { $dir = dirname(__FILE__); @@ -89,7 +87,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value. */ - function onEndRobotsTxt($action) { $url = common_local_url('sitemapindex'); @@ -106,7 +103,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onRouterInitialized($m) { $m->connect('sitemapindex.xml', @@ -142,7 +138,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value. */ - function onStartShowHeadElements($action) { $actionName = $action->trimmed('action'); @@ -181,7 +176,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onCheckSchema() { $schema = Schema::get(); @@ -214,11 +208,35 @@ class SitemapPlugin extends Plugin function onEndAdminPanelNav($menu) { if (AdminPanelAction::canAdmin('sitemap')) { // TRANS: Menu item title/tooltip - $menu_title = _('Sitemap configuration'); + $menu_title = _m('Sitemap configuration'); // TRANS: Menu item for site administration - $menu->out->menuItem(common_local_url('sitemapadminpanel'), _('Sitemap'), + $menu->out->menuItem(common_local_url('sitemapadminpanel'), _m('MENU','Sitemap'), $menu_title, $action_name == 'sitemapadminpanel', 'nav_sitemap_admin_panel'); } return true; } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:Sitemap'; + + $versions[] = array('name' => 'Sitemap', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('This plugin allows creation of sitemaps for Bing, Yahoo! and Google.')); + + return true; + } } diff --git a/plugins/Sitemap/Sitemap_notice_count.php b/plugins/Sitemap/Sitemap_notice_count.php index 6e0061e97b..2238ff5218 100644 --- a/plugins/Sitemap/Sitemap_notice_count.php +++ b/plugins/Sitemap/Sitemap_notice_count.php @@ -51,7 +51,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * * @see DB_DataObject */ - class Sitemap_notice_count extends Memcached_DataObject { public $__table = 'sitemap_notice_count'; // table name @@ -72,7 +71,6 @@ class Sitemap_notice_count extends Memcached_DataObject * @return Sitemap_notice_count object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Sitemap_notice_count', $k, $v); @@ -86,7 +84,6 @@ class Sitemap_notice_count extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('notice_date' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_NOTNULL, @@ -103,7 +100,6 @@ class Sitemap_notice_count extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array('notice_date' => 'K'); @@ -117,7 +113,6 @@ class Sitemap_notice_count extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return $this->keys(); @@ -128,7 +123,6 @@ class Sitemap_notice_count extends Memcached_DataObject $noticeCounts = self::cacheGet('sitemap:notice:counts'); if ($noticeCounts === false) { - $snc = new Sitemap_notice_count(); $snc->orderBy('notice_date DESC'); @@ -236,7 +230,8 @@ class Sitemap_notice_count extends Memcached_DataObject $snc = Sitemap_notice_count::staticGet('notice_date', DB_DataObject_Cast::date($d)); if (empty($snc)) { - throw new Exception("No such registration date: $d"); + // TRANS: Exception + throw new Exception(_m("No such registration date: $d.")); } $orig = clone($snc); diff --git a/plugins/Sitemap/Sitemap_user_count.php b/plugins/Sitemap/Sitemap_user_count.php index 98dd05bfed..0b45021bf5 100644 --- a/plugins/Sitemap/Sitemap_user_count.php +++ b/plugins/Sitemap/Sitemap_user_count.php @@ -47,7 +47,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * * @see DB_DataObject */ - class Sitemap_user_count extends Memcached_DataObject { public $__table = 'sitemap_user_count'; // table name @@ -68,7 +67,6 @@ class Sitemap_user_count extends Memcached_DataObject * @return Sitemap_user_count object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Sitemap_user_count', $k, $v); @@ -82,7 +80,6 @@ class Sitemap_user_count extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('registration_date' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_NOTNULL, @@ -118,7 +115,6 @@ class Sitemap_user_count extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return $this->keys(); @@ -235,7 +231,8 @@ class Sitemap_user_count extends Memcached_DataObject $suc = Sitemap_user_count::staticGet('registration_date', DB_DataObject_Cast::date($d)); if (empty($suc)) { - throw new Exception("No such registration date: $d"); + // TRANS: Exception thrown when a registration date cannot be found. + throw new Exception(_m("No such registration date: $d.")); } $orig = clone($suc); diff --git a/plugins/Sitemap/noticesitemap.php b/plugins/Sitemap/noticesitemap.php index 7d9d2e5d68..efa23b9401 100644 --- a/plugins/Sitemap/noticesitemap.php +++ b/plugins/Sitemap/noticesitemap.php @@ -40,7 +40,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 NoticesitemapAction extends SitemapAction { var $notices = null; diff --git a/plugins/Sitemap/sitemapaction.php b/plugins/Sitemap/sitemapaction.php index 73b9248a38..ef77645c31 100644 --- a/plugins/Sitemap/sitemapaction.php +++ b/plugins/Sitemap/sitemapaction.php @@ -40,7 +40,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 SitemapAction extends Action { /** @@ -50,7 +49,6 @@ class SitemapAction extends Action * * @return void */ - function handle($args) { parent::handle($args); diff --git a/plugins/Sitemap/sitemapadminpanel.php b/plugins/Sitemap/sitemapadminpanel.php index 3372723b02..3304cfd011 100644 --- a/plugins/Sitemap/sitemapadminpanel.php +++ b/plugins/Sitemap/sitemapadminpanel.php @@ -40,7 +40,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 SitemapadminpanelAction extends AdminPanelAction { /** @@ -48,10 +47,10 @@ class SitemapadminpanelAction extends AdminPanelAction * * @return string page title */ - function title() { - return _('Sitemap'); + // TRANS: Title for sitemap. + return _m('Sitemap'); } /** @@ -59,10 +58,10 @@ class SitemapadminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { - return _('Sitemap settings for this StatusNet site'); + // TRANS: Instructions for sitemap. + return _m('Sitemap settings for this StatusNet site'); } /** @@ -70,7 +69,6 @@ class SitemapadminpanelAction extends AdminPanelAction * * @return void */ - function showForm() { $form = new SitemapAdminPanelForm($this); @@ -83,7 +81,6 @@ class SitemapadminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { static $settings = array('sitemap' => array('googlekey', 'yahookey', 'bingkey')); @@ -97,7 +94,6 @@ class SitemapadminpanelAction extends AdminPanelAction } // This throws an exception on validation errors - $this->validate($values); // assert(all values are valid); @@ -125,7 +121,6 @@ class SitemapadminpanelAction extends AdminPanelAction /** * Form for the sitemap admin panel */ - class SitemapAdminPanelForm extends AdminForm { /** @@ -133,7 +128,6 @@ class SitemapAdminPanelForm extends AdminForm * * @return int ID of the form */ - function id() { return 'form_sitemap_admin_panel'; @@ -144,7 +138,6 @@ class SitemapAdminPanelForm extends AdminForm * * @return string class of the form */ - function formClass() { return 'form_sitemap'; @@ -155,7 +148,6 @@ class SitemapAdminPanelForm extends AdminForm * * @return string URL of the action */ - function action() { return common_local_url('sitemapadminpanel'); @@ -166,26 +158,31 @@ class SitemapAdminPanelForm extends AdminForm * * @return void */ - function formData() { $this->out->elementStart('ul', 'form_data'); $this->li(); $this->input('googlekey', - _('Google key'), - _('Google Webmaster Tools verification key'), + // TRANS: Field label. + _m('Google key'), + // TRANS: Title for field label. + _m('Google Webmaster Tools verification key.'), 'sitemap'); $this->unli(); $this->li(); $this->input('yahookey', - _('Yahoo key'), - _('Yahoo! Site Explorer verification key'), + // TRANS: Field label. + _m('Yahoo key'), + // TRANS: Title for field label. + _m('Yahoo! Site Explorer verification key.'), 'sitemap'); $this->unli(); $this->li(); $this->input('bingkey', - _('Bing key'), - _('Bing Webmaster Tools verification key'), + // TRANS: Field label. + _m('Bing key'), + // TRANS: Title for field label. + _m('Bing Webmaster Tools verification key.'), 'sitemap'); $this->unli(); $this->out->elementEnd('ul'); @@ -196,9 +193,14 @@ class SitemapAdminPanelForm extends AdminForm * * @return void */ - function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _('Save sitemap settings')); + $this->out->submit('submit', + // TRANS: Submit button text to save sitemap settings. + _m('BUTTON','Save'), + 'submit', + null, + // TRANS: Submit button title to save sitemap settings. + _m('Save sitemap settings.')); } } diff --git a/plugins/Sitemap/sitemapindex.php b/plugins/Sitemap/sitemapindex.php index 169e3031ce..ab89c2156c 100644 --- a/plugins/Sitemap/sitemapindex.php +++ b/plugins/Sitemap/sitemapindex.php @@ -40,7 +40,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 SitemapindexAction extends Action { /** @@ -50,7 +49,6 @@ class SitemapindexAction extends Action * * @return void */ - function handle($args) { header('Content-Type: text/xml; charset=UTF-8'); diff --git a/plugins/Sitemap/usersitemap.php b/plugins/Sitemap/usersitemap.php index de12007157..c39165d0ed 100644 --- a/plugins/Sitemap/usersitemap.php +++ b/plugins/Sitemap/usersitemap.php @@ -40,7 +40,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 UsersitemapAction extends SitemapAction { var $users = null; From 362f395e035682cd8d2437cfca904654687be867 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Oct 2010 23:56:13 +0200 Subject: [PATCH 020/112] Add documentation URL. --- plugins/DirectionDetector/DirectionDetectorPlugin.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php index ac6b43c1f3..1473c386fa 100644 --- a/plugins/DirectionDetector/DirectionDetectorPlugin.php +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -1,5 +1,4 @@ 'Direction detector', 'version' => DIRECTIONDETECTORPLUGIN_VERSION, 'author' => 'Behrooz Shabani', + 'homepage' => $url, 'rawdescription' => _m('Shows notices with right-to-left content in correct direction.') ); return true; From 1652ded48c9c62c40157a5142e5231adbc574ddb Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Oct 2010 00:02:24 +0200 Subject: [PATCH 021/112] i18n/L10n review, extension credits added. --- plugins/SphinxSearch/SphinxSearchPlugin.php | 30 ++++++++++++++++--- plugins/SphinxSearch/scripts/gen_config.php | 2 -- plugins/SphinxSearch/scripts/index_update.php | 8 ++--- plugins/SphinxSearch/scripts/sphinx-utils.php | 1 - plugins/SphinxSearch/sphinxsearch.php | 4 ++- 5 files changed, 33 insertions(+), 12 deletions(-) diff --git a/plugins/SphinxSearch/SphinxSearchPlugin.php b/plugins/SphinxSearch/SphinxSearchPlugin.php index 7a27a4c042..ad34a7cc15 100644 --- a/plugins/SphinxSearch/SphinxSearchPlugin.php +++ b/plugins/SphinxSearch/SphinxSearchPlugin.php @@ -41,8 +41,6 @@ foreach($sphinxDefaults as $key => $val) { } } - - /** * Plugin for Sphinx search backend. * @@ -53,7 +51,6 @@ foreach($sphinxDefaults as $key => $val) { * @link http://laconi.ca/ * @link http://twitter.com/ */ - class SphinxSearchPlugin extends Plugin { /** @@ -86,7 +83,8 @@ class SphinxSearchPlugin extends Plugin { if (common_config('sphinx', 'enabled')) { if (!class_exists('SphinxClient')) { - throw new ServerException('Sphinx PHP extension must be installed.'); + // TRANS: Server exception. + throw new ServerException(_m('Sphinx PHP extension must be installed.')); } $engine = new SphinxSearch($target, $table); if ($engine->is_connected()) { @@ -97,4 +95,28 @@ class SphinxSearchPlugin extends Plugin // Sphinx disabled or disconnected return true; } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:SphinxSearch'; + + $versions[] = array('name' => 'SphinxSearch', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('Plugin for Sphinx search backend.')); + + return true; + } } diff --git a/plugins/SphinxSearch/scripts/gen_config.php b/plugins/SphinxSearch/scripts/gen_config.php index d5a00b6b6b..e7f3977478 100755 --- a/plugins/SphinxSearch/scripts/gen_config.php +++ b/plugins/SphinxSearch/scripts/gen_config.php @@ -70,8 +70,6 @@ searchd END; - - /** * Build config entries for a single site * @fixme we only seem to have master DB currently available... diff --git a/plugins/SphinxSearch/scripts/index_update.php b/plugins/SphinxSearch/scripts/index_update.php index 23c60ced76..abac5434f7 100755 --- a/plugins/SphinxSearch/scripts/index_update.php +++ b/plugins/SphinxSearch/scripts/index_update.php @@ -42,20 +42,20 @@ sphinx_iterate_sites('sphinx_index_update'); function sphinx_index_update($sn) { $base = sphinx_base(); - + $baseIndexes = array('notice', 'profile'); $params = array(); - + if (have_option('rotate')) { $params[] = '--rotate'; } foreach ($baseIndexes as $index) { $params[] = "{$sn->dbname}_{$index}"; } - + $params = implode(' ', $params); $cmd = "$base/bin/indexer --config $base/etc/sphinx.conf $params"; - + print "$cmd\n"; system($cmd); } diff --git a/plugins/SphinxSearch/scripts/sphinx-utils.php b/plugins/SphinxSearch/scripts/sphinx-utils.php index 7bbc252702..22d70fb8d1 100644 --- a/plugins/SphinxSearch/scripts/sphinx-utils.php +++ b/plugins/SphinxSearch/scripts/sphinx-utils.php @@ -60,4 +60,3 @@ function sphinx_iterate_sites($callback) } } } - diff --git a/plugins/SphinxSearch/sphinxsearch.php b/plugins/SphinxSearch/sphinxsearch.php index 654b9c9d5b..1ce9bfd72d 100644 --- a/plugins/SphinxSearch/sphinxsearch.php +++ b/plugins/SphinxSearch/sphinxsearch.php @@ -91,6 +91,8 @@ class SphinxSearch extends SearchEngine if (preg_match('!^.*?://.*?:.*?@.*?/(.*?)$!', common_config('db', 'database'), $matches)) { return $matches[1]; } - throw new ServerException("Sphinx search could not identify database name"); + + // TRANS: Server exception thrown when a database name cannot be identified. + throw new ServerException(_m("Sphinx search could not identify database name.")); } } From de185a14057e52d6acd306a643eb8f38cd83973e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 4 Oct 2010 13:05:49 -0700 Subject: [PATCH 022/112] Fix stray newlines on a few messages (fixed on translatewiki.net as well) --- locale/zh_CN/LC_MESSAGES/statusnet.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index eec90e3c45..3fdee114cb 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -7348,13 +7348,13 @@ msgstr "%s不是有效的颜色!应使用3或6个十六进制字符。" #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "用户 %s (%s) 的备份文件\n" +msgstr "用户 %s (%s) 的备份文件" #: scripts/restoreuser.php:88 msgid "No user specified; using backup user." -msgstr "没有用户被指定;使用备份用户。\n" +msgstr "没有用户被指定;使用备份用户。" #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "备份中有 %d 个条目。\n" +msgstr "备份中有 %d 个条目。" From 007866d340e9e011a547ef8726830ff00e6f0f41 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 5 Oct 2010 00:59:47 +0200 Subject: [PATCH 023/112] Localisation updates from http://translatewiki.net --- locale/af/LC_MESSAGES/statusnet.po | 42 +++++- locale/ar/LC_MESSAGES/statusnet.po | 42 +++++- locale/arz/LC_MESSAGES/statusnet.po | 42 +++++- locale/bg/LC_MESSAGES/statusnet.po | 42 +++++- locale/br/LC_MESSAGES/statusnet.po | 80 +++++++---- locale/ca/LC_MESSAGES/statusnet.po | 42 +++++- locale/cs/LC_MESSAGES/statusnet.po | 42 +++++- locale/de/LC_MESSAGES/statusnet.po | 42 +++++- locale/en_GB/LC_MESSAGES/statusnet.po | 42 +++++- locale/eo/LC_MESSAGES/statusnet.po | 42 +++++- locale/es/LC_MESSAGES/statusnet.po | 42 +++++- locale/fa/LC_MESSAGES/statusnet.po | 42 +++++- locale/fi/LC_MESSAGES/statusnet.po | 42 +++++- locale/fr/LC_MESSAGES/statusnet.po | 42 +++++- locale/ga/LC_MESSAGES/statusnet.po | 42 +++++- locale/gl/LC_MESSAGES/statusnet.po | 125 +++++++++++------- locale/hsb/LC_MESSAGES/statusnet.po | 42 +++++- locale/hu/LC_MESSAGES/statusnet.po | 42 +++++- locale/ia/LC_MESSAGES/statusnet.po | 42 +++++- locale/is/LC_MESSAGES/statusnet.po | 42 +++++- locale/it/LC_MESSAGES/statusnet.po | 42 +++++- locale/ja/LC_MESSAGES/statusnet.po | 42 +++++- locale/ka/LC_MESSAGES/statusnet.po | 42 +++++- locale/ko/LC_MESSAGES/statusnet.po | 42 +++++- locale/mk/LC_MESSAGES/statusnet.po | 42 +++++- locale/nb/LC_MESSAGES/statusnet.po | 42 +++++- locale/nl/LC_MESSAGES/statusnet.po | 42 +++++- locale/nn/LC_MESSAGES/statusnet.po | 43 +++++- locale/pl/LC_MESSAGES/statusnet.po | 42 +++++- locale/pt/LC_MESSAGES/statusnet.po | 42 +++++- locale/pt_BR/LC_MESSAGES/statusnet.po | 42 +++++- locale/ru/LC_MESSAGES/statusnet.po | 42 +++++- locale/statusnet.pot | 36 ++++- locale/sv/LC_MESSAGES/statusnet.po | 42 +++++- locale/te/LC_MESSAGES/statusnet.po | 42 +++++- locale/tr/LC_MESSAGES/statusnet.po | 42 +++++- locale/uk/LC_MESSAGES/statusnet.po | 42 +++++- locale/zh_CN/LC_MESSAGES/statusnet.po | 43 +++++- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 101 ++++++++++++++ .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 102 ++++++++++++++ .../AnonymousFave/locale/AnonymousFave.pot | 19 +-- .../locale/es/LC_MESSAGES/AnonymousFave.po | 25 ++-- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 25 ++-- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 25 ++-- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 25 ++-- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 26 ++-- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 26 ++++ .../locale/ru/LC_MESSAGES/BlogspamNet.po | 27 ++++ .../locale/nb/LC_MESSAGES/CacheLog.po | 26 ++++ plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 26 ++++ .../locale/DirectionDetector.pot | 4 +- .../es/LC_MESSAGES/DirectionDetector.po | 10 +- .../fr/LC_MESSAGES/DirectionDetector.po | 10 +- .../ia/LC_MESSAGES/DirectionDetector.po | 10 +- .../ja/LC_MESSAGES/DirectionDetector.po | 10 +- .../lb/LC_MESSAGES/DirectionDetector.po | 10 +- .../mk/LC_MESSAGES/DirectionDetector.po | 10 +- .../nb/LC_MESSAGES/DirectionDetector.po | 10 +- .../nl/LC_MESSAGES/DirectionDetector.po | 10 +- .../ru/LC_MESSAGES/DirectionDetector.po | 10 +- .../tl/LC_MESSAGES/DirectionDetector.po | 10 +- .../uk/LC_MESSAGES/DirectionDetector.po | 10 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 10 +- plugins/Facebook/locale/Facebook.pot | 9 +- .../locale/br/LC_MESSAGES/Facebook.po | 21 ++- .../locale/es/LC_MESSAGES/Facebook.po | 15 ++- .../locale/fr/LC_MESSAGES/Facebook.po | 15 ++- .../locale/gl/LC_MESSAGES/Facebook.po | 15 ++- .../locale/ia/LC_MESSAGES/Facebook.po | 15 ++- .../locale/mk/LC_MESSAGES/Facebook.po | 15 ++- .../locale/nb/LC_MESSAGES/Facebook.po | 15 ++- .../locale/nl/LC_MESSAGES/Facebook.po | 15 ++- .../locale/pt_BR/LC_MESSAGES/Facebook.po | 15 ++- .../locale/tl/LC_MESSAGES/Facebook.po | 15 ++- .../locale/uk/LC_MESSAGES/Facebook.po | 15 ++- .../locale/zh_CN/LC_MESSAGES/Facebook.po | 15 ++- .../locale/br/LC_MESSAGES/GroupFavorited.po | 53 ++++++++ plugins/Mapstraction/locale/Mapstraction.pot | 9 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 17 ++- .../locale/de/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/fi/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/fr/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/gl/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/ia/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/mk/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/nl/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/ru/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/tl/LC_MESSAGES/Mapstraction.po | 15 ++- .../locale/uk/LC_MESSAGES/Mapstraction.po | 15 ++- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 38 ++++++ plugins/NoticeTitle/locale/NoticeTitle.pot | 4 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 10 +- plugins/OStatus/locale/OStatus.pot | 24 +++- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 30 +++-- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 30 +++-- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 30 +++-- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 30 +++-- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 30 +++-- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 10 +- plugins/Sitemap/locale/Sitemap.pot | 84 ++++++++++++ plugins/SphinxSearch/locale/SphinxSearch.pot | 32 +++++ .../locale/ia/LC_MESSAGES/UserFlag.po | 113 ++++++++++++++++ .../locale/mk/LC_MESSAGES/UserFlag.po | 114 ++++++++++++++++ .../locale/nl/LC_MESSAGES/UserFlag.po | 115 ++++++++++++++++ .../locale/uk/LC_MESSAGES/UserFlag.po | 116 ++++++++++++++++ .../locale/ia/LC_MESSAGES/YammerImport.po | 14 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 14 +- 115 files changed, 2955 insertions(+), 677 deletions(-) create mode 100644 plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po create mode 100644 plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po create mode 100644 plugins/Comet/locale/nb/LC_MESSAGES/Comet.po create mode 100644 plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po create mode 100644 plugins/Sitemap/locale/Sitemap.pot create mode 100644 plugins/SphinxSearch/locale/SphinxSearch.pot create mode 100644 plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po create mode 100644 plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po create mode 100644 plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po create mode 100644 plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 04dbe3806b..520bef7f59 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:35+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:06+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3999,7 +3999,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4008,7 +4008,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4016,7 +4016,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Herhaling van %s" @@ -4867,6 +4867,13 @@ msgstr "Outeur(s)" msgid "Favor" msgstr "Gunstelinge" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5044,6 +5051,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Kon nie die profiel stoor nie." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5124,6 +5138,13 @@ msgstr "" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%s volg niemand nie." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7220,6 +7241,13 @@ msgstr "Deblokkeer hierdie gebruiker" msgid "Unsubscribe" msgstr "" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Hierdie gebruiker het nie 'n profiel nie." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Wysig Avatar" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index b1cb14da51..a93144a506 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:39+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:08+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3966,7 +3966,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3980,7 +3980,7 @@ msgstr "" "[انضم الآن](%%%%action.register%%%%) لتتابع إشعارت **%s** وغيره! ([اقرأ " "المزيد](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3991,7 +3991,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "تكرار ل%s" @@ -4819,6 +4819,13 @@ msgstr "المؤلف(ون)" msgid "Favor" msgstr "فضّل" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -4992,6 +4999,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "مشكلة أثناء حفظ الإشعار." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "تعذر تحديث المجموعة المحلية." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5065,6 +5079,13 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7192,6 +7213,13 @@ msgstr "ألغِ الاشتراك مع هذا المستخدم" msgid "Unsubscribe" msgstr "ألغِ الاشتراك" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "ليس للمستخدم ملف شخصي." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "عدّل الأفتار" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 28941399c1..403ea6b270 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:40+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:09+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3993,7 +3993,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4006,7 +4006,7 @@ msgstr "" "الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " "([اقرأ المزيد](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4016,7 +4016,7 @@ msgstr "" "هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" "blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/)." -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "تكرارات %s" @@ -4855,6 +4855,13 @@ msgstr "المؤلف/ين" msgid "Favor" msgstr "فضّل" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5029,6 +5036,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "مشكله أثناء حفظ الإشعار." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "تعذّر حفظ الاشتراك." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5101,6 +5115,13 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7196,6 +7217,13 @@ msgstr "ألغِ الاشتراك مع هذا المستخدم" msgid "Unsubscribe" msgstr "ألغِ الاشتراك" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "ليس للمستخدم ملف شخصى." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "عدّل الأفتار" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 9d810ec08a..fbc7900672 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:42+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:10+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4035,7 +4035,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4044,7 +4044,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4052,7 +4052,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Повторения на %s" @@ -4898,6 +4898,13 @@ msgstr "Автор(и)" msgid "Favor" msgstr "Любимо" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) отбеляза бележката ви като любима" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5080,6 +5087,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Проблем при записване на бележката." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Грешка при запазване на етикетите." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5155,6 +5169,13 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s вече получава бележките ви в %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7234,6 +7255,13 @@ msgstr "Отписване от този потребител" msgid "Unsubscribe" msgstr "Отписване" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Потребителят няма профил." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Редактиране на аватара" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index c68e172c60..0add952aa7 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:43+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:11+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2290,11 +2290,11 @@ msgstr "Aotre-implijout" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Aotre-implijout al lec'hienn StatusNet-mañ" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Diuzadenn aotre-implijout direizh" #: actions/licenseadminpanel.php:149 msgid "" @@ -2308,23 +2308,23 @@ msgstr "" #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Direizh eo URL an aotre-implijout" #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Direizh eo URL skeudenn an aotre-implijout" #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Goullo pe reizh e rank bezañ URL an aotre-implijout" #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Goullo pe reizh e rank bezañ URL skeudenn an aotre-implijout" #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Diuzadenn un aotre-implijout" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2336,19 +2336,19 @@ msgstr "Pep gwir miret strizh." #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Seurt" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Dibab un aotre-implijout" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Munudoù an aotre-implijout" #: actions/licenseadminpanel.php:274 msgid "Owner" @@ -2356,7 +2356,7 @@ msgstr "Perc'henn" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Anv perc'henn danvez la lec'hienn (ma c'heller lakaat e pleustr)." #: actions/licenseadminpanel.php:283 msgid "License Title" @@ -2364,27 +2364,27 @@ msgstr "Titl an aotre-implijout" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Titl an aotre-implijout" #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL an aotre-implijout" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL lec'h ma c'heller kaout titouroù diwar-benn an aotre-implijout." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL skeudenn an aotre-implijout" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL ur skeudenn da ziskouez gant an aotre-implijout." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Enrollañ arventennoù an aotre-implijout" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -3987,7 +3987,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3998,7 +3998,7 @@ 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/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4008,7 +4008,7 @@ 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/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Adkemeret eus %s" @@ -4848,6 +4848,13 @@ msgstr "Aozer(ien)" msgid "Favor" msgstr "Pennrolloù" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5021,6 +5028,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Ur gudenn 'zo bet pa veze enrollet boest degemer ar strollad." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Dibosupl eo enrollañ titouroù ar strollad lec'hel." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5092,6 +5106,13 @@ msgstr "Dibosupl eo dilemel ar c'houmanant." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "Ne heuilh %s den ebet." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -6794,7 +6815,7 @@ msgstr "e" #: lib/noticelist.php:512 msgid "web" -msgstr "" +msgstr "web" #: lib/noticelist.php:578 msgid "in context" @@ -7153,6 +7174,13 @@ msgstr "En em zigoumanantiñ eus an implijer-mañ" msgid "Unsubscribe" msgstr "Digoumanantiñ" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "An implijer-mañ n'eus profil ebet dezhañ." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Kemmañ an Avatar" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 5513129bdb..29f7b082a3 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:45+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:12+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4101,7 +4101,7 @@ msgstr "" "Sigueu el primer en [enviar sobre aquest tema](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4116,7 +4116,7 @@ msgstr "" "seguir els avisos de **%s** i molt més! ([Més informació...](%%%%doc.help%%%" "%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4127,7 +4127,7 @@ msgstr "" "ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetició de %s" @@ -4991,6 +4991,13 @@ msgstr "Autoria" msgid "Favor" msgstr "Preferit" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) ha afegit el vostre avís com a preferit" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5169,6 +5176,13 @@ msgstr "S'ha proporcionat un tipus incorrecte per a saveKnownGroups" msgid "Problem saving group inbox." msgstr "S'ha produït un problema en desar la safata d'entrada del grup." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "No s'ha pogut desar la informació del grup local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5242,6 +5256,13 @@ msgstr "No s'ha pogut eliminar la subscripció." msgid "Follow" msgstr "Segueix" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ara està escoltant els teus avisos a %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7436,6 +7457,13 @@ msgstr "Cancel·la la subscripció d'aquest usuari" msgid "Unsubscribe" msgstr "Cancel·la la subscripció" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "L'usuari no té perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Edita l'avatar" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 32356d21dc..ffcdb38579 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:46+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:13+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4055,7 +4055,7 @@ msgstr "" "Můžete se pokusit uživatele %1$s postrčit nebo [jim něco poslat](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4068,7 +4068,7 @@ msgstr "" "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 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4079,7 +4079,7 @@ msgstr "" "faq#mikroblog) službě založené na Free Software nástroji [StatusNet](http://" "status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Opakování %s" @@ -4934,6 +4934,13 @@ msgstr "Autoři" msgid "Favor" msgstr "Oblíbit" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) přidal vaše oznámení jako oblíbené" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5109,6 +5116,13 @@ msgstr "saveKnownGroups obdrželo špatný typ." msgid "Problem saving group inbox." msgstr "Problém při ukládání skupinového inboxu" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Nelze uložit místní info skupiny." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5180,6 +5194,13 @@ msgstr "Nelze smazat odebírání" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s od teď naslouchá tvým sdělením na %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7366,6 +7387,13 @@ msgstr "Odhlásit se od tohoto uživatele" msgid "Unsubscribe" msgstr "Odhlásit" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Uživatel nemá profil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Upravit avatar" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 11af5e1f86..b6889826f5 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:47+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4125,7 +4125,7 @@ msgstr "" "Du kannst %1$s in seinem Profil einen Stups geben oder [ihm etwas posten](%%%" "%action.newnotice%%%%?status_textarea=%s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4139,7 +4139,7 @@ msgstr "" "um **%s**'s und vielen anderen zu folgen! ([Mehr Informationen](%%%%doc.help%" "%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4150,7 +4150,7 @@ msgstr "" "wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien Software " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Wiederholung von %s" @@ -5013,6 +5013,13 @@ msgstr "Autor(en)" msgid "Favor" msgstr "Zu Favoriten hinzufügen" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) hat deine Nachricht als Favorit gespeichert" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5192,6 +5199,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Konnte die lokale Gruppen Information nicht speichern." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5268,6 +5282,13 @@ msgstr "Konnte Abonnement nicht löschen." msgid "Follow" msgstr "Folgen" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ist der Gruppe „%2$s“ beigetreten." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7458,6 +7479,13 @@ msgstr "Lösche dein Abonnement von diesem Benutzer" msgid "Unsubscribe" msgstr "Abbestellen" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Benutzer hat kein Profil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Avatar bearbeiten" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index b4396b1776..4611c6961b 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:49+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:15+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4062,7 +4062,7 @@ msgstr "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4075,7 +4075,7 @@ msgstr "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4086,7 +4086,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repeat of %s" @@ -4937,6 +4937,13 @@ msgstr "" msgid "Favor" msgstr "Favour" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) added your notice as a favorite" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5110,6 +5117,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Problem saving group inbox." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Could not save local group info." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5185,6 +5199,13 @@ msgstr "Could not delete subscription." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s is now listening to your notices on %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7278,6 +7299,13 @@ msgstr "Unsubscribe from this user" msgid "Unsubscribe" msgstr "Unsubscribe" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "User has no profile." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Edit Avatar" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 8f9bd5cc72..df248608a0 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:49+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:16+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4038,7 +4038,7 @@ msgstr "" "Vi povas provi [puŝeti %1$s] aŭ [afiŝi ion al li](%%%%action.newnotice%%%%?" "status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4051,7 +4051,7 @@ msgstr "" "(http://status.net/). [Aniĝu](%%action.register%%) por sekvi avizojn de **%" "s** kaj multe pli! ([Pli](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4062,7 +4062,7 @@ msgstr "" "wiki/Micro-blogging) servo surbaze de ilaro de Libera Molvaro [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Ripeto de %s" @@ -4903,6 +4903,13 @@ msgstr "Aŭtoro(j)" msgid "Favor" msgstr "Ŝati" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) ŝatis vian avizon" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5076,6 +5083,13 @@ msgstr "Fuŝa tipo donita al saveKnownGroups" msgid "Problem saving group inbox." msgstr "Malsukcesis konservi grupan alvenkeston." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Malsukcesis lokan grupan informon." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5147,6 +5161,13 @@ msgstr "Malsukcesis forigi abonon." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s nun rigardas viajn avizojn ĉe %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7332,6 +7353,13 @@ msgstr "Malaboni la uzanton" msgid "Unsubscribe" msgstr "Malaboni" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "La uzanto ne havas profilon." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Redakti vizaĝbildon" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index c99b33d9c4..34fe75ae52 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:50+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:17+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4109,7 +4109,7 @@ msgstr "" "Puedes intentar darle un toque a %1$s o [publicar algo a su atención](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4123,7 +4123,7 @@ msgstr "" "register%%%%) para seguir los avisos de **%s** y de muchas personas más! " "([Más información](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4134,7 +4134,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Micro-blogging), basado en la herramienta de " "software libre [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetición de %s" @@ -4998,6 +4998,13 @@ msgstr "Autor(es)" msgid "Favor" msgstr "Aceptar" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) agregó tu mensaje a los favoritos" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5174,6 +5181,13 @@ msgstr "Mal tipo proveído a saveKnownGroups" msgid "Problem saving group inbox." msgstr "Hubo un problema al guarda la bandeja de entrada del grupo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "No se ha podido guardar la información del grupo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5247,6 +5261,13 @@ msgstr "No se pudo eliminar la suscripción." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ahora está escuchando tus avisos en %2$s" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7449,6 +7470,13 @@ msgstr "Desuscribirse de este usuario" msgid "Unsubscribe" msgstr "Cancelar suscripción" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "El usuario no tiene un perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Editar imagen" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index f5d8f300d4..8428a42ded 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:51+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:18+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4069,7 +4069,7 @@ msgstr "" "اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%" "s) پیام می‌فرستد." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4083,7 +4083,7 @@ msgstr "" "،دارد. ]اکنون بپیوندید[(%%%%action.register%%%%) تا پیام‌های **%s** و بلکه " "بیش‌تر را دنبال کنید! (]بیش‌تر بخوانید[(%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4094,7 +4094,7 @@ msgstr "" "wikipedia.org/wiki/%D9%85%DB%8C%DA%A9%D8%B1%D9%88%D8%A8%D9%84%D8%A7%DA%AF%DB%" "8C%D9%86%DA%AF) بر پایهٔ نرم‌افزار آزاد [StatusNet](http://status.net/) ،دارد. " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "تکرار %s" @@ -4944,6 +4944,13 @@ msgstr "مؤلف(ها)" msgid "Favor" msgstr "برگزیده‌کردن" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "پیام شما را به برگزیده‌های خود اضافه کرد %s (@%s)" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5123,6 +5130,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "نمی‌توان اطلاعات گروه محلی را ذخیره کرد." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5196,6 +5210,13 @@ msgstr "نمی‌توان اشتراک را ذخیره کرد." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s اکنون پیام‌های شما را در %2$s دنبال می‌کند." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7382,6 +7403,13 @@ msgstr "لغو مشترک‌شدن از این کاربر" msgid "Unsubscribe" msgstr "لغو اشتراک" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "کاربر هیچ نمایه‌ای ندارد." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "ویرایش اواتور" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 933028780a..a10325fc6a 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:52+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:19+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4138,7 +4138,7 @@ msgstr "" "Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." "newnotice%%%%?status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4147,7 +4147,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4157,7 +4157,7 @@ msgstr "" "Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " "[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Vastaukset käyttäjälle %s" @@ -5022,6 +5022,13 @@ msgstr "" msgid "Favor" msgstr "Lisää suosikiksi" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5203,6 +5210,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Tilausta ei onnistuttu tallentamaan." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5278,6 +5292,13 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7395,6 +7416,13 @@ msgstr "Peruuta tämän käyttäjän tilaus" msgid "Unsubscribe" msgstr "Peruuta tilaus" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Käyttäjällä ei ole profiilia." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 5f5ef01a4e..cf09b012bc 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4140,7 +4140,7 @@ msgstr "" "Vous pouvez essayer de faire un clin d’œil à %1$s ou de [poster quelque " "chose à son intention](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4154,7 +4154,7 @@ msgstr "" "register%%%%) pour suivre les avis de **%s** et bien plus ! ([En lire plus](%" "%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4165,7 +4165,7 @@ msgstr "" "wikipedia.org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://" "status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Reprises de %s" @@ -5036,6 +5036,13 @@ msgstr "Auteur(s)" msgid "Favor" msgstr "Ajouter à mes favoris" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) a ajouté un de vos avis à ses favoris" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5211,6 +5218,13 @@ msgstr "Le type renseigné pour saveKnownGroups n’est pas valable" msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Impossible d’enregistrer les informations du groupe local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5286,6 +5300,13 @@ msgstr "Impossible de supprimer l’abonnement" msgid "Follow" msgstr "Suivre" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s a rejoint le groupe %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7497,6 +7518,13 @@ msgstr "Ne plus suivre cet utilisateur" msgid "Unsubscribe" msgstr "Désabonnement" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Aucun profil ne correspond à cet utilisateur." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Modifier l’avatar" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 056dde849f..b2ca157b27 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:21+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4168,7 +4168,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4181,7 +4181,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4193,7 +4193,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Replies to %s" @@ -5057,6 +5057,13 @@ msgstr "" msgid "Favor" msgstr "Gostame" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5240,6 +5247,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chío." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Non se pode gardar a subscrición." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5315,6 +5329,13 @@ msgstr "Non se pode gardar a subscrición." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s está a escoitar os teus chíos %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7538,6 +7559,13 @@ msgstr "Desuscribir de %s" msgid "Unsubscribe" msgstr "Eliminar subscrición" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "O usuario non ten perfil." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 3fe875f47f..f447ea3c9a 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:55+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1133,7 +1133,7 @@ msgstr "Deseño" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Configuración de deseño para este sitio StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1910,7 +1910,7 @@ msgstr "Bloquear" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bloquear este usuario" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2361,105 +2361,107 @@ msgstr "%1$s deixou o grupo %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licenza" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Licenza deste sitio StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "A selección de licenza non é válida." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Cómpre especificar o propietario dos contidos ao empregar a licenza \"Todos " +"os dereitos reservados\"." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Título de licenza incorrecto. A extensión máxima é de 255 caracteres." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Enderezo URL de licenza incorrecto." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Enderezo URL de imaxe de licenza incorrecto." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "O enderezo URL da licenza debe quedar baleiro ou ser válido." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "O enderezo URL da imaxe da licenza debe quedar baleiro ou ser válido." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Selección da licenza" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privado" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Todos os dereitos reservados" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Tipo" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Seleccionar unha licenza" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Detalles da licenza" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Propietario" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nome do propietario dos contidos deste sitio (se procede)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Título da licenza" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "O título da licenza." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL da licenza" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL para obter máis información sobre a licenza." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL da imaxe da licenza" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL dunha imaxe a mostrar coa licenza." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Gardar a configuración de licenza" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2702,7 +2704,7 @@ msgstr "Aplicacións conectadas" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Permitiulle o acceso á súa conta ás seguintes aplicacións." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2895,7 +2897,7 @@ msgstr "Rutas" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Configuración do servidor e das rutas para este sitio StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3765,7 +3767,7 @@ msgstr "Sesións" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Configuración de sesión para este sitio StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -4111,7 +4113,7 @@ msgstr "" "Pode probar a facerlle un aceno a %1$s ou [publicar algo dirixido a el ou " "ela](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4125,7 +4127,7 @@ msgstr "" "[Únase agora](%%%%action.register%%%%) para seguir as notas de **%s** e de " "moita máis xente! ([Máis información](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4136,7 +4138,7 @@ msgstr "" "blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " "baseado na ferramenta de software libre [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repeticións de %s" @@ -4715,7 +4717,7 @@ msgstr "Usuario" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Configuración de usuario para este sitio StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4778,7 +4780,7 @@ msgstr "Permitir ou non que os usuarios poidan invitar a novos usuarios." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Gardar a configuración do usuario" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -5000,6 +5002,13 @@ msgstr "Autores" msgid "Favor" msgstr "Marcar como favorito" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) marcou a súa nota como favorita" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5062,7 +5071,7 @@ msgstr "Non se puido deixar o grupo." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "A identificación do perfil, %s, é incorrecta." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5081,7 +5090,7 @@ msgstr "Unirse" #: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s uniuse ao grupo %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5176,6 +5185,13 @@ msgstr "O tipo dado para saveKnownGroups era incorrecto" msgid "Problem saving group inbox." msgstr "Houbo un problema ao gardar a caixa de entrada do grupo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Non se puido gardar a información do grupo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5247,7 +5263,14 @@ msgstr "Non se puido borrar a subscrición." #. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 msgid "Follow" -msgstr "" +msgstr "Seguir" + +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s uniuse ao grupo %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5700,7 +5723,7 @@ msgstr "Configuración das instantáneas" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Definir a licenza do sitio" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5849,7 +5872,7 @@ msgstr "Revogar" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "o elemento \"autor\" debe conter un nome." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -6376,7 +6399,7 @@ msgstr "Amigo dun amigo" #: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Fontes de novas" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -7448,6 +7471,13 @@ msgstr "Cancelar a subscrición a este usuario" msgid "Unsubscribe" msgstr "Cancelar a subscrición" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "O usuario non ten perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Modificar o avatar" @@ -7569,14 +7599,13 @@ msgstr "%s non é unha cor correcta! Use 3 ou 6 caracteres hexadecimais." #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "Ficheiro de reserva para o usuario %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Non se especificou ningunha ID de usuario." +msgstr "Non se especificou ningún usuario; emprégase o usuario de reserva." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d entradas na reserva." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 3ffc1df02d..a0f71db530 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:56+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:23+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3937,7 +3937,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3946,7 +3946,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3954,7 +3954,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Wospjetowany wot" @@ -4783,6 +4783,13 @@ msgstr "Awtorojo" msgid "Favor" msgstr "Fawority" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) je twoju zdźělenku jako faworit přidał" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -4958,6 +4965,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Informacije wo lokalnej skupinje njedachu so składować." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5030,6 +5044,13 @@ msgstr "Abonoment njeda so zhašeć ." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, php-format +msgid "%1$s is now following %2$s." +msgstr "" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7094,6 +7115,13 @@ msgstr "Tutoho wužiwarja wotskazać" msgid "Unsubscribe" msgstr "Wotskazać" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Wužiwar nima profil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Awatar wobdźěłać" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 6b66ae58a6..1f170ac334 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:56+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:24+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-01 20:37:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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" @@ -3938,7 +3938,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3952,7 +3952,7 @@ msgstr "" "register%%%%) és kövesd nyomon **%s** pletykáit - és még rengeteg mást! " "([Tudj meg többet](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3963,7 +3963,7 @@ msgstr "" "wiki/Mikroblog#Mikroblog) ír egy webhelyen, ami a szabad [StatusNet](http://" "status.net/) szoftverre épült. " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "%s ismétlése" @@ -4771,6 +4771,13 @@ msgstr "Szerző(k)" msgid "Favor" msgstr "Kedvelem" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -4940,6 +4947,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Nem sikerült menteni a profilt." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5011,6 +5025,13 @@ msgstr "" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7101,6 +7122,13 @@ msgstr "" msgid "Unsubscribe" msgstr "" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "A felhasználónak nincs profilja." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index df8ad6106d..3abd8fce2f 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4091,7 +4091,7 @@ msgstr "" "Tu pote tentar dar un pulsata a %1$s o [publicar un nota a su attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4105,7 +4105,7 @@ msgstr "" "pro sequer le notas de **%s** e multe alteres! ([Lege plus](%%%%doc.help%%%" "%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4116,7 +4116,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Microblog) a base del software libere " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetition de %s" @@ -4976,6 +4976,13 @@ msgstr "Autor(es)" msgid "Favor" msgstr "Favorir" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) ha addite tu nota como favorite" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5151,6 +5158,13 @@ msgstr "Mal typo fornite a saveKnownGroups" msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Non poteva salveguardar le informationes del gruppo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5224,6 +5238,13 @@ msgstr "Non poteva deler subscription." msgid "Follow" msgstr "Sequer" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s se ha jungite al gruppo %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7420,6 +7441,13 @@ msgstr "Cancellar subscription a iste usator" msgid "Unsubscribe" msgstr "Cancellar subscription" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Le usator non ha un profilo." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Modificar avatar" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 66793c4fde..2e413d299b 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:02+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:26+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4143,7 +4143,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4152,7 +4152,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4160,7 +4160,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Svör við %s" @@ -5025,6 +5025,13 @@ msgstr "" msgid "Favor" msgstr "Uppáhald" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5207,6 +5214,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Gat ekki vistað áskrift." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5282,6 +5296,13 @@ msgstr "Gat ekki vistað áskrift." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s er að hlusta á bablið þitt á %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7384,6 +7405,13 @@ msgstr "Hætta sem áskrifandi að þessum notanda" msgid "Unsubscribe" msgstr "Fara úr áskrift" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Notandi hefur enga persónulega síðu." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 929f885efc..2b34725840 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:03+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:27+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4082,7 +4082,7 @@ msgstr "" "[Scrivi qualche cosa](%%%%action.newnotice%%%%?status_textarea=%s) su questo " "argomento!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4096,7 +4096,7 @@ msgstr "" "i messaggi di **%s** e di molti altri! ([Maggiori informazioni](%%%%doc.help%" "%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4107,7 +4107,7 @@ msgstr "" "it.wikipedia.org/wiki/Microblogging) basato sul software libero [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Ripetizione di %s" @@ -4967,6 +4967,13 @@ msgstr "Autori" msgid "Favor" msgstr "Preferisci" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5144,6 +5151,13 @@ msgstr "Fornito un tipo errato per saveKnownGroups" msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Impossibile salvare le informazioni del gruppo locale." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5218,6 +5232,13 @@ msgstr "Impossibile salvare l'abbonamento." msgid "Follow" msgstr "Segui" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "L'utente %1$s è entrato nel gruppo %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7417,6 +7438,13 @@ msgstr "Annulla l'abbonamento da questo utente" msgid "Unsubscribe" msgstr "Disabbonati" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "L'utente non ha un profilo." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Modifica immagine" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index c94c24a7bc..6527d62a3f 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:04+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:28+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4094,7 +4094,7 @@ msgstr "" "最初の [このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s) をして" "ください!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4108,7 +4108,7 @@ msgstr "" "%%%%)して、**%s** のつぶやきなどをフォローしましょう! ([もっと読む](%%%%doc." "help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4119,7 +4119,7 @@ msgstr "" "[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." "wikipedia.org/wiki/Micro-blogging) サービス。" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "%s の繰り返し" @@ -4983,6 +4983,13 @@ msgstr "作者" msgid "Favor" msgstr "お気に入り" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5162,6 +5169,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "フォローを保存できません。" + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5234,6 +5248,13 @@ msgstr "フォローを保存できません。" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7373,6 +7394,13 @@ msgstr "この利用者からのフォローを解除する" msgid "Unsubscribe" msgstr "フォロー解除" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "ユーザはプロフィールをもっていません。" + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "アバターを編集する" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 9290a8a02c..cf125941cb 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:05+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:29+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4038,7 +4038,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4047,7 +4047,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4055,7 +4055,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "" @@ -4916,6 +4916,13 @@ msgstr "ავტორი(ები)" msgid "Favor" msgstr "რჩეული" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s-მა (@%s) დაამატა თქვენი შეტყობინება თავის რჩეულებში" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5094,6 +5101,13 @@ msgstr "saveKnownGroups-სათვის არასწორი ტიპი msgid "Problem saving group inbox." msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5168,6 +5182,13 @@ msgstr "გამოწერის წაშლა ვერ მოხერხ msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ამიერიდან ყურს უგდებს თქვენს შეტყობინებებს %2$s-ზე." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7298,6 +7319,13 @@ msgstr "ამ მომხმარებლის გამოწერის msgid "Unsubscribe" msgstr "გამოწერის გაუქმება" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "მომხმარებელს პროფილი არ გააჩნია." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "ავატარის რედაქტირება" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index ed9c69574c..145f1a51a4 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:06+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:31+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4014,7 +4014,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4023,7 +4023,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4033,7 +4033,7 @@ msgstr "" "**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" "Micro-blogging) 서비스에 계정을 갖고 있습니다." -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "%s에 답신" @@ -4877,6 +4877,13 @@ msgstr "작성자" msgid "Favor" msgstr "좋아합니다" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5057,6 +5064,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "통지를 저장하는데 문제가 발생했습니다." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "새 그룹을 만들 수 없습니다." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5131,6 +5145,13 @@ msgstr "구독을 저장할 수 없습니다." msgid "Follow" msgstr "팔로우" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7189,6 +7210,13 @@ msgstr "이 사용자로부터 구독취소합니다." msgid "Unsubscribe" msgstr "구독 해제" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "이용자가 프로필을 가지고 있지 않습니다." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "아바타 편집" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 17baeffeec..248ae86b37 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:07+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4108,7 +4108,7 @@ msgstr "" "Можете да го подбуцнете корисникот %1$s или [му испратите нешто](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4122,7 +4122,7 @@ msgstr "" "register%%%%) за да можете да ги следите забелешките на **%s** и многу " "повеќе! ([Прочитајте повеќе](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4133,7 +4133,7 @@ msgstr "" "(http://mk.wikipedia.org/wiki/Микроблогирање) заснована на слободната " "програмска алатка [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Повторувања на %s" @@ -4998,6 +4998,13 @@ msgstr "Автор(и)" msgid "Favor" msgstr "Бендисај" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) бендиса Ваша забелешка" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5174,6 +5181,13 @@ msgstr "На saveKnownGroups му е уакажан грешен тип" msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Не можев да ги зачувам информациите за локалните групи." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5250,6 +5264,13 @@ msgstr "Не можам да ја избришам претплатата." msgid "Follow" msgstr "Следи" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s се зачлени во групата %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7446,6 +7467,13 @@ msgstr "Откажи претплата од овој корсиник" msgid "Unsubscribe" msgstr "Откажи ја претплатата" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Корисникот нема профил." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Уреди аватар" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 26eb32056d..3605a78e89 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:10+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:35+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4056,7 +4056,7 @@ msgstr "" "Vær den første til å [poste om dette emnet](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4069,7 +4069,7 @@ msgstr "" "[StatusNet](http://status.net/). [Bli med nå](%%%%action.register%%%%) for å " "følge **%s** og mange flere sine notiser. ([Les mer](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4080,7 +4080,7 @@ msgstr "" "no.wikipedia.org/wiki/Mikroblogg) basert på det frie programvareverktøyet " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetisjon av %s" @@ -4923,6 +4923,13 @@ msgstr "Forfatter(e)" msgid "Favor" msgstr "Favoritter" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s /@%s) la din notis til som en favoritt" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5094,6 +5101,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Problem ved lagring av gruppeinnboks." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Kunne ikke lagre lokal gruppeinformasjon." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5169,6 +5183,13 @@ msgstr "Kunne ikke slette favoritt." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s lytter nå til dine notiser på %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7338,6 +7359,13 @@ msgstr "Abonner på denne brukeren" msgid "Unsubscribe" msgstr "Abonner" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Brukeren har ingen profil." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index bf0be6d0c9..93a3239f28 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:08+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4131,7 +4131,7 @@ msgstr "" "U kunt proberen %1$s te porren of [een bericht aan die gebruiker sturen](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4145,7 +4145,7 @@ msgstr "" "abonneren op de mededelingen van **%s** en nog veel meer! [Meer lezen...](%%%" "%doc.help%%%%)" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4156,7 +4156,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Herhaald van %s" @@ -5028,6 +5028,13 @@ msgstr "Auteur(s)" msgid "Favor" msgstr "Aan favorieten toevoegen" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5212,6 +5219,13 @@ msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " "groep." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5288,6 +5302,13 @@ msgstr "Kon abonnement niet verwijderen." msgid "Follow" msgstr "Volgen" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s is lid geworden van de groep %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7493,6 +7514,13 @@ msgstr "Uitschrijven van deze gebruiker" msgid "Unsubscribe" msgstr "Abonnement opheffen" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Deze gebruiker heeft geen profiel." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Avatar bewerken" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 4469e27768..30065f00e0 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:09+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:34+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4121,7 +4121,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4130,7 +4130,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4140,7 +4140,7 @@ msgstr "" "**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Svar til %s" @@ -5002,6 +5002,14 @@ msgstr "" msgid "Favor" msgstr "Tjeneste" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "" +"Send meg ein epost når nokon legg til ein av mine notisar som favoritt." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5181,6 +5189,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Kunne ikkje lagra abonnement." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5256,6 +5271,13 @@ msgstr "Kunne ikkje lagra abonnement." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s høyrer no på notisane dine på %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7359,6 +7381,13 @@ msgstr "Fjern tinging fra denne brukaren" msgid "Unsubscribe" msgstr "Fjern tinging" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Brukaren har inga profil." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 533f037b7c..9a4e2b64de 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:11+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:36+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4077,7 +4077,7 @@ msgstr "" "Można spróbować szturchnąć użytkownika %1$s lub [wysłać mu coś](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4091,7 +4091,7 @@ msgstr "" "obserwować wpisy użytkownika **%s** i wiele więcej. ([Przeczytaj więcej](%%%%" "doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4102,7 +4102,7 @@ msgstr "" "pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Powtórzenia %s" @@ -4963,6 +4963,13 @@ msgstr "Autorzy" msgid "Favor" msgstr "Dodaj do ulubionych" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Użytkownik %s (@%s) dodał twój wpis jako ulubiony" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5141,6 +5148,13 @@ msgstr "Podano błędne dane do saveKnownGroups" msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Nie można zapisać informacji o lokalnej grupie." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5213,6 +5227,13 @@ msgstr "Nie można usunąć subskrypcji." msgid "Follow" msgstr "Obserwuj" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "Użytkownik %1$s dołączył do grupy %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7415,6 +7436,13 @@ msgstr "Zrezygnuj z subskrypcji tego użytkownika" msgid "Unsubscribe" msgstr "Zrezygnuj z subskrypcji" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Użytkownik nie posiada profilu." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Zmodyfikuj awatar" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 48ff136b50..03e01a88d4 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:12+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:36+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4086,7 +4086,7 @@ msgstr "" "Pode tentar dar um toque em %1$s ou [endereçar-lhe uma nota](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4100,7 +4100,7 @@ msgstr "" "register%%) para seguir as notas de **%s** e de muitos mais! ([Saber mais](%%" "doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4111,7 +4111,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Micro-blogging) baseado no programa de " "Software Livre [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetições de %s" @@ -4969,6 +4969,13 @@ msgstr "Autores" msgid "Favor" msgstr "Eleger como favorita" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) adicionou a sua nota às favoritas." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5145,6 +5152,13 @@ msgstr "O tipo fornecido ao método saveKnownGroups é incorrecto" msgid "Problem saving group inbox." msgstr "Problema na gravação da caixa de entrada do grupo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Não foi possível gravar a informação do grupo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5219,6 +5233,13 @@ msgstr "Não foi possível apagar a subscrição." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s está agora a ouvir as suas notas em %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7411,6 +7432,13 @@ msgstr "Deixar de subscrever este utilizador" msgid "Unsubscribe" msgstr "Abandonar" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Utilizador não tem perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Editar Avatar" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index ebee1ca5f3..fec11bd91d 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:13+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:37+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4114,7 +4114,7 @@ msgstr "" "Seja o primeiro a [publicar sobre este tópico](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4128,7 +4128,7 @@ msgstr "" "acompanhar as mensagens de **%s** e muito mais! ([Saiba mais](%%%%doc.help%%%" "%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4139,7 +4139,7 @@ msgstr "" "pt.wikipedia.org/wiki/Micro-blogging) baseado no software livre [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetição de %s" @@ -4999,6 +4999,13 @@ msgstr "Autor(es)" msgid "Favor" msgstr "Tornar favorita" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) marcou sua mensagem como favorita" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5174,6 +5181,13 @@ msgstr "O tipo fornecido ao método saveKnownGroups é incorreto" msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Não foi possível salvar a informação do grupo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5247,6 +5261,13 @@ msgstr "Não foi possível salvar a assinatura." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s agora está acompanhando suas mensagens no %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7447,6 +7468,13 @@ msgstr "Cancelar a assinatura deste usuário" msgid "Unsubscribe" msgstr "Cancelar" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "O usuário não tem perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Editar o avatar" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index ce1f90620b..e8c4ffa868 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:14+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4093,7 +4093,7 @@ msgstr "" "Вы можете попробовать «подтолкнуть» %1$s или [написать что-нибудь для них](%%%" "%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4108,7 +4108,7 @@ msgstr "" "сообщения участника **%s** и иметь доступ ко множеству других возможностей! " "([Читать далее](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4120,7 +4120,7 @@ msgstr "" "использованием свободного программного обеспечения [StatusNet](http://status." "net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Повтор за %s" @@ -4982,6 +4982,13 @@ msgstr "Автор(ы)" msgid "Favor" msgstr "Пометить" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) добавил вашу запись в число своих любимых" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5157,6 +5164,13 @@ msgstr "Для saveKnownGroups указан неверный тип" msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Не удаётся сохранить информацию о локальной группе." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5231,6 +5245,13 @@ msgstr "Не удаётся удалить подписку." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s теперь следит за вашими записями на %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7425,6 +7446,13 @@ msgstr "Отписаться от этого пользователя" msgid "Unsubscribe" msgstr "Отписаться" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "У пользователя нет профиля." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Изменить аватару" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 8d976f2619..6ba6689a93 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-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3868,7 +3868,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3877,7 +3877,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3885,7 +3885,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "" @@ -4693,6 +4693,13 @@ msgstr "" msgid "Favor" msgstr "" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -4862,6 +4869,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "" + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -4933,6 +4947,13 @@ msgstr "" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, php-format +msgid "%1$s is now following %2$s." +msgstr "" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -6943,6 +6964,13 @@ msgstr "" msgid "Unsubscribe" msgstr "" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "" + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index c277294c6e..48afeedb44 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:15+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:39+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4074,7 +4074,7 @@ msgstr "" "Var den första att [skriva i detta ämne](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4087,7 +4087,7 @@ msgstr "" "[StatusNet](http://status.net/). [Gå med nu](%%%%action.register%%%%) för " "att följa **%s**s notiser och många fler! ([Läs mer](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4098,7 +4098,7 @@ msgstr "" "wikipedia.org/wiki/Mikroblogg)tjänst baserad på den fria programvaran " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Upprepning av %s" @@ -4958,6 +4958,13 @@ msgstr "Författare" msgid "Favor" msgstr "Markera som favorit" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) lade till din notis som en favorit" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5133,6 +5140,13 @@ msgstr "Dålig typ tillhandahållen saveKnownGroups" msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Kunde inte spara lokal gruppinformation." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5204,6 +5218,13 @@ msgstr "Kunde inte spara prenumeration." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s lyssnar nu på dina notiser på %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7387,6 +7408,13 @@ msgstr "Avsluta prenumerationen på denna användare" msgid "Unsubscribe" msgstr "Avsluta pren." +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Användaren har ingen profil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Redigera avatar" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 19e0a80520..1a0244b39a 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:16+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:43+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4043,7 +4043,7 @@ msgid "" msgstr "" "[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4058,7 +4058,7 @@ msgstr "" "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" "doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4068,7 +4068,7 @@ msgstr "" "ఇది %%site.name%%, స్వేచ్ఛా మృదూపకరమైన [స్టేటస్‌నెట్](http://status.net/) అనే పనిముట్టుపై " "ఆధారపడిన ఒక [మైక్రో-బ్లాగింగు](http://en.wikipedia.org/wiki/Micro-blogging) సేవ." -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "%s యొక్క పునరావృతం" @@ -4902,6 +4902,13 @@ msgstr "రచయిత(లు)" msgid "Favor" msgstr "ఇష్టపడు" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) మీ నోటీసుని ఇష్టపడ్డారు" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5075,6 +5082,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5148,6 +5162,13 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7290,6 +7311,13 @@ msgstr "ఈ వాడుకరి నుండి చందామాను" msgid "Unsubscribe" msgstr "చందామాను" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "అవతారాన్ని మార్చు" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index a8d4774fb9..07dbdd66cf 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:17+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:44+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4020,7 +4020,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4029,7 +4029,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4037,7 +4037,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "%s için cevaplar" @@ -4888,6 +4888,13 @@ msgstr "" msgid "Favor" msgstr "" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5065,6 +5072,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluştu." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Profil kaydedilemedi." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5138,6 +5152,13 @@ msgstr "Yeni abonelik eklenemedi." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7224,6 +7245,13 @@ msgstr "Bize o profili yollamadınız" msgid "Unsubscribe" msgstr "Aboneliği sonlandır" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Kullanıcının profili yok." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 52b750ce89..b5abed952f 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:18+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4090,7 +4090,7 @@ msgstr "" "Ви можете «розштовхати» %1$s або [щось йому написати](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4104,7 +4104,7 @@ msgstr "" "register%%%%) зараз і слідкуйте за дописами **%s**, також на вас чекає " "багато іншого! ([Дізнатися більше](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4115,7 +4115,7 @@ msgstr "" "(http://uk.wikipedia.org/wiki/Мікроблогінг), який працює на вільному " "програмному забезпеченні [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Повторення за %s" @@ -4977,6 +4977,13 @@ msgstr "Автор(и)" msgid "Favor" msgstr "Обрати" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) додав(ла) ваш допис обраних" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5152,6 +5159,13 @@ msgstr "Задається невірний тип для saveKnownGroups" msgid "Problem saving group inbox." msgstr "Проблема при збереженні вхідних дописів спільноти." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Не вдалося зберегти інформацію про локальну спільноту." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5224,6 +5238,13 @@ msgstr "Не вдалося видалити підписку." msgid "Follow" msgstr "Слідкувати" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s долучився до спільноти %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7420,6 +7441,13 @@ msgstr "Відписатись від цього користувача" msgid "Unsubscribe" msgstr "Відписатись" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Користувач не має профілю." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Аватара" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 3fdee114cb..9699f1b2e2 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Core to Simplified Chinese (‪中文(简体)‬) # Expored from translatewiki.net # +# Author: Brion # Author: Chenxiaoqino # Author: Shizhao # Author: Sweeite012f @@ -13,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:19+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:46+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 (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3981,7 +3982,7 @@ msgstr "" "你可以试着呼叫%1$s或给他们 [发一些消息](%%%%action.newnotice%%%%?" "status_textarea=%2$s)。" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3994,7 +3995,7 @@ msgstr "" "E5%BE%AE%E5%8D%9A%E5%AE%A2)服务。[现在加入](%%%%action.register%%%%)并关注**%" "s**的消息和享受更多乐趣! ([阅读更多](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4005,7 +4006,7 @@ msgstr "" "[StatusNet](http://status.net/)的[微博客](http://zh.wikipedia.org/zh-hans/%" "E5%BE%AE%E5%8D%9A%E5%AE%A2)。" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "%s 的转发" @@ -4832,6 +4833,13 @@ msgstr "作者" msgid "Favor" msgstr "收藏" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) 收藏了你的消息" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5002,6 +5010,13 @@ msgstr "对 saveKnownGroups 提供的类型无效" msgid "Problem saving group inbox." msgstr "保存小组收件箱时出错。" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "无法保存本地小组信息。" + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5073,6 +5088,13 @@ msgstr "无法取消关注。" msgid "Follow" msgstr "关注" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s加入了%2$s小组。" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7231,6 +7253,13 @@ msgstr "取消关注这个用户" msgid "Unsubscribe" msgstr "取消关注" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "用户没有个人信息。" + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "编辑头像" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..5af023356b --- /dev/null +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:48+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Kefluniadur AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Plugin evit ouzhpennañ Google Adsense da lec'hiennoù StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Arventennoù Adsense evit al lec'hienn StatusNet-mañ." + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Skouergornek" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Enrollañ" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..e79a47c26b --- /dev/null +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -0,0 +1,102 @@ +# Translation of StatusNet - Adsense to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:48+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Pagkakaayos ng AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "" +"Pampasak upang maidagdag ang Adsense ng Google sa mga sityo ng StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Mga katakdaan ng Adsense para sa sityong ito ng StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ID ng kliyente" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID ng kliyente ng Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL ng panitik ng anunsyo" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL ng panitik (mas masulong)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Hindi kalakihang parihaba" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Kodigo ng puwang ng hindi kalakihang parihaba" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Parihaba" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Kodigo ng puwang ng parihaba" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Pangunahing-pisara" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Kodigo ng puwang ng pangunahing-pisara" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Tukud-langit" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Kodigo ng puwang ng maluwang na tukud-langit" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Sagipin" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Sagipin ang mga katakdaan ng AdSense" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index ff07f17d7b..5f7a9ccc94 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,31 +8,26 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+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" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +msgid "Favored" +msgstr "" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "" #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 8b91051a08..49d56e34dd 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:22+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "marcado como favorito una vez" -msgstr[1] "marcado como favorito %d veces" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "marcado como favorito una vez" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "No se pudo crear sesión de usuario anónimo." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Permitir a usuarios anónimos marcar mensajes como favoritos." diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index eb0ef34b94..008f2c0da6 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:22+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "favorite un vice" -msgstr[1] "favorite %d vices" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "favorite un vice" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "Non poteva crear session de usator anonyme." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Permitter a usatores anonyme de favorir notas." diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index c7d0157fe4..ef63f13673 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "бендисано еднаш" -msgstr[1] "бендисано %d пати" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "бендисано еднаш" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "Не можев да создадам анонимна корисничка сесија." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Дозволи анонимни корисници да бендисуваат забелешки." diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index e729adefb8..50718382ad 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,34 +10,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:49+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-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "één keer als favoriet aangemerkt" -msgstr[1] "%d keer als favoriet aangemerkt" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "één keer als favoriet aangemerkt" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "Het was niet mogelijk een anonieme gebruikerssessie aan te maken." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Staat anonieme gebruikers toe mededelingen als favoriet aan te merken." diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 57497d2816..269be0b3b3 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,36 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\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" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "обране один раз" -msgstr[1] "обране %d рази" -msgstr[2] "обране %d разів" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "обране один раз" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "Не вдалося створити сесію анонімного користувача." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Дозволити анонімнім користувачам позначати повідомлення як обрані." diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..3f81eb72c7 --- /dev/null +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:55+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Utvidelse for å sjekke innsendte notiser med blogspam.net." diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..0fbdbf8cab --- /dev/null +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlogspamNet to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:55+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-blogspamnet\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" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Плагин для проверки отправленных сообщений с помощью blogspam.net." diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..1ba685a7eb --- /dev/null +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:56+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:56:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Logg leser og skriver til hurtiglageret." diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..5510c728f0 --- /dev/null +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - Comet to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Utvidelse for å gjøre «sanntids»-oppdateringer med Comet/Bayeux." diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index aa193f2a7d..5ce7afe070 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 727ef3f640..fc8fc57e36 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:31+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Muestra los mensajes de contenido derecha-a-izquierda en la dirección " diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index e97cb6edab..82eaac25c1 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:31+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Affiche dans les bon sens les avis contenant du texte écrit de droite à " diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 7bb1b13403..ef9a65ec3f 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:32+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Monstra notas con scripto de dextra a sinistra in le direction correcte." diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index ea16c16276..181f569cb7 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:33+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "正しい方向で右から左へ表示される内容の通知を表示する。" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index acfee4cd59..4b6d2a46a6 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Weist Matdeelungen mat Inhalt dee vu riets not lenks geschriwwen ass an där " diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 71c9d2f7bc..53188114a0 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Ги прикажува забелешките напишани на писма од десно на лево во исправната " diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 9877ab67cf..28b689c966 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "Viser notiser med høyre-til-venstre-innhold i riktig retning." diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index c22fcdffe5..a73475ba78 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,21 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-directiondetector\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Geeft mededelingen met inhoud in een van rechts naar links geschreven " diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 3359201d17..1a41fc0a14 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-directiondetector\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" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "Правильно показывает уведомления для системы письма справа налево." diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 6b0df007a2..97955b4f27 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Nagpapakita ng mga pabatid na may nilalamang mula-kanan-pakaliwa sa tamang " diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index f52c1b4b72..1bad145bc7 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\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" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "Показує повідомлення із письмом справа наліво у правильному напрямі." diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index 2905e01f60..16e9e3a002 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "在内容方向为从右到左时,以相同的文字方向显示提醒。" diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index 09e3003814..e8fbf5d391 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -192,6 +192,13 @@ msgstr "" msgid "Incorrect username or password." msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po index 99f5a08ded..a00477dc4f 100644 --- a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/br/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:43+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:07+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -200,6 +200,13 @@ msgstr "" msgid "Incorrect username or password." msgstr "Anv implijer pe ger-tremen direizh." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s hag e vignoned" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 @@ -428,7 +435,7 @@ msgstr "" #: facebookadminpanel.php:193 msgid "Secret" -msgstr "" +msgstr "Kuzh" #: facebookadminpanel.php:194 msgid "API secret provided by Facebook" @@ -480,7 +487,7 @@ msgstr "" #: FBConnectSettings.php:145 msgctxt "BUTTON" msgid "Disconnect" -msgstr "" +msgstr "Digevrañ" #: FBConnectSettings.php:180 msgid "Couldn't delete link to Facebook." @@ -533,4 +540,4 @@ msgstr "" #. TRANS: Page title for synchronisation settings. #: facebooksettings.php:134 msgid "Sync preferences" -msgstr "" +msgstr "Penndibaboù ar c'hempredañ" diff --git a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po index 8b1ab93ca7..a0829eab16 100644 --- a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:07+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-facebook\n" @@ -220,6 +220,13 @@ msgstr "" "Nombre de usuario o contraseña incorrectos\n" "." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s y sus amistades" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po index d7fe794046..ee73eb52fe 100644 --- a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -222,6 +222,13 @@ msgstr "Erreur de serveur : impossible d’obtenir l’utilisateur !" msgid "Incorrect username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s et ses amis" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po index 7a4d4a11be..76955f6651 100644 --- a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/gl/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -204,6 +204,13 @@ msgstr "" msgid "Incorrect username or password." msgstr "Nome de usuario ou contrasinal incorrectos." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s e amigos" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po index db9e43f1dc..0cca9bf9d4 100644 --- a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/ia/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -215,6 +215,13 @@ msgstr "Error de servitor: Non poteva obtener le usator!" msgid "Incorrect username or password." msgstr "Nomine de usator o contrasigno incorrecte." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s e amicos" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po index 2c14c84812..3538cd94ed 100644 --- a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/mk/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -216,6 +216,13 @@ msgstr "Грешка во опслужувачот: Не можев да го д msgid "Incorrect username or password." msgstr "Погрешно корисничко име или лозинка." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s и пријателите" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po index 45149e2f52..283609654e 100644 --- a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nb/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-facebook\n" @@ -197,6 +197,13 @@ msgstr "Tjenerfeil: Kunne ikke hente bruker!" msgid "Incorrect username or password." msgstr "Feil brukernavn eller passord." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s og venner" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po index 40682eb931..5c675a5bbb 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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+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-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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" @@ -223,6 +223,13 @@ msgstr "Serverfout: de gebruiker kon niet geladen worden." msgid "Incorrect username or password." msgstr "De gebruikersnaam of wachtwoord is onjuist." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s en vrienden" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po index 0c9d38a56e..303c33314e 100644 --- a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+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-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-facebook\n" @@ -200,6 +200,13 @@ msgstr "" msgid "Incorrect username or password." msgstr "Nome de usuário e/ou senha incorreto(s)." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s e amigos" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po index 2099155dae..fdaf62f418 100644 --- a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/tl/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -223,6 +223,13 @@ msgstr "Kamalian ng tapaghain: Hindi makuha ang tagagamit!" msgid "Incorrect username or password." msgstr "Hindi tamang pangalan ng tagagamit o hudyat." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s at mga kaibigan" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index 7b8d8384fb..bacfa64d65 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/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-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -219,6 +219,13 @@ msgstr "Помилка сервера: не вдалося отримати ко msgid "Incorrect username or password." msgstr "Неточне ім’я або пароль." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s з друзями" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index 62ef78f369..20b5eb95bb 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-facebook\n" @@ -211,6 +211,13 @@ msgstr "服务器错误:无法获取用户。" msgid "Incorrect username or password." msgstr "用户名或密码不正确。" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s 和好友们" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..c86cfb63c9 --- /dev/null +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - GroupFavorited to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:12+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Poblek" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Kemennadennoù poblek er strollad %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 3c53391009..f35ca69141 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -46,6 +46,13 @@ msgstr "" msgid "%s friends map" msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, php-format +msgid "%1$s friends map, page %2$d" +msgstr "" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index 7a926598bf..c59ff853cf 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:19+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -42,7 +42,7 @@ msgstr "N'eus ket eus an implijer-se." #: map.php:79 msgid "User has no profile." -msgstr "" +msgstr "An implijer-mañ n'eus profil ebet dezhañ." #. TRANS: Page title. #. TRANS: %s is a user nickname. @@ -51,6 +51,13 @@ msgstr "" msgid "%s friends map" msgstr "Kartenn mignoned %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "%s gartenn, pajenn %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 8e3b8d54d7..f7a7163855 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-mapstraction\n" @@ -51,6 +51,13 @@ msgstr "Benutzer hat kein Profil." msgid "%s friends map" msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, php-format +msgid "%1$s friends map, page %2$d" +msgstr "" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index a6f8b0d935..665c091776 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+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-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-mapstraction\n" @@ -51,6 +51,13 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "%s friends map" msgstr "Kartta käyttäjän %s ystävistä" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Kartta käyttäjän %s ystävistä" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 5de819b1b7..8987740707 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -53,6 +53,13 @@ msgstr "Aucun profil ne correspond à cet utilisateur." msgid "%s friends map" msgstr "Carte des amis de %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Carte %s, page %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index 340a211146..016214c72d 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -51,6 +51,13 @@ msgstr "O usuario non ten perfil." msgid "%s friends map" msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, php-format +msgid "%1$s friends map, page %2$d" +msgstr "" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index c2fcc51b64..75b389ec3e 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -53,6 +53,13 @@ msgstr "Le usator non ha un profilo." msgid "%s friends map" msgstr "Mappa del amicos de %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Mappa de %s, pagina %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 840e337f50..19926cbbe1 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -53,6 +53,13 @@ msgstr "Корисникот нема профил." msgid "%s friends map" msgstr "Карта на пријатели на %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Карта на %s, стр. %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index f4fade52be..084ee41627 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+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-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-mapstraction\n" @@ -54,6 +54,13 @@ msgstr "Deze gebruiker heeft geen profiel." msgid "%s friends map" msgstr "Kaart van %s en vrienden" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Kaart van %s, pagina %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index da8cb7aaa0..5cb73b3e9e 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-mapstraction\n" @@ -52,6 +52,13 @@ msgstr "У пользователя нет профиля." msgid "%s friends map" msgstr "Карта друзей: %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Карта друзей: %s" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 1253cd82b1..5a029fd3a5 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -53,6 +53,13 @@ msgstr "Walang balangkas ang tagagamit." msgid "%s friends map" msgstr "%s na mapa ng mga kaibigan" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "%s na mapa, pahina %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index b10928213e..5fcbf8cf42 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -54,6 +54,13 @@ msgstr "Користувач не має профілю." msgid "%s friends map" msgstr "Мапа друзів %s." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Мапа друзів %s, сторінка %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..fc67637d1d --- /dev/null +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Meteor to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:21+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:56:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-meteor\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Kunne ikke koble til %1$s på %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Mislyktes å legge til meteormelding «%s»" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Utvidelse for å gjøre «sanntids»-oppdateringer med Comet/Bayeux." diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 6a3ac86f27..92969c6bc0 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index a2c5b823d4..24d6a637ff 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index c13b48b669..99064c2b67 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Ajoute des titres optionnels aux avis." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index ae75c1f552..5d627ef915 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Adde optional titulos a notas." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 6fe2084e63..5c135a808f 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Додава наслови на забелешките (по избор)." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index c7309d8472..df2df05452 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Legger valgfrie titler til notiser." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 6881e630ff..770c2c743c 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+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-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Voegt optioneel titels toe aan mededelingen." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index b098f20b52..ae43f0fd5c 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index fd08313022..de0726faa2 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Nagdaragdag ng maaaring wala na mga pamagat sa mga pabatid." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr " %1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index ad4445d973..1d9f00ff2a 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -27,7 +27,7 @@ msgid "Adds optional titles to notices." msgstr "Додавати до повідомлень необов’язкові заголовки." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index a55b30f4b4..a94ea84dd1 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -53,6 +53,13 @@ msgstr "" msgid "Could not set up remote group membership." msgstr "" +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -62,6 +69,13 @@ msgstr "" msgid "Leave" msgstr "" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "" @@ -715,25 +729,25 @@ msgid "Unknown PuSH feed id %s" msgstr "" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "" #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "" #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "" #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 39101b8393..79f2887939 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -58,6 +58,13 @@ msgstr "%1$s a cessé de suivre %2$s." msgid "Could not set up remote group membership." msgstr "Impossible de mettre en place l’appartenance au groupe distant." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s a cessé de suivre %2$s." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -67,6 +74,13 @@ msgstr "Échec lors de l’adhésion au groupe distant." msgid "Leave" msgstr "Sortir" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Retirer des favoris" @@ -770,13 +784,13 @@ msgid "Unknown PuSH feed id %s" msgstr "Identifiant de flux PuSH inconnu : « %s »" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Flux de sujet de concentrateur incorrect : « %s »" #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "" @@ -784,13 +798,13 @@ msgstr "" "»." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Demande d’abonnement inattendue pour le sujet invalide « %s »." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Demande de désabonnement inattendue pour le sujet invalide « %s »." diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index cd5eebd16a..53935c04c3 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -58,6 +58,13 @@ msgstr "%1$s cessava de sequer %2$s." msgid "Could not set up remote group membership." msgstr "Non poteva configurar le membrato del gruppo remote." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s cessava de sequer %2$s." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -67,6 +74,13 @@ msgstr "Falleva de facer se membro del gruppo remote." msgid "Leave" msgstr "Quitar" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Disfavorir" @@ -744,25 +758,25 @@ msgid "Unknown PuSH feed id %s" msgstr "ID de syndication PuSH %s incognite" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Syndication hub.topic \"%s\" incorrecte." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Incorrecte hub.verify_token %1$s pro %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Requesta de subscription inexpectate pro %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Requesta de cancellation de subscription inexpectate pro %s." diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index fc2e4b1e2e..fda59785e8 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -58,6 +58,13 @@ msgstr "%1$s престана да го/ја следи %2$s." msgid "Could not set up remote group membership." msgstr "Не можев да го поставам членството во далечинската група." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s престана да го/ја следи %2$s." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -67,6 +74,13 @@ msgstr "Не успеав да Ве зачленам во далечинскат msgid "Leave" msgstr "Напушти" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Откажи бендисана" @@ -747,25 +761,25 @@ msgid "Unknown PuSH feed id %s" msgstr "Непознат ID %s за PuSH-канал" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Лош hub.topic-канал „%s“." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Лош hub.verify_token %1$s за %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Неочекувано барање за претплата за %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Неочекувано барање за отпишување од претплата за %s." diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index e0c6c4aa83..6fec3ea2a2 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+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-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -62,6 +62,13 @@ msgstr "" "Het was niet mogelijk het groepslidmaatschap via een andere dienst in te " "stellen." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s volgt %2$s niet langer." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -72,6 +79,13 @@ msgstr "" msgid "Leave" msgstr "Verlaten" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Uit favorieten verwijderen" @@ -776,25 +790,25 @@ msgid "Unknown PuSH feed id %s" msgstr "Het PuSH feed-ID %s is onbekend" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Ongeldige hub.topic feed \"%s\"." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Ongeldig hub.verify_token %1$s voor %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Onverwacht abonneringsverzoek voor %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Onverwacht verzoek om abonnement op te hebben voor %s." diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 0f49a02459..3312c5e60b 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -59,6 +59,13 @@ msgstr "%1$s припинив читати ваші дописи %2$s." msgid "Could not set up remote group membership." msgstr "Не вдалося приєднатися до віддаленої спільноти." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s припинив читати ваші дописи %2$s." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -68,6 +75,13 @@ msgstr "Помилка приєднання до віддаленої спіль msgid "Leave" msgstr "Залишити" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Не обраний" @@ -758,25 +772,25 @@ msgid "Unknown PuSH feed id %s" msgstr "Веб-стрічка за протоколом PuSH має невідомий ідентифікатор %s" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "hub.topic веб-стрічки «%s» неправильний." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "hub.verify_token %1$s для %2$s неправильний." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Несподіваний запит підписки для %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Несподіваний запит щодо скасування підписки для %s." diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index 1950bc8788..0236f7f912 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:43+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-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-poweredbystatusnet\n" @@ -36,5 +36,5 @@ msgid "" "Outputs \"powered by StatusNet\" after " "site name." msgstr "" -"Voegt te tekst \"Powered by StatusNet\" " +"Voegt de tekst \"Powered by StatusNet\" " "toe na de sitenaam." diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot new file mode 100644 index 0000000000..7e3fba6338 --- /dev/null +++ b/plugins/Sitemap/locale/Sitemap.pot @@ -0,0 +1,84 @@ +# 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-10-04 22:30+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: Title for sitemap. +#: sitemapadminpanel.php:53 +msgid "Sitemap" +msgstr "" + +#. TRANS: Instructions for sitemap. +#: sitemapadminpanel.php:64 +msgid "Sitemap settings for this StatusNet site" +msgstr "" + +#. TRANS: Field label. +#: sitemapadminpanel.php:167 +msgid "Google key" +msgstr "" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:169 +msgid "Google Webmaster Tools verification key." +msgstr "" + +#. TRANS: Field label. +#: sitemapadminpanel.php:175 +msgid "Yahoo key" +msgstr "" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:177 +msgid "Yahoo! Site Explorer verification key." +msgstr "" + +#. TRANS: Field label. +#: sitemapadminpanel.php:183 +msgid "Bing key" +msgstr "" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:185 +msgid "Bing Webmaster Tools verification key." +msgstr "" + +#. TRANS: Submit button text to save sitemap settings. +#: sitemapadminpanel.php:200 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#. TRANS: Submit button title to save sitemap settings. +#: sitemapadminpanel.php:204 +msgid "Save sitemap settings." +msgstr "" + +#. TRANS: Menu item title/tooltip +#: SitemapPlugin.php:211 +msgid "Sitemap configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: SitemapPlugin.php:213 +msgctxt "MENU" +msgid "Sitemap" +msgstr "" + +#. TRANS: Plugin description. +#: SitemapPlugin.php:238 +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot new file mode 100644 index 0000000000..b374dc587c --- /dev/null +++ b/plugins/SphinxSearch/locale/SphinxSearch.pot @@ -0,0 +1,32 @@ +# 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-10-04 22:30+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: Server exception. +#: SphinxSearchPlugin.php:87 +msgid "Sphinx PHP extension must be installed." +msgstr "" + +#. TRANS: Plugin description. +#: SphinxSearchPlugin.php:118 +msgid "Plugin for Sphinx search backend." +msgstr "" + +#. TRANS: Server exception thrown when a database name cannot be identified. +#: sphinxsearch.php:96 +msgid "Sphinx search could not identify database name." +msgstr "" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..eebbcb14a1 --- /dev/null +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -0,0 +1,113 @@ +# Translation of StatusNet - UserFlag to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Profilos marcate" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Moderar" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Marcate per %1$s e %2$d altere" +msgstr[1] "Marcate per %1$s e %2$d alteres" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Marcate per %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "Le marca ja existe." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Marcate pro revision" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Marcate" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Iste plugin permitte marcar profilos pro revision e revider profilos marcate." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Non poteva rader marcas pro profilo \"%s\"." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Marcas radite" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Radite" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Rader tote le marcas" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Marcar profilo pro revision." + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Non poteva marcar profilo \"%d\" pro revision." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Rader" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Rader tote le marcas" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..7b4c51d81c --- /dev/null +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -0,0 +1,114 @@ +# Translation of StatusNet - UserFlag to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Означени профили" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Модерирај" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Означено од %1$s и уште %2$d друг" +msgstr[1] "Означено од %1$s и уште %2$d други" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Означено од %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "Ознаката веќе постои." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Означено за преглед" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Означено" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Овој приклучок овозможува означување на профили за преглед и прегледување на " +"означени профили." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Не можев да ги отстранам ознаките за профилот „%s“." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Ознаките се отстранети" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Отстрането" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Означи" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Означи профил за преглед." + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Не можев да го означам профилот „%d“ за преглед." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Отстрани" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Отстрани ги сите ознаки" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..207e9a944f --- /dev/null +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -0,0 +1,115 @@ +# Translation of StatusNet - UserFlag to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:03+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-03 21:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); 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-userflag\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Gemarkeerde profielen" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Modereren" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Gemarkeerd door %1$s en %2$d andere" +msgstr[1] "Gemarkeerd door %1$s en %2$d anderen" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Gemarkeerd door %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "De markering bestaat al." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Gemarkeerd voor controle" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Gemarkeerd" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Deze plugin maakt het markeren van profielen voor controle mogelijk en de " +"controle van gemarkeerde profielen." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "" +"Het was niet mogelijk de markeringen van het profiel \"%s\" te verwijderen." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Markeringen verwijderd" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Verwijderd" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Markeren" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Profiel voor controle markeren" + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Het was niet mogelijk het profiel \"%d\" voor controle te markeren." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Wissen" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Alle markeringen wissen" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..7712d6cfe9 --- /dev/null +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -0,0 +1,116 @@ +# Translation of StatusNet - UserFlag to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-userflag\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" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Відмічені профілі" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Модерувати" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Відмічено %1$s та ще %2$d користувачем" +msgstr[1] "Відмічено %1$s та ще %2$d користувачами" +msgstr[2] "Відмічено %1$s та ще %2$d користувачами" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Відмічено %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "Відмітка вже стоїть." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Відмічені для розгляду" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Відмічені" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Цей додаток дозволяє відмічати профілі користувачів для подальшого розгляду " +"та аналізу відмічених профілів." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Не можу зняти позначки для профілю «%s»." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Позначки знято" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Знято" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Відмітити" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Відмітити профіль для розгляду." + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Не вдалося відмітити профіль «%d» для розгляду." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Зняти" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Зняти всі позначки" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 0de756d587..225b6b70a6 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -241,11 +241,11 @@ msgstr "Attende..." #: lib/yammerprogressform.php:146 msgid "Reset import state" -msgstr "" +msgstr "Reinitialisar stato de importation" #: lib/yammerprogressform.php:151 msgid "Pause import" -msgstr "" +msgstr "Pausar importation" #: lib/yammerprogressform.php:160 #, php-format @@ -258,7 +258,7 @@ msgstr "Pausate" #: lib/yammerprogressform.php:165 msgid "Abort import" -msgstr "" +msgstr "Abortar importation" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 0d4ba086d1..f57422b1a3 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -250,11 +250,11 @@ msgstr "Очікування..." #: lib/yammerprogressform.php:146 msgid "Reset import state" -msgstr "" +msgstr "Перезапустити імпорт" #: lib/yammerprogressform.php:151 msgid "Pause import" -msgstr "" +msgstr "Призупинити імпорт" #: lib/yammerprogressform.php:160 #, php-format @@ -267,7 +267,7 @@ msgstr "Призупинено" #: lib/yammerprogressform.php:165 msgid "Abort import" -msgstr "" +msgstr "Перервати імпорт" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" From 1ad8c67843d5d81621012c9c2cbe7425cf6f5828 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Wed, 6 Oct 2010 16:30:43 -0400 Subject: [PATCH 024/112] A few quick theme fixes, mostly for IE. Full update to follow. --- theme/clean/css/display.css | 3 +- theme/clean/css/ie.css | 62 ++++++++++++++++++++++++++++++ theme/rebase/css/display.css | 1 + theme/rebase/css/ie.css | 5 +++ theme/shiny/css/display.css | 3 +- theme/shiny/css/ie.css | 67 ++++++++++++++++++++++++++++++++- theme/shiny/images/wrap_bg.png | Bin 0 -> 111 bytes 7 files changed, 137 insertions(+), 4 deletions(-) create mode 100644 theme/clean/css/ie.css create mode 100644 theme/shiny/images/wrap_bg.png diff --git a/theme/clean/css/display.css b/theme/clean/css/display.css index be72993b55..260ee5926a 100644 --- a/theme/clean/css/display.css +++ b/theme/clean/css/display.css @@ -117,7 +117,8 @@ address { top: 74px; right:0; height: 2.4em; - width: 106px; + width: 96px; + right: 10px; } #core { diff --git a/theme/clean/css/ie.css b/theme/clean/css/ie.css new file mode 100644 index 0000000000..ede8f078ad --- /dev/null +++ b/theme/clean/css/ie.css @@ -0,0 +1,62 @@ +/* IE specific styles */ + +/* base theme overrides */ + +input.checkbox, +input.radio { +top:0; +} +.form_notice textarea { + width: 364px; +} +.form_notice .form_note + label { +position:absolute; +top:25px; +left:83%; +text-indent:-9999px; +height:16px; +width:16px; +display:block; + top: 31px; + right: 88px; +} +.form_notice #notice_action-submit { + width: 96px; + max-width: 96px; +} +.form_notice #notice_data-attach_selected, +.form_notice #notice_data-geo_selected { +width:78.75%; +} +.form_notice #notice_data-attach_selected button, +.form_notice #notice_data-geo_selected button { +padding:0 4px; +} +.notice-options input.submit { +font-size:0; +text-align:right; +text-indent:0; +} +.notice div.entry-content .timestamp a { +margin-right:4px; +} +.entity_profile { +width:64%; +} +.notice { +z-index:1; +} +.notice:hover { +z-index:9999; +} +.notice .thumbnail img { +z-index:9999; +} + +.form_settings fieldset fieldset legend { +line-height:auto; +} + +.form_notice #notice_data-attach { +filter: alpha(opacity=0); +} diff --git a/theme/rebase/css/display.css b/theme/rebase/css/display.css index bc0b5a4f27..b532be5d03 100644 --- a/theme/rebase/css/display.css +++ b/theme/rebase/css/display.css @@ -196,6 +196,7 @@ address .poweredby { width: 485px; height: 63px; padding-bottom: 15px; + z-index: 9; } .form_notice label[for=notice_data-attach], diff --git a/theme/rebase/css/ie.css b/theme/rebase/css/ie.css index 48b5cd6af7..88985efb74 100644 --- a/theme/rebase/css/ie.css +++ b/theme/rebase/css/ie.css @@ -58,3 +58,8 @@ z-index:9999; .form_settings fieldset fieldset legend { line-height:auto; } + + +.form_notice #notice_data-attach { +filter: alpha(opacity=0); +} diff --git a/theme/shiny/css/display.css b/theme/shiny/css/display.css index 5b51b530dc..ec98a049c0 100644 --- a/theme/shiny/css/display.css +++ b/theme/shiny/css/display.css @@ -209,7 +209,8 @@ address { top: 74px; right:0; height: 2.4em; - width: 106px; + width: 96px; + right: 10px; } #content { diff --git a/theme/shiny/css/ie.css b/theme/shiny/css/ie.css index ca6c09d44e..3c8e2230d5 100644 --- a/theme/shiny/css/ie.css +++ b/theme/shiny/css/ie.css @@ -1,9 +1,72 @@ /* IE specific styles */ +/* IE specific styles */ + +/* base theme overrides */ + +input.checkbox, +input.radio { +top:0; +} +.form_notice textarea { + width: 374px; +} +.form_notice .form_note + label { +position:absolute; +top:25px; +left:83%; +text-indent:-9999px; +height:16px; +width:16px; +display:block; + top: 31px; + right: 88px; +} +.form_notice #notice_action-submit { + width: 96px; + max-width: 96px; +} +.form_notice #notice_data-attach_selected, +.form_notice #notice_data-geo_selected { +width:78.75%; +} +.form_notice #notice_data-attach_selected button, +.form_notice #notice_data-geo_selected button { +padding:0 4px; +} +.notice-options input.submit { +font-size:0; +text-align:right; +text-indent:0; +} +.notice div.entry-content .timestamp a { +margin-right:4px; +} +.entity_profile { +width:64%; +} +.notice { +z-index:1; +} +.notice:hover { +z-index:9999; +} +.notice .thumbnail img { +z-index:9999; +} + +.form_settings fieldset fieldset legend { +line-height:auto; +} + +.form_notice #notice_data-attach { +filter: alpha(opacity=0); +} + #wrap { - background-color: #c9c9c9; + background: url(../images/wrap_bg.png) repeat top left; } #aside_primary .section { - background-color: #c9c9c9; + background: url(../images/wrap_bg.png) repeat top left; } diff --git a/theme/shiny/images/wrap_bg.png b/theme/shiny/images/wrap_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9e4eceeb91ac654828a5d56c47527c6fdaabf3 GIT binary patch literal 111 zcmeAS@N?(olHy`uVBq!ia0vp^k|4~%1|*NXY)uAIjKx9jP7LeL$-D$|G(BA$Lp+Wr x+f@Dvv1RUM6lRt^utIh5w4NxVtdmF#9tKNOX8vg7H6WuIJYD@<);T3K0RYcI9yI^} literal 0 HcmV?d00001 From a54991797dc310bbdc7571f999dd006d8405a49e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 23 Sep 2010 16:00:03 -0700 Subject: [PATCH 025/112] Upgrade OAuth.php to the latest version. --- extlib/OAuth.php | 954 ++++++++++++++++++++++++++--------------------- 1 file changed, 522 insertions(+), 432 deletions(-) diff --git a/extlib/OAuth.php b/extlib/OAuth.php index 04984d5fa0..e9c4bdfaec 100644 --- a/extlib/OAuth.php +++ b/extlib/OAuth.php @@ -3,26 +3,26 @@ /* Generic exception class */ -class OAuthException extends Exception {/*{{{*/ +class OAuthException extends Exception { // pass -}/*}}}*/ +} -class OAuthConsumer {/*{{{*/ +class OAuthConsumer { public $key; public $secret; - function __construct($key, $secret, $callback_url=NULL) {/*{{{*/ + function __construct($key, $secret, $callback_url=NULL) { $this->key = $key; $this->secret = $secret; $this->callback_url = $callback_url; - }/*}}}*/ + } - function __toString() {/*{{{*/ + function __toString() { return "OAuthConsumer[key=$this->key,secret=$this->secret]"; - }/*}}}*/ -}/*}}}*/ + } +} -class OAuthToken {/*{{{*/ +class OAuthToken { // access tokens and request tokens public $key; public $secret; @@ -31,56 +31,77 @@ class OAuthToken {/*{{{*/ * key = the token * secret = the token secret */ - function __construct($key, $secret) {/*{{{*/ + function __construct($key, $secret) { $this->key = $key; $this->secret = $secret; - }/*}}}*/ + } /** * generates the basic string serialization of a token that a server * would respond to request_token and access_token calls with */ - function to_string() {/*{{{*/ - return "oauth_token=" . OAuthUtil::urlencode_rfc3986($this->key) . - "&oauth_token_secret=" . OAuthUtil::urlencode_rfc3986($this->secret); - }/*}}}*/ + function to_string() { + return "oauth_token=" . + OAuthUtil::urlencode_rfc3986($this->key) . + "&oauth_token_secret=" . + OAuthUtil::urlencode_rfc3986($this->secret); + } - function __toString() {/*{{{*/ + function __toString() { return $this->to_string(); - }/*}}}*/ -}/*}}}*/ + } +} -class OAuthSignatureMethod {/*{{{*/ - public function check_signature(&$request, $consumer, $token, $signature) { +/** + * A class for implementing a Signature Method + * See section 9 ("Signing Requests") in the spec + */ +abstract class OAuthSignatureMethod { + /** + * Needs to return the name of the Signature Method (ie HMAC-SHA1) + * @return string + */ + abstract public function get_name(); + + /** + * Build up the signature + * NOTE: The output of this function MUST NOT be urlencoded. + * the encoding is handled in OAuthRequest when the final + * request is serialized + * @param OAuthRequest $request + * @param OAuthConsumer $consumer + * @param OAuthToken $token + * @return string + */ + abstract public function build_signature($request, $consumer, $token); + + /** + * Verifies that a given signature is correct + * @param OAuthRequest $request + * @param OAuthConsumer $consumer + * @param OAuthToken $token + * @param string $signature + * @return bool + */ + public function check_signature($request, $consumer, $token, $signature) { $built = $this->build_signature($request, $consumer, $token); return $built == $signature; - - // Check for zero length, although unlikely here - if (strlen($built) == 0 || strlen($signature) == 0) { - return false; - } - - if (strlen($built) != strlen($signature)) { - return false; - } - - $result = 0; - - // Avoid a timing leak with a (hopefully) time insensitive compare - for ($i = 0; $i < strlen($signature); $i++) { - $result |= ord($built{$i}) ^ ord($signature{$i}); - } - - return $result == 0; } -}/*}}}*/ +} -class OAuthSignatureMethod_HMAC_SHA1 extends OAuthSignatureMethod {/*{{{*/ - function get_name() {/*{{{*/ +/** + * The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104] + * where the Signature Base String is the text and the key is the concatenated values (each first + * encoded per Parameter Encoding) of the Consumer Secret and Token Secret, separated by an '&' + * character (ASCII code 38) even if empty. + * - Chapter 9.2 ("HMAC-SHA1") + */ +class OAuthSignatureMethod_HMAC_SHA1 extends OAuthSignatureMethod { + function get_name() { return "HMAC-SHA1"; - }/*}}}*/ + } - public function build_signature($request, $consumer, $token) {/*{{{*/ + public function build_signature($request, $consumer, $token) { $base_string = $request->get_signature_base_string(); $request->base_string = $base_string; @@ -92,61 +113,74 @@ class OAuthSignatureMethod_HMAC_SHA1 extends OAuthSignatureMethod {/*{{{*/ $key_parts = OAuthUtil::urlencode_rfc3986($key_parts); $key = implode('&', $key_parts); - return base64_encode( hash_hmac('sha1', $base_string, $key, true)); - }/*}}}*/ -}/*}}}*/ + return base64_encode(hash_hmac('sha1', $base_string, $key, true)); + } +} -class OAuthSignatureMethod_PLAINTEXT extends OAuthSignatureMethod {/*{{{*/ - public function get_name() {/*{{{*/ +/** + * The PLAINTEXT method does not provide any security protection and SHOULD only be used + * over a secure channel such as HTTPS. It does not use the Signature Base String. + * - Chapter 9.4 ("PLAINTEXT") + */ +class OAuthSignatureMethod_PLAINTEXT extends OAuthSignatureMethod { + public function get_name() { return "PLAINTEXT"; - }/*}}}*/ + } - public function build_signature($request, $consumer, $token) {/*{{{*/ - $sig = array( - OAuthUtil::urlencode_rfc3986($consumer->secret) + /** + * oauth_signature is set to the concatenated encoded values of the Consumer Secret and + * Token Secret, separated by a '&' character (ASCII code 38), even if either secret is + * empty. The result MUST be encoded again. + * - Chapter 9.4.1 ("Generating Signatures") + * + * Please note that the second encoding MUST NOT happen in the SignatureMethod, as + * OAuthRequest handles this! + */ + public function build_signature($request, $consumer, $token) { + $key_parts = array( + $consumer->secret, + ($token) ? $token->secret : "" ); - if ($token) { - array_push($sig, OAuthUtil::urlencode_rfc3986($token->secret)); - } else { - array_push($sig, ''); - } + $key_parts = OAuthUtil::urlencode_rfc3986($key_parts); + $key = implode('&', $key_parts); + $request->base_string = $key; - $raw = implode("&", $sig); - // for debug purposes - $request->base_string = $raw; + return $key; + } +} - return OAuthUtil::urlencode_rfc3986($raw); - }/*}}}*/ -}/*}}}*/ - -class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod {/*{{{*/ - public function get_name() {/*{{{*/ +/** + * The RSA-SHA1 signature method uses the RSASSA-PKCS1-v1_5 signature algorithm as defined in + * [RFC3447] section 8.2 (more simply known as PKCS#1), using SHA-1 as the hash function for + * EMSA-PKCS1-v1_5. It is assumed that the Consumer has provided its RSA public key in a + * verified way to the Service Provider, in a manner which is beyond the scope of this + * specification. + * - Chapter 9.3 ("RSA-SHA1") + */ +abstract class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod { + public function get_name() { return "RSA-SHA1"; - }/*}}}*/ + } - protected function fetch_public_cert(&$request) {/*{{{*/ - // not implemented yet, ideas are: - // (1) do a lookup in a table of trusted certs keyed off of consumer - // (2) fetch via http using a url provided by the requester - // (3) some sort of specific discovery code based on request - // - // either way should return a string representation of the certificate - throw Exception("fetch_public_cert not implemented"); - }/*}}}*/ + // Up to the SP to implement this lookup of keys. Possible ideas are: + // (1) do a lookup in a table of trusted certs keyed off of consumer + // (2) fetch via http using a url provided by the requester + // (3) some sort of specific discovery code based on request + // + // Either way should return a string representation of the certificate + protected abstract function fetch_public_cert(&$request); - protected function fetch_private_cert(&$request) {/*{{{*/ - // not implemented yet, ideas are: - // (1) do a lookup in a table of trusted certs keyed off of consumer - // - // either way should return a string representation of the certificate - throw Exception("fetch_private_cert not implemented"); - }/*}}}*/ + // Up to the SP to implement this lookup of keys. Possible ideas are: + // (1) do a lookup in a table of trusted certs keyed off of consumer + // + // Either way should return a string representation of the certificate + protected abstract function fetch_private_cert(&$request); - public function build_signature(&$request, $consumer, $token) {/*{{{*/ + public function build_signature($request, $consumer, $token) { $base_string = $request->get_signature_base_string(); $request->base_string = $base_string; - + // Fetch the private key cert based on the request $cert = $this->fetch_private_cert($request); @@ -154,19 +188,19 @@ class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod {/*{{{*/ $privatekeyid = openssl_get_privatekey($cert); // Sign using the key - $ok = openssl_sign($base_string, $signature, $privatekeyid); + $ok = openssl_sign($base_string, $signature, $privatekeyid); // Release the key resource openssl_free_key($privatekeyid); - - return base64_encode($signature); - } /*}}}*/ - public function check_signature(&$request, $consumer, $token, $signature) {/*{{{*/ + return base64_encode($signature); + } + + public function check_signature($request, $consumer, $token, $signature) { $decoded_sig = base64_decode($signature); $base_string = $request->get_signature_base_string(); - + // Fetch the public key cert based on the request $cert = $this->fetch_public_cert($request); @@ -174,143 +208,145 @@ class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod {/*{{{*/ $publickeyid = openssl_get_publickey($cert); // Check the computed signature against the one passed in the query - $ok = openssl_verify($base_string, $decoded_sig, $publickeyid); + $ok = openssl_verify($base_string, $decoded_sig, $publickeyid); // Release the key resource openssl_free_key($publickeyid); - - return $ok == 1; - } /*}}}*/ -}/*}}}*/ -class OAuthRequest {/*{{{*/ - private $parameters; - private $http_method; - private $http_url; + return $ok == 1; + } +} + +class OAuthRequest { + protected $parameters; + protected $http_method; + protected $http_url; // for debug purposes public $base_string; public static $version = '1.0'; + public static $POST_INPUT = 'php://input'; - function __construct($http_method, $http_url, $parameters=NULL) {/*{{{*/ - @$parameters or $parameters = array(); + function __construct($http_method, $http_url, $parameters=NULL) { + $parameters = ($parameters) ? $parameters : array(); + $parameters = array_merge( OAuthUtil::parse_parameters(parse_url($http_url, PHP_URL_QUERY)), $parameters); $this->parameters = $parameters; $this->http_method = $http_method; $this->http_url = $http_url; - }/*}}}*/ + } /** * attempt to build up a request from what was passed to the server */ - public static function from_request($http_method=NULL, $http_url=NULL, $parameters=NULL) {/*{{{*/ - $scheme = (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on") ? 'http' : 'https'; - @$http_url or $http_url = $scheme . '://' . $_SERVER['HTTP_HOST'] . ':' . $_SERVER['SERVER_PORT'] . $_SERVER['REQUEST_URI']; - @$http_method or $http_method = $_SERVER['REQUEST_METHOD']; - - $request_headers = OAuthRequest::get_headers(); + public static function from_request($http_method=NULL, $http_url=NULL, $parameters=NULL) { + $scheme = (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on") + ? 'http' + : 'https'; + $http_url = ($http_url) ? $http_url : $scheme . + '://' . $_SERVER['HTTP_HOST'] . + ':' . + $_SERVER['SERVER_PORT'] . + $_SERVER['REQUEST_URI']; + $http_method = ($http_method) ? $http_method : $_SERVER['REQUEST_METHOD']; - // let the library user override things however they'd like, if they know - // which parameters to use then go for it, for example XMLRPC might want to - // do this - if ($parameters) { - $req = new OAuthRequest($http_method, $http_url, $parameters); - } else { - // collect request parameters from query string (GET) and post-data (POST) if appropriate (note: POST vars have priority) - $req_parameters = $_GET; - if ($http_method == "POST" && - ( @strstr($request_headers["Content-Type"], "application/x-www-form-urlencoded") || @strstr($_ENV["CONTENT_TYPE"], "application/x-www-form-urlencoded") )) { - $req_parameters = array_merge($req_parameters, $_POST); + // We weren't handed any parameters, so let's find the ones relevant to + // this request. + // If you run XML-RPC or similar you should use this to provide your own + // parsed parameter-list + if (!$parameters) { + // Find request headers + $request_headers = OAuthUtil::get_headers(); + + // Parse the query-string to find GET parameters + $parameters = OAuthUtil::parse_parameters($_SERVER['QUERY_STRING']); + + // It's a POST request of the proper content-type, so parse POST + // parameters and add those overriding any duplicates from GET + if ($http_method == "POST" + && isset($request_headers['Content-Type']) + && strstr($request_headers['Content-Type'], + 'application/x-www-form-urlencoded') + ) { + $post_data = OAuthUtil::parse_parameters( + file_get_contents(self::$POST_INPUT) + ); + $parameters = array_merge($parameters, $post_data); + } + + // We have a Authorization-header with OAuth data. Parse the header + // and add those overriding any duplicates from GET or POST + if (isset($request_headers['Authorization']) && substr($request_headers['Authorization'], 0, 6) == 'OAuth ') { + $header_parameters = OAuthUtil::split_header( + $request_headers['Authorization'] + ); + $parameters = array_merge($parameters, $header_parameters); } - // next check for the auth header, we need to do some extra stuff - // if that is the case, namely suck in the parameters from GET or POST - // so that we can include them in the signature - if (@substr($request_headers['Authorization'], 0, 6) == "OAuth ") { - $header_parameters = OAuthRequest::split_header($request_headers['Authorization']); - $parameters = array_merge($req_parameters, $header_parameters); - $req = new OAuthRequest($http_method, $http_url, $parameters); - } else $req = new OAuthRequest($http_method, $http_url, $req_parameters); } - return $req; - }/*}}}*/ + return new OAuthRequest($http_method, $http_url, $parameters); + } /** * pretty much a helper function to set up the request */ - public static function from_consumer_and_token($consumer, $token, $http_method, $http_url, $parameters=NULL) {/*{{{*/ - @$parameters or $parameters = array(); + public static function from_consumer_and_token($consumer, $token, $http_method, $http_url, $parameters=NULL) { + $parameters = ($parameters) ? $parameters : array(); $defaults = array("oauth_version" => OAuthRequest::$version, "oauth_nonce" => OAuthRequest::generate_nonce(), "oauth_timestamp" => OAuthRequest::generate_timestamp(), "oauth_consumer_key" => $consumer->key); + if ($token) + $defaults['oauth_token'] = $token->key; + $parameters = array_merge($defaults, $parameters); - if ($token) { - $parameters['oauth_token'] = $token->key; - } return new OAuthRequest($http_method, $http_url, $parameters); - }/*}}}*/ + } - public function set_parameter($name, $value) {/*{{{*/ - $this->parameters[$name] = $value; - }/*}}}*/ + public function set_parameter($name, $value, $allow_duplicates = true) { + if ($allow_duplicates && isset($this->parameters[$name])) { + // We have already added parameter(s) with this name, so add to the list + if (is_scalar($this->parameters[$name])) { + // This is the first duplicate, so transform scalar (string) + // into an array so we can add the duplicates + $this->parameters[$name] = array($this->parameters[$name]); + } - public function get_parameter($name) {/*{{{*/ + $this->parameters[$name][] = $value; + } else { + $this->parameters[$name] = $value; + } + } + + public function get_parameter($name) { return isset($this->parameters[$name]) ? $this->parameters[$name] : null; - }/*}}}*/ + } - public function get_parameters() {/*{{{*/ + public function get_parameters() { return $this->parameters; - }/*}}}*/ + } + + public function unset_parameter($name) { + unset($this->parameters[$name]); + } /** - * Returns the normalized parameters of the request - * - * This will be all (except oauth_signature) parameters, - * sorted first by key, and if duplicate keys, then by - * value. - * - * The returned string will be all the key=value pairs - * concated by &. - * + * The request parameters, sorted and concatenated into a normalized string. * @return string */ - public function get_signable_parameters() {/*{{{*/ + public function get_signable_parameters() { // Grab all parameters $params = $this->parameters; - + // Remove oauth_signature if present + // Ref: Spec: 9.1.1 ("The oauth_signature parameter MUST be excluded.") if (isset($params['oauth_signature'])) { unset($params['oauth_signature']); } - - // Urlencode both keys and values - $keys = OAuthUtil::urlencode_rfc3986(array_keys($params)); - $values = OAuthUtil::urlencode_rfc3986(array_values($params)); - $params = array_combine($keys, $values); - // Sort by keys (natsort) - uksort($params, 'strcmp'); - - // Generate key=value pairs - $pairs = array(); - foreach ($params as $key=>$value ) { - if (is_array($value)) { - // If the value is an array, it's because there are multiple - // with the same key, sort them, then add all the pairs - natsort($value); - foreach ($value as $v2) { - $pairs[] = $key . '=' . $v2; - } - } else { - $pairs[] = $key . '=' . $value; - } - } - - // Return the pairs, concated with & - return implode('&', $pairs); - }/*}}}*/ + return OAuthUtil::build_http_query($params); + } /** * Returns the base string of this request @@ -319,7 +355,7 @@ class OAuthRequest {/*{{{*/ * and the parameters (normalized), each urlencoded * and the concated with &. */ - public function get_signature_base_string() {/*{{{*/ + public function get_signature_base_string() { $parts = array( $this->get_normalized_http_method(), $this->get_normalized_http_url(), @@ -329,185 +365,141 @@ class OAuthRequest {/*{{{*/ $parts = OAuthUtil::urlencode_rfc3986($parts); return implode('&', $parts); - }/*}}}*/ + } /** * just uppercases the http method */ - public function get_normalized_http_method() {/*{{{*/ + public function get_normalized_http_method() { return strtoupper($this->http_method); - }/*}}}*/ + } /** * parses the url and rebuilds it to be * scheme://host/path */ - public function get_normalized_http_url() {/*{{{*/ + public function get_normalized_http_url() { $parts = parse_url($this->http_url); - $port = isset($parts['port']) ? $parts['port'] : null; - $scheme = $parts['scheme']; - $host = $parts['host']; - $path = @$parts['path']; - - $port or $port = ($scheme == 'https') ? '443' : '80'; + $scheme = (isset($parts['scheme'])) ? $parts['scheme'] : 'http'; + $port = (isset($parts['port'])) ? $parts['port'] : (($scheme == 'https') ? '443' : '80'); + $host = (isset($parts['host'])) ? $parts['host'] : ''; + $path = (isset($parts['path'])) ? $parts['path'] : ''; if (($scheme == 'https' && $port != '443') || ($scheme == 'http' && $port != '80')) { $host = "$host:$port"; } return "$scheme://$host$path"; - }/*}}}*/ + } /** * builds a url usable for a GET request */ - public function to_url() {/*{{{*/ - $out = $this->get_normalized_http_url() . "?"; - $out .= $this->to_postdata(); + public function to_url() { + $post_data = $this->to_postdata(); + $out = $this->get_normalized_http_url(); + if ($post_data) { + $out .= '?'.$post_data; + } return $out; - }/*}}}*/ + } /** * builds the data one would send in a POST request - * - * TODO(morten.fangel): - * this function might be easily replaced with http_build_query() - * and corrections for rfc3986 compatibility.. but not sure */ - public function to_postdata() {/*{{{*/ - $total = array(); - foreach ($this->parameters as $k => $v) { - if (is_array($v)) { - foreach ($v as $va) { - $total[] = OAuthUtil::urlencode_rfc3986($k) . "[]=" . OAuthUtil::urlencode_rfc3986($va); - } - } else { - $total[] = OAuthUtil::urlencode_rfc3986($k) . "=" . OAuthUtil::urlencode_rfc3986($v); - } - } - $out = implode("&", $total); - return $out; - }/*}}}*/ + public function to_postdata() { + return OAuthUtil::build_http_query($this->parameters); + } /** * builds the Authorization: header */ - public function to_header() {/*{{{*/ - $out ='Authorization: OAuth realm=""'; + public function to_header($realm=null) { + $first = true; + if($realm) { + $out = 'Authorization: OAuth realm="' . OAuthUtil::urlencode_rfc3986($realm) . '"'; + $first = false; + } else + $out = 'Authorization: OAuth'; + $total = array(); foreach ($this->parameters as $k => $v) { if (substr($k, 0, 5) != "oauth") continue; - if (is_array($v)) throw new OAuthException('Arrays not supported in headers'); - $out .= ',' . OAuthUtil::urlencode_rfc3986($k) . '="' . OAuthUtil::urlencode_rfc3986($v) . '"'; + if (is_array($v)) { + throw new OAuthException('Arrays not supported in headers'); + } + $out .= ($first) ? ' ' : ','; + $out .= OAuthUtil::urlencode_rfc3986($k) . + '="' . + OAuthUtil::urlencode_rfc3986($v) . + '"'; + $first = false; } return $out; - }/*}}}*/ + } - public function __toString() {/*{{{*/ + public function __toString() { return $this->to_url(); - }/*}}}*/ + } - public function sign_request($signature_method, $consumer, $token) {/*{{{*/ - $this->set_parameter("oauth_signature_method", $signature_method->get_name()); + public function sign_request($signature_method, $consumer, $token) { + $this->set_parameter( + "oauth_signature_method", + $signature_method->get_name(), + false + ); $signature = $this->build_signature($signature_method, $consumer, $token); - $this->set_parameter("oauth_signature", $signature); - }/*}}}*/ + $this->set_parameter("oauth_signature", $signature, false); + } - public function build_signature($signature_method, $consumer, $token) {/*{{{*/ + public function build_signature($signature_method, $consumer, $token) { $signature = $signature_method->build_signature($this, $consumer, $token); return $signature; - }/*}}}*/ + } /** * util function: current timestamp */ - private static function generate_timestamp() {/*{{{*/ + private static function generate_timestamp() { return time(); - }/*}}}*/ + } /** * util function: current nonce */ - private static function generate_nonce() {/*{{{*/ + private static function generate_nonce() { $mt = microtime(); $rand = mt_rand(); return md5($mt . $rand); // md5s look nicer than numbers - }/*}}}*/ + } +} - /** - * util function for turning the Authorization: header into - * parameters, has to do some unescaping - */ - private static function split_header($header) {/*{{{*/ - $pattern = '/(([-_a-z]*)=("([^"]*)"|([^,]*)),?)/'; - $offset = 0; - $params = array(); - while (preg_match($pattern, $header, $matches, PREG_OFFSET_CAPTURE, $offset) > 0) { - $match = $matches[0]; - $header_name = $matches[2][0]; - $header_content = (isset($matches[5])) ? $matches[5][0] : $matches[4][0]; - $params[$header_name] = OAuthUtil::urldecode_rfc3986( $header_content ); - $offset = $match[1] + strlen($match[0]); - } - - if (isset($params['realm'])) { - unset($params['realm']); - } - - return $params; - }/*}}}*/ - - /** - * helper to try to sort out headers for people who aren't running apache - */ - private static function get_headers() {/*{{{*/ - if (function_exists('apache_request_headers')) { - // we need this to get the actual Authorization: header - // because apache tends to tell us it doesn't exist - return apache_request_headers(); - } - // otherwise we don't have apache and are just going to have to hope - // that $_SERVER actually contains what we need - $out = array(); - foreach ($_SERVER as $key => $value) { - if (substr($key, 0, 5) == "HTTP_") { - // this is chaos, basically it is just there to capitalize the first - // letter of every word that is not an initial HTTP and strip HTTP - // code from przemek - $key = str_replace(" ", "-", ucwords(strtolower(str_replace("_", " ", substr($key, 5))))); - $out[$key] = $value; - } - } - return $out; - }/*}}}*/ -}/*}}}*/ - -class OAuthServer {/*{{{*/ +class OAuthServer { protected $timestamp_threshold = 300; // in seconds, five minutes - protected $version = 1.0; // hi blaine + protected $version = '1.0'; // hi blaine protected $signature_methods = array(); protected $data_store; - function __construct($data_store) {/*{{{*/ + function __construct($data_store) { $this->data_store = $data_store; - }/*}}}*/ + } + + public function add_signature_method($signature_method) { + $this->signature_methods[$signature_method->get_name()] = + $signature_method; + } - public function add_signature_method($signature_method) {/*{{{*/ - $this->signature_methods[$signature_method->get_name()] = - $signature_method; - }/*}}}*/ - // high level functions /** * process a request_token request * returns the request token on success */ - public function fetch_request_token(&$request) {/*{{{*/ + public function fetch_request_token(&$request) { $this->get_version($request); $consumer = $this->get_consumer($request); @@ -517,16 +509,18 @@ class OAuthServer {/*{{{*/ $this->check_signature($request, $consumer, $token); - $new_token = $this->data_store->new_request_token($consumer); + // Rev A change + $callback = $request->get_parameter('oauth_callback'); + $new_token = $this->data_store->new_request_token($consumer, $callback); return $new_token; - }/*}}}*/ + } /** * process an access_token request * returns the access token on success */ - public function fetch_access_token(&$request) {/*{{{*/ + public function fetch_access_token(&$request) { $this->get_version($request); $consumer = $this->get_consumer($request); @@ -534,63 +528,76 @@ class OAuthServer {/*{{{*/ // requires authorized request token $token = $this->get_token($request, $consumer, "request"); - $this->check_signature($request, $consumer, $token); - $new_token = $this->data_store->new_access_token($token, $consumer); + // Rev A change + $verifier = $request->get_parameter('oauth_verifier'); + $new_token = $this->data_store->new_access_token($token, $consumer, $verifier); return $new_token; - }/*}}}*/ + } /** * verify an api call, checks all the parameters */ - public function verify_request(&$request) {/*{{{*/ + public function verify_request(&$request) { $this->get_version($request); $consumer = $this->get_consumer($request); $token = $this->get_token($request, $consumer, "access"); $this->check_signature($request, $consumer, $token); return array($consumer, $token); - }/*}}}*/ + } // Internals from here /** * version 1 */ - private function get_version(&$request) {/*{{{*/ + private function get_version(&$request) { $version = $request->get_parameter("oauth_version"); if (!$version) { - $version = 1.0; + // Service Providers MUST assume the protocol version to be 1.0 if this parameter is not present. + // Chapter 7.0 ("Accessing Protected Ressources") + $version = '1.0'; } - if ($version && $version != $this->version) { + if ($version !== $this->version) { throw new OAuthException("OAuth version '$version' not supported"); } return $version; - }/*}}}*/ + } /** * figure out the signature with some defaults */ - private function get_signature_method(&$request) {/*{{{*/ - $signature_method = - @$request->get_parameter("oauth_signature_method"); + private function get_signature_method($request) { + $signature_method = $request instanceof OAuthRequest + ? $request->get_parameter("oauth_signature_method") + : NULL; + if (!$signature_method) { - $signature_method = "PLAINTEXT"; + // According to chapter 7 ("Accessing Protected Ressources") the signature-method + // parameter is required, and we can't just fallback to PLAINTEXT + throw new OAuthException('No signature method parameter. This parameter is required'); } - if (!in_array($signature_method, + + if (!in_array($signature_method, array_keys($this->signature_methods))) { throw new OAuthException( - "Signature method '$signature_method' not supported try one of the following: " . implode(", ", array_keys($this->signature_methods)) - ); + "Signature method '$signature_method' not supported " . + "try one of the following: " . + implode(", ", array_keys($this->signature_methods)) + ); } return $this->signature_methods[$signature_method]; - }/*}}}*/ + } /** * try to find the consumer for the provided request's consumer key */ - private function get_consumer(&$request) {/*{{{*/ - $consumer_key = @$request->get_parameter("oauth_consumer_key"); + private function get_consumer($request) { + $consumer_key = $request instanceof OAuthRequest + ? $request->get_parameter("oauth_consumer_key") + : NULL; + if (!$consumer_key) { throw new OAuthException("Invalid consumer key"); } @@ -601,13 +608,16 @@ class OAuthServer {/*{{{*/ } return $consumer; - }/*}}}*/ + } /** * try to find the token for the provided request's token key */ - private function get_token(&$request, $consumer, $token_type="access") {/*{{{*/ - $token_field = @$request->get_parameter('oauth_token'); + private function get_token($request, $consumer, $token_type="access") { + $token_field = $request instanceof OAuthRequest + ? $request->get_parameter('oauth_token') + : NULL; + $token = $this->data_store->lookup_token( $consumer, $token_type, $token_field ); @@ -615,175 +625,255 @@ class OAuthServer {/*{{{*/ throw new OAuthException("Invalid $token_type token: $token_field"); } return $token; - }/*}}}*/ + } /** * all-in-one function to check the signature on a request * should guess the signature method appropriately */ - private function check_signature(&$request, $consumer, $token) {/*{{{*/ + private function check_signature($request, $consumer, $token) { // this should probably be in a different method - $timestamp = @$request->get_parameter('oauth_timestamp'); - $nonce = @$request->get_parameter('oauth_nonce'); + $timestamp = $request instanceof OAuthRequest + ? $request->get_parameter('oauth_timestamp') + : NULL; + $nonce = $request instanceof OAuthRequest + ? $request->get_parameter('oauth_nonce') + : NULL; $this->check_timestamp($timestamp); $this->check_nonce($consumer, $token, $nonce, $timestamp); $signature_method = $this->get_signature_method($request); - $signature = $request->get_parameter('oauth_signature'); + $signature = $request->get_parameter('oauth_signature'); $valid_sig = $signature_method->check_signature( - $request, - $consumer, - $token, + $request, + $consumer, + $token, $signature ); if (!$valid_sig) { throw new OAuthException("Invalid signature"); } - }/*}}}*/ + } /** * check that the timestamp is new enough */ - private function check_timestamp($timestamp) {/*{{{*/ + private function check_timestamp($timestamp) { + if( ! $timestamp ) + throw new OAuthException( + 'Missing timestamp parameter. The parameter is required' + ); + // verify that timestamp is recentish $now = time(); - if ($now - $timestamp > $this->timestamp_threshold) { - throw new OAuthException("Expired timestamp, yours $timestamp, ours $now"); + if (abs($now - $timestamp) > $this->timestamp_threshold) { + throw new OAuthException( + "Expired timestamp, yours $timestamp, ours $now" + ); } - }/*}}}*/ + } /** * check that the nonce is not repeated */ - private function check_nonce($consumer, $token, $nonce, $timestamp) {/*{{{*/ + private function check_nonce($consumer, $token, $nonce, $timestamp) { + if( ! $nonce ) + throw new OAuthException( + 'Missing nonce parameter. The parameter is required' + ); + // verify that the nonce is uniqueish - $found = $this->data_store->lookup_nonce($consumer, $token, $nonce, $timestamp); + $found = $this->data_store->lookup_nonce( + $consumer, + $token, + $nonce, + $timestamp + ); if ($found) { throw new OAuthException("Nonce already used: $nonce"); } - }/*}}}*/ + } +} - -}/*}}}*/ - -class OAuthDataStore {/*{{{*/ - function lookup_consumer($consumer_key) {/*{{{*/ +class OAuthDataStore { + function lookup_consumer($consumer_key) { // implement me - }/*}}}*/ + } - function lookup_token($consumer, $token_type, $token) {/*{{{*/ + function lookup_token($consumer, $token_type, $token) { // implement me - }/*}}}*/ + } - function lookup_nonce($consumer, $token, $nonce, $timestamp) {/*{{{*/ + function lookup_nonce($consumer, $token, $nonce, $timestamp) { // implement me - }/*}}}*/ + } - function new_request_token($consumer) {/*{{{*/ + function new_request_token($consumer, $callback = null) { // return a new token attached to this consumer - }/*}}}*/ + } - function new_access_token($token, $consumer) {/*{{{*/ + function new_access_token($token, $consumer, $verifier = null) { // return a new access token attached to this consumer // for the user associated with this token if the request token // is authorized // should also invalidate the request token - }/*}}}*/ + } -}/*}}}*/ +} + +class OAuthUtil { + public static function urlencode_rfc3986($input) { + if (is_array($input)) { + return array_map(array('OAuthUtil', 'urlencode_rfc3986'), $input); + } else if (is_scalar($input)) { + return str_replace( + '+', + ' ', + str_replace('%7E', '~', rawurlencode($input)) + ); + } else { + return ''; + } +} -/* A very naive dbm-based oauth storage - */ -class SimpleOAuthDataStore extends OAuthDataStore {/*{{{*/ - private $dbh; - - function __construct($path = "oauth.gdbm") {/*{{{*/ - $this->dbh = dba_popen($path, 'c', 'gdbm'); - }/*}}}*/ - - function __destruct() {/*{{{*/ - dba_close($this->dbh); - }/*}}}*/ - - function lookup_consumer($consumer_key) {/*{{{*/ - $rv = dba_fetch("consumer_$consumer_key", $this->dbh); - if ($rv === FALSE) { - return NULL; - } - $obj = unserialize($rv); - if (!($obj instanceof OAuthConsumer)) { - return NULL; - } - return $obj; - }/*}}}*/ - - function lookup_token($consumer, $token_type, $token) {/*{{{*/ - $rv = dba_fetch("${token_type}_${token}", $this->dbh); - if ($rv === FALSE) { - return NULL; - } - $obj = unserialize($rv); - if (!($obj instanceof OAuthToken)) { - return NULL; - } - return $obj; - }/*}}}*/ - - function lookup_nonce($consumer, $token, $nonce, $timestamp) {/*{{{*/ - if (dba_exists("nonce_$nonce", $this->dbh)) { - return TRUE; - } else { - dba_insert("nonce_$nonce", "1", $this->dbh); - return FALSE; - } - }/*}}}*/ - - function new_token($consumer, $type="request") {/*{{{*/ - $key = md5(time()); - $secret = time() + time(); - $token = new OAuthToken($key, md5(md5($secret))); - if (!dba_insert("${type}_$key", serialize($token), $this->dbh)) { - throw new OAuthException("doooom!"); - } - return $token; - }/*}}}*/ - - function new_request_token($consumer) {/*{{{*/ - return $this->new_token($consumer, "request"); - }/*}}}*/ - - function new_access_token($token, $consumer) {/*{{{*/ - - $token = $this->new_token($consumer, 'access'); - dba_delete("request_" . $token->key, $this->dbh); - return $token; - }/*}}}*/ -}/*}}}*/ - -class OAuthUtil {/*{{{*/ - public static function urlencode_rfc3986($input) {/*{{{*/ - if (is_array($input)) { - return array_map(array('OAuthUtil','urlencode_rfc3986'), $input); - } else if (is_scalar($input)) { - return str_replace('+', ' ', - str_replace('%7E', '~', rawurlencode($input))); - } else { - return ''; - } - }/*}}}*/ - - - // This decode function isn't taking into consideration the above - // modifications to the encoding process. However, this method doesn't + // This decode function isn't taking into consideration the above + // modifications to the encoding process. However, this method doesn't // seem to be used anywhere so leaving it as is. - public static function urldecode_rfc3986($string) {/*{{{*/ - return rawurldecode($string); - }/*}}}*/ -}/*}}}*/ + public static function urldecode_rfc3986($string) { + return urldecode($string); + } + + // Utility function for turning the Authorization: header into + // parameters, has to do some unescaping + // Can filter out any non-oauth parameters if needed (default behaviour) + // May 28th, 2010 - method updated to tjerk.meesters for a speed improvement. + // see http://code.google.com/p/oauth/issues/detail?id=163 + public static function split_header($header, $only_allow_oauth_parameters = true) { + $params = array(); + if (preg_match_all('/('.($only_allow_oauth_parameters ? 'oauth_' : '').'[a-z_-]*)=(:?"([^"]*)"|([^,]*))/', $header, $matches)) { + foreach ($matches[1] as $i => $h) { + $params[$h] = OAuthUtil::urldecode_rfc3986(empty($matches[3][$i]) ? $matches[4][$i] : $matches[3][$i]); + } + if (isset($params['realm'])) { + unset($params['realm']); + } + } + return $params; + } + + // helper to try to sort out headers for people who aren't running apache + public static function get_headers() { + if (function_exists('apache_request_headers')) { + // we need this to get the actual Authorization: header + // because apache tends to tell us it doesn't exist + $headers = apache_request_headers(); + + // sanitize the output of apache_request_headers because + // we always want the keys to be Cased-Like-This and arh() + // returns the headers in the same case as they are in the + // request + $out = array(); + foreach ($headers AS $key => $value) { + $key = str_replace( + " ", + "-", + ucwords(strtolower(str_replace("-", " ", $key))) + ); + $out[$key] = $value; + } + } else { + // otherwise we don't have apache and are just going to have to hope + // that $_SERVER actually contains what we need + $out = array(); + if( isset($_SERVER['CONTENT_TYPE']) ) + $out['Content-Type'] = $_SERVER['CONTENT_TYPE']; + if( isset($_ENV['CONTENT_TYPE']) ) + $out['Content-Type'] = $_ENV['CONTENT_TYPE']; + + foreach ($_SERVER as $key => $value) { + if (substr($key, 0, 5) == "HTTP_") { + // this is chaos, basically it is just there to capitalize the first + // letter of every word that is not an initial HTTP and strip HTTP + // code from przemek + $key = str_replace( + " ", + "-", + ucwords(strtolower(str_replace("_", " ", substr($key, 5)))) + ); + $out[$key] = $value; + } + } + } + return $out; + } + + // This function takes a input like a=b&a=c&d=e and returns the parsed + // parameters like this + // array('a' => array('b','c'), 'd' => 'e') + public static function parse_parameters( $input ) { + if (!isset($input) || !$input) return array(); + + $pairs = explode('&', $input); + + $parsed_parameters = array(); + foreach ($pairs as $pair) { + $split = explode('=', $pair, 2); + $parameter = OAuthUtil::urldecode_rfc3986($split[0]); + $value = isset($split[1]) ? OAuthUtil::urldecode_rfc3986($split[1]) : ''; + + if (isset($parsed_parameters[$parameter])) { + // We have already recieved parameter(s) with this name, so add to the list + // of parameters with this name + + if (is_scalar($parsed_parameters[$parameter])) { + // This is the first duplicate, so transform scalar (string) into an array + // so we can add the duplicates + $parsed_parameters[$parameter] = array($parsed_parameters[$parameter]); + } + + $parsed_parameters[$parameter][] = $value; + } else { + $parsed_parameters[$parameter] = $value; + } + } + return $parsed_parameters; + } + + public static function build_http_query($params) { + if (!$params) return ''; + + // Urlencode both keys and values + $keys = OAuthUtil::urlencode_rfc3986(array_keys($params)); + $values = OAuthUtil::urlencode_rfc3986(array_values($params)); + $params = array_combine($keys, $values); + + // Parameters are sorted by name, using lexicographical byte value ordering. + // Ref: Spec: 9.1.1 (1) + uksort($params, 'strcmp'); + + $pairs = array(); + foreach ($params as $parameter => $value) { + if (is_array($value)) { + // If two or more parameters share the same name, they are sorted by their value + // Ref: Spec: 9.1.1 (1) + // June 12th, 2010 - changed to sort because of issue 164 by hidetaka + sort($value, SORT_STRING); + foreach ($value as $duplicate_value) { + $pairs[] = $parameter . '=' . $duplicate_value; + } + } else { + $pairs[] = $parameter . '=' . $value; + } + } + // For each parameter, the name is separated from the corresponding value by an '=' character (ASCII code 61) + // Each name-value pair is separated by an '&' character (ASCII code 38) + return implode('&', $pairs); + } +} ?> From 06d918d575cfb112b8719b0441548d55e679fe51 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 5 Oct 2010 01:21:50 +0000 Subject: [PATCH 026/112] Strip out the special 'p' paramter added by index.php from $_SERVER['QUERY_STRING'] before doing OAuth requests. Required by the latest version of the OAuth lib. --- lib/apioauth.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/apioauth.php b/lib/apioauth.php index 1c87e42324..3f71de0c35 100644 --- a/lib/apioauth.php +++ b/lib/apioauth.php @@ -86,11 +86,18 @@ class ApiOauthAction extends Action } // strip out the p param added in index.php - - // XXX: should we strip anything else? Or alternatively - // only allow a known list of params? unset($_GET['p']); unset($_POST['p']); + unset($_REQUEST['p']); + + $queryArray = explode('&', $_SERVER['QUERY_STRING']); + for ($i = 0; $i < sizeof($queryArray); $i++) { + if (substr($queryArray[$i], 0, 1) == 'p=') { + unset($queryArray[$i]); + } + } + + $_SERVER['QUERY_STRING'] = implode('&', $queryString); } function getCallback($url, $params) From 82f05d0a61752d0552bc8029b2a55ab7c5171b33 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 4 Oct 2010 16:47:20 -0700 Subject: [PATCH 027/112] Somewhat improved test script for fetching an OAuth request token --- tests/oauth/getrequesttoken.php | 43 +++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 18 deletions(-) diff --git a/tests/oauth/getrequesttoken.php b/tests/oauth/getrequesttoken.php index fc546a0f4c..7c08883542 100755 --- a/tests/oauth/getrequesttoken.php +++ b/tests/oauth/getrequesttoken.php @@ -24,47 +24,54 @@ require_once INSTALLDIR . '/scripts/commandline.inc'; require_once INSTALLDIR . '/extlib/OAuth.php'; $ini = parse_ini_file("oauth.ini"); - $test_consumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']); - $rt_endpoint = $ini['apiroot'] . $ini['request_token_url']; - $parsed = parse_url($rt_endpoint); $params = array(); - parse_str($parsed['query'], $params); $hmac_method = new OAuthSignatureMethod_HMAC_SHA1(); -$req_req = OAuthRequest::from_consumer_and_token($test_consumer, NULL, "GET", $rt_endpoint, $params); -$req_req->sign_request($hmac_method, $test_consumer, NULL); - -$r = httpRequest($req_req->to_url()); +try { + $req_req = OAuthRequest::from_consumer_and_token($test_consumer, NULL, "GET", $rt_endpoint, $params); + $req_req->sign_request($hmac_method, $test_consumer, NULL); + $r = httpRequest($req_req->to_url()); +} catch (Exception $e) { + print $e->getMessage(); + var_dump($req_req); + exit(1); +} $body = $r->getBody(); - $token_stuff = array(); parse_str($body, $token_stuff); -$authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $token_stuff['oauth_token']; +if (empty($token_stuff['oauth_token'])) { + print "Error: $body\n"; + exit(1); +} +$authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $token_stuff['oauth_token']; +print "\nSuccess!\n\n"; print 'Request token : ' . $token_stuff['oauth_token'] . "\n"; print 'Request token secret : ' . $token_stuff['oauth_token_secret'] . "\n"; print "Authorize URL : $authurl\n"; -//var_dump($req_req); +print "\nNow paste the Authorize URL into your browser and authorize the request token.\n"; function httpRequest($url) { $request = HTTPClient::start(); - $request->setConfig(array( - 'follow_redirects' => true, - 'connect_timeout' => 120, - 'timeout' => 120, - 'ssl_verify_peer' => false, - 'ssl_verify_host' => false - )); + $request->setConfig( + array( + 'follow_redirects' => true, + 'connect_timeout' => 120, + 'timeout' => 120, + 'ssl_verify_peer' => false, + 'ssl_verify_host' => false + ) + ); return $request->get($url); } From 30537700786967f8fd3c91ff3a7b5fc1acf09fe8 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 4 Oct 2010 18:36:02 -0700 Subject: [PATCH 028/112] A bit more work on the request token fetching test script --- tests/oauth/getrequesttoken.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/oauth/getrequesttoken.php b/tests/oauth/getrequesttoken.php index 7c08883542..fc6f03379c 100755 --- a/tests/oauth/getrequesttoken.php +++ b/tests/oauth/getrequesttoken.php @@ -2,7 +2,7 @@ sign_request($hmac_method, $test_consumer, NULL); $r = httpRequest($req_req->to_url()); } catch (Exception $e) { + // oh noez print $e->getMessage(); var_dump($req_req); exit(1); From 83566f014c378bd1b6ebad936e98e4e76b3b731b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 5 Oct 2010 16:13:07 -0700 Subject: [PATCH 029/112] Fix bad reference --- lib/apioauth.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/apioauth.php b/lib/apioauth.php index 3f71de0c35..6a9ab63778 100644 --- a/lib/apioauth.php +++ b/lib/apioauth.php @@ -30,7 +30,7 @@ if (!defined('STATUSNET')) { exit(1); } - +require_once INSTALLDIR . '/lib/apiaction.php'; require_once INSTALLDIR . '/lib/apioauthstore.php'; /** @@ -44,7 +44,7 @@ require_once INSTALLDIR . '/lib/apioauthstore.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 ApiOauthAction extends Action +class ApiOauthAction extends ApiAction { /** * Is this a read-only action? @@ -91,13 +91,14 @@ class ApiOauthAction extends Action unset($_REQUEST['p']); $queryArray = explode('&', $_SERVER['QUERY_STRING']); + for ($i = 0; $i < sizeof($queryArray); $i++) { if (substr($queryArray[$i], 0, 1) == 'p=') { unset($queryArray[$i]); } } - $_SERVER['QUERY_STRING'] = implode('&', $queryString); + $_SERVER['QUERY_STRING'] = implode('&', $queryArray); } function getCallback($url, $params) @@ -120,4 +121,5 @@ class ApiOauthAction extends Action return ($url . '&' . $k . '=' . $v); } } + } From 4247be51164706af31b2d2a55807a05d89d31fb1 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 5 Oct 2010 17:09:57 -0700 Subject: [PATCH 030/112] Add plain text error format to clientError() --- lib/apiaction.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/lib/apiaction.php b/lib/apiaction.php index 0ebf88282a..afba8ab634 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -1244,23 +1244,29 @@ class ApiAction extends Action // Do not emit error header for JSONP if (!isset($this->callback)) { - header('HTTP/1.1 '.$code.' '.$status_string); + header('HTTP/1.1 ' . $code . ' ' . $status_string); } - if ($format == 'xml') { + switch($format) { + case 'xml': $this->initDocument('xml'); $this->elementStart('hash'); $this->element('error', null, $msg); $this->element('request', null, $_SERVER['REQUEST_URI']); $this->elementEnd('hash'); $this->endDocument('xml'); - } elseif ($format == 'json'){ + break; + case 'json': $this->initDocument('json'); $error_array = array('error' => $msg, 'request' => $_SERVER['REQUEST_URI']); print(json_encode($error_array)); $this->endDocument('json'); - } else { - + break; + case 'text': + header('Content-Type: text/plain; charset=utf-8'); + print $msg; + break; + default: // If user didn't request a useful format, throw a regular client error throw new ClientException($msg, $code); } From 63663dbd0e4e5c3dd1139b7bdc82ec46a9f27525 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 5 Oct 2010 17:27:55 -0700 Subject: [PATCH 031/112] Stab that 'p' parameter! --- lib/apioauth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/apioauth.php b/lib/apioauth.php index 6a9ab63778..b2d8faa5a5 100644 --- a/lib/apioauth.php +++ b/lib/apioauth.php @@ -93,7 +93,7 @@ class ApiOauthAction extends ApiAction $queryArray = explode('&', $_SERVER['QUERY_STRING']); for ($i = 0; $i < sizeof($queryArray); $i++) { - if (substr($queryArray[$i], 0, 1) == 'p=') { + if (substr($queryArray[$i], 0, 2) == 'p=') { unset($queryArray[$i]); } } From 73a73c936251f4f481eba2ca0264b49064797067 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 5 Oct 2010 17:38:03 -0700 Subject: [PATCH 032/112] - Update getrequesttoken test script to use 1.0a - Some cleanup --- tests/oauth/getrequesttoken.php | 39 +++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/tests/oauth/getrequesttoken.php b/tests/oauth/getrequesttoken.php index fc6f03379c..11ec126b79 100755 --- a/tests/oauth/getrequesttoken.php +++ b/tests/oauth/getrequesttoken.php @@ -2,7 +2,7 @@ sign_request($hmac_method, $test_consumer, NULL); - $r = httpRequest($req_req->to_url()); + $req = OAuthRequest::from_consumer_and_token( + $testConsumer, + null, + "GET", + $requestTokenUrl, + $params + ); + $req->sign_request($hmac_method, $testConsumer, NULL); + $r = httpRequest($req->to_url()); } catch (Exception $e) { // oh noez print $e->getMessage(); - var_dump($req_req); + var_dump($req); exit(1); } $body = $r->getBody(); -$token_stuff = array(); -parse_str($body, $token_stuff); +$tokenStuff = array(); +parse_str($body, $tokenStuff); -if (empty($token_stuff['oauth_token'])) { +if (empty($tokenStuff['oauth_token'])) { print "Error: $body\n"; exit(1); } -$authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $token_stuff['oauth_token']; +$authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $tokenStuff['oauth_token']; print "\nSuccess!\n\n"; -print 'Request token : ' . $token_stuff['oauth_token'] . "\n"; -print 'Request token secret : ' . $token_stuff['oauth_token_secret'] . "\n"; +print 'Request token : ' . $tokenStuff['oauth_token'] . "\n"; +print 'Request token secret : ' . $tokenStuff['oauth_token_secret'] . "\n"; print "Authorize URL : $authurl\n"; print "\nNow paste the Authorize URL into your browser and authorize the request token.\n"; @@ -72,7 +79,7 @@ print "\nNow paste the Authorize URL into your browser and authorize the request function httpRequest($url) { $request = HTTPClient::start(); - + $request->setConfig( array( 'follow_redirects' => true, @@ -82,7 +89,7 @@ function httpRequest($url) 'ssl_verify_host' => false ) ); - + return $request->get($url); } From f4f56eea3ae349ed7d47ae7385036107510bf5e5 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 5 Oct 2010 17:48:32 -0700 Subject: [PATCH 033/112] Override new_request_token() to store OAuth 1.0a verified callback URL --- lib/apioauthstore.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index eca93866f0..620f0947fb 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -183,4 +183,30 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore throw new Exception(_('Failed to delete revoked token.')); } } + + /* + * Create a new request token. Overrided to support OAuth 1.0a callback + * + * @param OAuthConsumer $consumer the OAuth Consumer for this token + * @param string $callback the verified OAuth callback URL + * + * @return OAuthToken $token a new unauthorized OAuth request token + */ + + function new_request_token($consumer, $callback) + { + $t = new Token(); + $t->consumer_key = $consumer->key; + $t->tok = common_good_rand(16); + $t->secret = common_good_rand(16); + $t->type = 0; // request + $t->state = 0; // unauthorized + $t->verified_callback = $callback; + $t->created = DB_DataObject_Cast::dateTime(); + if (!$t->insert()) { + return null; + } else { + return new OAuthToken($t->tok, $t->secret); + } + } } From f97b863fd709135fb9f7bf7c756a1c6721e3e988 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 5 Oct 2010 17:53:50 -0700 Subject: [PATCH 034/112] Update ApiOauthRequestTokenAction to support OAuth 1.0a --- actions/apioauthrequesttoken.php | 74 ++++++++++++++++++++++++++------ lib/apioauth.php | 5 +++ 2 files changed, 67 insertions(+), 12 deletions(-) diff --git a/actions/apioauthrequesttoken.php b/actions/apioauthrequesttoken.php index 4fa626d866..4f4c2c8fb2 100644 --- a/actions/apioauthrequesttoken.php +++ b/actions/apioauthrequesttoken.php @@ -2,7 +2,7 @@ /** * StatusNet, the distributed open-source microblogging tool * - * Get an OAuth request token + * Issue temporary OAuth credentials (a request token) * * PHP version 5 * @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { require_once INSTALLDIR . '/lib/apioauth.php'; /** - * Get an OAuth request token + * Issue temporary OAuth credentials (a request token) * * @category API * @package StatusNet @@ -58,22 +58,23 @@ class ApiOauthRequestTokenAction extends ApiOauthAction { parent::prepare($args); - $this->callback = $this->arg('oauth_callback'); - - if (!empty($this->callback)) { - common_debug("callback: $this->callback"); - } + // XXX: support "force_login" parameter like Twitter? (Forces the user to enter + // their credentials to ensure the correct users account is authorized.) return true; } /** - * Class handler. + * Handle a request for temporary OAuth credentials + * + * Make sure the request is kosher, then emit a set of temporary + * credentials -- AKA an unauthorized request token. * * @param array $args array of arguments * * @return void */ + function handle($args) { parent::handle($args); @@ -85,14 +86,63 @@ class ApiOauthRequestTokenAction extends ApiOauthAction $server->add_signature_method($hmac_method); try { + $req = OAuthRequest::from_request(); + + // verify callback + if (!$this->verifyCallback($req->get_parameter('oauth_callback'))) { + throw new OAuthException( + "You must provide a valid URL or 'oob' in oauth_callback.", + 400 + ); + } + + // check signature and issue a new request token $token = $server->fetch_request_token($req); - print $token; + + // return token to the client + $this->showRequestToken($token); + } catch (OAuthException $e) { common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage()); - header('HTTP/1.1 401 Unauthorized'); - header('Content-Type: text/html; charset=utf-8'); - print $e->getMessage() . "\n"; + + // Return 401 for for bad credentials or signature problems, + // and 400 for missing or unsupported parameters + + $code = $e->getCode(); + $this->clientError($e->getMessage(), empty($code) ? 401 : $code, 'text'); + } + } + + /* + * Display temporary OAuth credentials + */ + + function showRequestToken($token) + { + header('Content-Type: application/x-www-form-urlencoded'); + print $token; + print '&oauth_callback_confirmed=true'; + } + + /* Make sure the callback parameter contains either a real URL + * or the string 'oob'. + * + * @todo Check for evil/banned URLs here + * + * @return boolean true or false + */ + + function verifyCallback($callback) + { + if ($callback == "oob") { + common_debug("OAuth request token requested for out of bounds client."); + return true; + } else { + return Validate::uri( + $callback, + array('allowed_schemes' => array('http', 'https')) + ); } } diff --git a/lib/apioauth.php b/lib/apioauth.php index b2d8faa5a5..75b0b3c576 100644 --- a/lib/apioauth.php +++ b/lib/apioauth.php @@ -77,6 +77,11 @@ class ApiOauthAction extends ApiAction self::cleanRequest(); } + /* + * Clean up the request so the OAuth library doesn't find + * any extra parameters or anything else it's not expecting. + * I'm looking at you, p parameter. + */ static function cleanRequest() { // kill evil effects of magical slashing From 5d5c4e8344ba8a16b7da36977693a3eec912880b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 6 Oct 2010 19:05:31 -0700 Subject: [PATCH 035/112] Some more cleanup --- tests/oauth/getrequesttoken.php | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/tests/oauth/getrequesttoken.php b/tests/oauth/getrequesttoken.php index 11ec126b79..045d597166 100755 --- a/tests/oauth/getrequesttoken.php +++ b/tests/oauth/getrequesttoken.php @@ -33,12 +33,13 @@ foreach(array('consumer_key', 'consumer_secret', 'apiroot', 'request_token_url') } } -$testConsumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']); +$testConsumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']); $requestTokenUrl = $ini['apiroot'] . $ini['request_token_url']; -$parsed = parse_url($requestTokenUrl); -$params = array(); +$parsed = parse_url($requestTokenUrl); +$params = array(); + parse_str($parsed['query'], $params); -$params['oauth_callback'] = 'oob'; +$params['oauth_callback'] = 'oob'; // out-of-band $hmac_method = new OAuthSignatureMethod_HMAC_SHA1(); @@ -59,22 +60,24 @@ try { exit(1); } -$body = $r->getBody(); +$body = $r->getBody(); $tokenStuff = array(); + parse_str($body, $tokenStuff); -if (empty($tokenStuff['oauth_token'])) { +$tok = $tokenStuff['oauth_token']; +$confirmed = $tokenStuff['oauth_callback_confirmed']; + +if (empty($tokenStuff['oauth_token']) || empty($confirmed) || $confirmed != 'true') { print "Error: $body\n"; exit(1); } -$authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $tokenStuff['oauth_token']; -print "\nSuccess!\n\n"; -print 'Request token : ' . $tokenStuff['oauth_token'] . "\n"; -print 'Request token secret : ' . $tokenStuff['oauth_token_secret'] . "\n"; -print "Authorize URL : $authurl\n"; +$authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $tok; -print "\nNow paste the Authorize URL into your browser and authorize the request token.\n"; +print "\nSuccess! "; +print "Authorize URL:\n\n$authurl\n\n"; +print "Now paste the Authorize URL into your browser and authorize your temporary credentials.\n"; function httpRequest($url) { @@ -92,4 +95,3 @@ function httpRequest($url) return $request->get($url); } - From f71912440a17f468b1d60db2388fc6030631fce6 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 6 Oct 2010 19:06:57 -0700 Subject: [PATCH 036/112] - New base InfoAction for dialog box like msgs - Fix titles on error pages --- lib/clienterroraction.php | 26 ++++++++- lib/error.php | 73 ++++------------------- lib/info.php | 118 ++++++++++++++++++++++++++++++++++++++ lib/servererroraction.php | 23 ++++++++ 4 files changed, 176 insertions(+), 64 deletions(-) create mode 100644 lib/info.php diff --git a/lib/clienterroraction.php b/lib/clienterroraction.php index 08bced5bda..9233c9bde6 100644 --- a/lib/clienterroraction.php +++ b/lib/clienterroraction.php @@ -12,7 +12,7 @@ * @link http://status.net/ * * StatusNet - the distributed open-source microblogging tool - * Copyright (C) 2008, 2009, StatusNet, Inc. + * Copyright (C) 2008-2010 StatusNet, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -32,7 +32,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -require_once INSTALLDIR.'/lib/error.php'; +require_once INSTALLDIR . '/lib/error.php'; /** * Class for displaying HTTP client errors @@ -90,4 +90,26 @@ class ClientErrorAction extends ErrorAction $this->showPage(); } + + /** + * To specify additional HTTP headers for the action + * + * @return void + */ + function extraHeaders() + { + $status_string = @self::$status[$this->code]; + header('HTTP/1.1 '.$this->code.' '.$status_string); + } + + /** + * Page title. + * + * @return page title + */ + + function title() + { + return @self::$status[$this->code]; + } } diff --git a/lib/error.php b/lib/error.php index a6a29119f7..762425dc44 100644 --- a/lib/error.php +++ b/lib/error.php @@ -33,6 +33,8 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +require_once INSTALLDIR . '/lib/info.php'; + /** * Base class for displaying HTTP errors * @@ -42,7 +44,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ -class ErrorAction extends Action +class ErrorAction extends InfoAction { static $status = array(); @@ -52,7 +54,7 @@ class ErrorAction extends Action function __construct($message, $code, $output='php://output', $indent=null) { - parent::__construct($output, $indent); + parent::__construct(null, $message, $output, $indent); $this->code = $code; $this->message = $message; @@ -64,43 +66,6 @@ class ErrorAction extends Action $this->prepare($_REQUEST); } - /** - * To specify additional HTTP headers for the action - * - * @return void - */ - function extraHeaders() - { - $status_string = @self::$status[$this->code]; - header('HTTP/1.1 '.$this->code.' '.$status_string); - } - - /** - * Display content. - * - * @return nothing - */ - function showContent() - { - $this->element('div', array('class' => 'error'), $this->message); - } - - /** - * Page title. - * - * @return page title - */ - - function title() - { - return @self::$status[$this->code]; - } - - function isReadOnly($args) - { - return true; - } - function showPage() { if ($this->minimal) { @@ -116,32 +81,16 @@ class ErrorAction extends Action exit(); } - // Overload a bunch of stuff so the page isn't too bloated - - function showBody() + /** + * Display content. + * + * @return nothing + */ + function showContent() { - $this->elementStart('body', array('id' => 'error')); - $this->elementStart('div', array('id' => 'wrap')); - $this->showHeader(); - $this->showCore(); - $this->showFooter(); - $this->elementEnd('div'); - $this->elementEnd('body'); + $this->element('div', array('class' => 'error'), $this->message); } - function showCore() - { - $this->elementStart('div', array('id' => 'core')); - $this->showContentBlock(); - $this->elementEnd('div'); - } - function showHeader() - { - $this->elementStart('div', array('id' => 'header')); - $this->showLogo(); - $this->showPrimaryNav(); - $this->elementEnd('div'); - } } diff --git a/lib/info.php b/lib/info.php new file mode 100644 index 0000000000..395c6522ec --- /dev/null +++ b/lib/info.php @@ -0,0 +1,118 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + +/** + * Base class for displaying dialog box like messages to the user + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see ErrorAction + */ + +class InfoAction extends Action +{ + var $message = null; + + function __construct($title, $message, $output='php://output', $indent=null) + { + parent::__construct($output, $indent); + + $this->message = $message; + $this->title = $title; + + // XXX: hack alert: usually we aren't going to + // call this page directly, but because it's + // an action it needs an args array anyway + $this->prepare($_REQUEST); + } + + /** + * Page title. + * + * @return page title + */ + + function title() + { + return empty($this->title) ? '' : $this->title; + } + + function isReadOnly($args) + { + return true; + } + + // Overload a bunch of stuff so the page isn't too bloated + + function showBody() + { + $this->elementStart('body', array('id' => 'error')); + $this->elementStart('div', array('id' => 'wrap')); + $this->showHeader(); + $this->showCore(); + $this->showFooter(); + $this->elementEnd('div'); + $this->elementEnd('body'); + } + + function showCore() + { + $this->elementStart('div', array('id' => 'core')); + $this->showContentBlock(); + $this->elementEnd('div'); + } + + function showHeader() + { + $this->elementStart('div', array('id' => 'header')); + $this->showLogo(); + $this->showPrimaryNav(); + $this->elementEnd('div'); + } + + /** + * Display content. + * + * @return nothing + */ + function showContent() + { + $this->element('div', array('class' => 'info'), $this->message); + } + +} diff --git a/lib/servererroraction.php b/lib/servererroraction.php index 9b5a553dc6..54cc99099a 100644 --- a/lib/servererroraction.php +++ b/lib/servererroraction.php @@ -96,4 +96,27 @@ class ServerErrorAction extends ErrorAction $this->showPage(); } + + /** + * To specify additional HTTP headers for the action + * + * @return void + */ + function extraHeaders() + { + $status_string = @self::$status[$this->code]; + header('HTTP/1.1 '.$this->code.' '.$status_string); + } + + /** + * Page title. + * + * @return page title + */ + + function title() + { + return @self::$status[$this->code]; + } + } From 69e621a3e882cd060eb4314554aada7167edd897 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 6 Oct 2010 19:20:47 -0700 Subject: [PATCH 037/112] - Update ApiOauthAuthorizeAction to 1.0a - Fix enumerable bugs - New page for displaying 1.0a verifier (still needs work) --- actions/apioauthauthorize.php | 231 ++++++++++++++++++++++++++-------- actions/apioauthpin.php | 69 ++++++++++ lib/apioauth.php | 27 +--- lib/apioauthstore.php | 8 ++ lib/oauthstore.php | 11 ++ lib/serverexception.php | 2 +- 6 files changed, 270 insertions(+), 78 deletions(-) create mode 100644 actions/apioauthpin.php diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index c2fbbcdd87..6772052f2c 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -32,6 +32,7 @@ if (!defined('STATUSNET')) { } require_once INSTALLDIR . '/lib/apioauth.php'; +require_once INSTALLDIR . '/lib/info.php'; /** * Authorize an OAuth request token @@ -43,9 +44,10 @@ require_once INSTALLDIR . '/lib/apioauth.php'; * @link http://status.net/ */ -class ApiOauthAuthorizeAction extends ApiOauthAction +class ApiOauthAuthorizeAction extends Action { - var $oauth_token; + var $oauthTokenParam; + var $reqToken; var $callback; var $app; var $nickname; @@ -67,12 +69,17 @@ class ApiOauthAuthorizeAction extends ApiOauthAction { parent::prepare($args); - $this->nickname = $this->trimmed('nickname'); - $this->password = $this->arg('password'); - $this->oauth_token = $this->arg('oauth_token'); - $this->callback = $this->arg('oauth_callback'); - $this->store = new ApiStatusNetOAuthDataStore(); - $this->app = $this->store->getAppByRequestToken($this->oauth_token); + $this->nickname = $this->trimmed('nickname'); + $this->password = $this->arg('password'); + $this->oauthTokenParam = $this->arg('oauth_token'); + $this->callback = $this->arg('oauth_callback'); + $this->store = new ApiStatusNetOAuthDataStore(); + + try { + $this->app = $this->store->getAppByRequestToken($this->oauthTokenParam); + } catch (Exception $e) { + $this->clientError($e->getMessage()); + } return true; } @@ -97,14 +104,30 @@ class ApiOauthAuthorizeAction extends ApiOauthAction } else { - if (empty($this->oauth_token)) { + // Make sure a oauth_token parameter was provided + if (empty($this->oauthTokenParam)) { $this->clientError(_('No oauth_token parameter provided.')); - return; + } else { + + // Check to make sure the token exists + $this->reqToken = $this->store->getTokenByKey($this->oauthTokenParam); + + if (empty($this->reqToken)) { + $this->serverError( + _('Invalid request token.') + ); + } else { + + // Check to make sure we haven't already authorized the token + if ($this->reqToken->state != 0) { + $this->clientError("Invalid request token."); + } + } } + // make sure there's an app associated with this token if (empty($this->app)) { - $this->clientError(_('Invalid token.')); - return; + $this->clientError(_('Invalid request token.')); } $name = $this->app->name; @@ -120,8 +143,8 @@ class ApiOauthAuthorizeAction extends ApiOauthAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { - $this->showForm(_('There was a problem with your session token. '. - 'Try again, please.')); + $this->showForm( + _('There was a problem with your session token. Try again, please.')); return; } @@ -130,6 +153,11 @@ class ApiOauthAuthorizeAction extends ApiOauthAction $user = null; if (!common_logged_in()) { + + // XXX Force credentials check? + + // XXX OpenID + $user = common_check_user($this->nickname, $this->password); if (empty($user)) { $this->showForm(_("Invalid nickname / password!")); @@ -141,9 +169,15 @@ class ApiOauthAuthorizeAction extends ApiOauthAction if ($this->arg('allow')) { - // mark the req token as authorized + // fetch the token + $this->reqToken = $this->store->getTokenByKey($this->oauthTokenParam); - $this->store->authorize_token($this->oauth_token); + // mark the req token as authorized + try { + $this->store->authorize_token($this->oauthTokenParam); + } catch (Exception $e) { + $this->serverError($e->getMessage()); + } // Check to see if there was a previous token associated // with this user/app and kill it. If the user is doing this she @@ -156,8 +190,7 @@ class ApiOauthAuthorizeAction extends ApiOauthAction if (!$result) { common_log_db_error($appUser, 'DELETE', __FILE__); - throw new ServerException(_('Database error deleting OAuth application user.')); - return; + $this->serverError(_('Database error deleting OAuth application user.')); } } @@ -175,20 +208,19 @@ class ApiOauthAuthorizeAction extends ApiOauthAction // granted. The OAuth app user record then gets updated // with the new access token and access type. - $appUser->token = $this->oauth_token; + $appUser->token = $this->oauthTokenParam; $appUser->created = common_sql_now(); $result = $appUser->insert(); if (!$result) { common_log_db_error($appUser, 'INSERT', __FILE__); - throw new ServerException(_('Database error inserting OAuth application user.')); - return; + $this->serverError(_('Database error inserting OAuth application user.')); } - // if we have a callback redirect and provide the token + // If we have a callback redirect and provide the token - // A callback specified in the app setup overrides whatever + // Note: A callback specified in the app setup overrides whatever // is passed in with the request. if (!empty($this->app->callback_url)) { @@ -197,40 +229,40 @@ class ApiOauthAuthorizeAction extends ApiOauthAction if (!empty($this->callback)) { - $target_url = $this->getCallback($this->callback, - array('oauth_token' => $this->oauth_token)); + $targetUrl = $this->getCallback( + $this->callback, + array( + 'oauth_token' => $this->oauthTokenParam, + 'oauth_verifier' => $this->reqToken->verifier // 1.0a + ) + ); + + // Redirect the user to the provided OAuth callback + common_redirect($targetUrl, 303); - common_redirect($target_url, 303); } else { - common_debug("callback was empty!"); + common_log( + LOG_INFO, + "No oauth_callback parameter provided for application ID " + . $this->app->id + . " when authorizing request token." + ); } - // otherwise inform the user that the rt was authorized + // Otherwise, inform the user that the rt was authorized + $this->showAuthorized(); - $this->elementStart('p'); + } else if ($this->arg('cancel')) { - // XXX: Do OAuth 1.0a verifier code + try { + $this->store->revoke_token($this->oauthTokenParam, 0); + $this->showCanceled(); + } catch (Exception $e) { + $this->ServerError($e->getMessage()); + } - $this->raw(sprintf(_("The request token %s has been authorized. " . - 'Please exchange it for an access token.'), - $this->oauth_token)); - - $this->elementEnd('p'); - - } else if ($this->arg('deny')) { - - $datastore = new ApiStatusNetOAuthDataStore(); - $datastore->revoke_token($this->oauth_token, 0); - - $this->elementStart('p'); - - $this->raw(sprintf(_("The request token %s has been denied and revoked."), - $this->oauth_token)); - - $this->elementEnd('p'); } else { $this->clientError(_('Unexpected form submission.')); - return; } } @@ -276,7 +308,7 @@ class ApiOauthAuthorizeAction extends ApiOauthAction _('Allow or deny access')); $this->hidden('token', common_session_token()); - $this->hidden('oauth_token', $this->oauth_token); + $this->hidden('oauth_token', $this->oauthTokenParam); $this->hidden('oauth_callback', $this->callback); $this->elementStart('ul', 'form_data'); @@ -321,11 +353,11 @@ class ApiOauthAuthorizeAction extends ApiOauthAction } - $this->element('input', array('id' => 'deny_submit', + $this->element('input', array('id' => 'cancel_submit', 'class' => 'submit submit form_action-primary', - 'name' => 'deny', + 'name' => 'cancel', 'type' => 'submit', - 'value' => _('Deny'))); + 'value' => _('Cancel'))); $this->element('input', array('id' => 'allow_submit', 'class' => 'submit submit form_action-secondary', @@ -348,7 +380,7 @@ class ApiOauthAuthorizeAction extends ApiOauthAction function getInstructions() { - return _('Allow or deny access to your account information.'); + return _('Authorize access to your account information.'); } /** @@ -388,4 +420,97 @@ class ApiOauthAuthorizeAction extends ApiOauthAction // NOP } + /* + * Show a nice message confirming the authorization + * operation was canceled. + * + * @return nothing + */ + + function showCanceled() + { + $info = new InfoAction( + _('Authorization canceled.'), + sprintf( + _('The request token %s has been revoked.'), + $this->oauthTokenParm + ) + ); + + $info->showPage(); + } + + /* + * Show a nice message that the authorization was successful. + * If the operation is out-of-band, show a pin. + * + * @return nothing + */ + + function showAuthorized() + { + + if ($this->reqToken->verified_callback == 'oob') { + + $pin = new ApiOauthPinAction($this->reqToken->verifier); + $pin->showPage(); + + } else { + + $info = new InfoAction( + _("Authorization succeeded."), + sprintf( + _('The request token %s has been authorized. Please exchange it for an access token using this verifier: %s'), + $this->oauthTokenParam, + $this->reqToken->verifier + ) + ); + + $info->showPage(); + } + } + + /* + * Properly format the callback URL and parameters so it's + * suitable for a redirect in the OAuth dance + * + * @param string $url the URL + * @param array $params an array of parameters + * + * @return string $url a URL to use for redirecting to + */ + + function getCallback($url, $params) + { + foreach ($params as $k => $v) { + $url = $this->appendQueryVar( + $url, + OAuthUtil::urlencode_rfc3986($k), + OAuthUtil::urlencode_rfc3986($v) + ); + } + + return $url; + } + + /* + * Append a new query parameter after any existing query + * parameters. + * + * @param string $url the URL + * @prarm string $k the parameter name + * @param string $v value of the paramter + * + * @return string $url the new URL with added parameter + */ + + function appendQueryVar($url, $k, $v) { + $url = preg_replace('/(.*)(\?|&)' . $k . '=[^&]+?(&)(.*)/i', '$1$2$4', $url . '&'); + $url = substr($url, 0, -1); + if (strpos($url, '?') === false) { + return ($url . '?' . $k . '=' . $v); + } else { + return ($url . '&' . $k . '=' . $v); + } + } } diff --git a/actions/apioauthpin.php b/actions/apioauthpin.php new file mode 100644 index 0000000000..5a88b5e590 --- /dev/null +++ b/actions/apioauthpin.php @@ -0,0 +1,69 @@ +. + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @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); +} + +require_once INSTALLDIR . '/lib/info.php'; + +/** + * Class for displaying an OAuth verifier pin + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +class ApiOauthPinAction extends InfoAction +{ + + function __construct($verifier) + { + $this->verifier = $verifier; + $title = _('Authorization succeeded.'); + parent::__construct($title, $title); + } + + // TODO: Check for logged in state! + + /** + * Display content. + * + * @return nothing + */ + function showContent() + { + // XXX: make this much nicer + $this->element('div', array('class' => 'info'), $this->verifier); + } + +} diff --git a/lib/apioauth.php b/lib/apioauth.php index 75b0b3c576..54cecf92a8 100644 --- a/lib/apioauth.php +++ b/lib/apioauth.php @@ -34,9 +34,8 @@ require_once INSTALLDIR . '/lib/apiaction.php'; require_once INSTALLDIR . '/lib/apioauthstore.php'; /** - * Base action for API OAuth enpoints. Clean up the - * the request, and possibly some other common things - * here. + * Base action for API OAuth enpoints. Clean up the + * request. Some other common functions. * * @category API * @package StatusNet @@ -82,6 +81,7 @@ class ApiOauthAction extends ApiAction * any extra parameters or anything else it's not expecting. * I'm looking at you, p parameter. */ + static function cleanRequest() { // kill evil effects of magical slashing @@ -106,25 +106,4 @@ class ApiOauthAction extends ApiAction $_SERVER['QUERY_STRING'] = implode('&', $queryArray); } - function getCallback($url, $params) - { - foreach ($params as $k => $v) { - $url = $this->appendQueryVar($url, - OAuthUtil::urlencode_rfc3986($k), - OAuthUtil::urlencode_rfc3986($v)); - } - - return $url; - } - - function appendQueryVar($url, $k, $v) { - $url = preg_replace('/(.*)(\?|&)' . $k . '=[^&]+?(&)(.*)/i', '$1$2$4', $url . '&'); - $url = substr($url, 0, -1); - if (strpos($url, '?') === false) { - return ($url . '?' . $k . '=' . $v); - } else { - return ($url . '&' . $k . '=' . $v); - } - } - } diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 620f0947fb..4d141286bf 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -202,6 +202,14 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore $t->type = 0; // request $t->state = 0; // unauthorized $t->verified_callback = $callback; + + if ($callback === 'oob') { + // six digit pin + $t->verifier = mt_rand(0, 999999); + } else { + $t->verifier = common_good_rand(8); + } + $t->created = DB_DataObject_Cast::dateTime(); if (!$t->insert()) { return null; diff --git a/lib/oauthstore.php b/lib/oauthstore.php index f3ee629fd7..537667678b 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -55,6 +55,17 @@ class StatusNetOAuthDataStore extends OAuthDataStore } } + function getTokenByKey($token_key) + { + $t = new Token(); + $t->tok = $token_key; + if ($t->find(true)) { + return $t; + } else { + return null; + } + } + // http://oauth.net/core/1.0/#nonce // "The Consumer SHALL then generate a Nonce value that is unique for // all requests with that timestamp." diff --git a/lib/serverexception.php b/lib/serverexception.php index 7dc9765ad6..0dfbd04ffd 100644 --- a/lib/serverexception.php +++ b/lib/serverexception.php @@ -22,7 +22,7 @@ * @category Exception * @package StatusNet * @author Evan Prodromou - * @copyright 2008 StatusNet, Inc. + * @copyright 2008-2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ From 8d2ccee3f62b06c4b8eb6fc15dd5a74d4211643d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 7 Oct 2010 09:13:38 -0400 Subject: [PATCH 038/112] PHPCS-clean RequireValidateEmail --- .../RequireValidatedEmailPlugin.php | 121 ++++++++++++------ 1 file changed, 84 insertions(+), 37 deletions(-) diff --git a/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php b/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php index 719dba89cd..a7d7874f1f 100644 --- a/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php +++ b/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php @@ -2,7 +2,8 @@ /** * StatusNet, the distributed open-source microblogging tool * - * Plugin that requires the user to have a validated email address before they can post notices + * Plugin that requires the user to have a validated email address before they + * can post notices * * PHP version 5 * @@ -32,44 +33,64 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +/** + * Plugin for requiring a validated email before posting. + * + * Enable this plugin using addPlugin('RequireValidatedEmail'); + * + * @category Plugin + * @package StatusNet + * @author Craig Andrews + * @author Brion Vibber + * @author Evan Prodromou + * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org + * @copyright 2009-2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + class RequireValidatedEmailPlugin extends Plugin { - // Users created before this time will be grandfathered in - // without the validation requirement. - public $grandfatherCutoff=null; + /** + * Users created before this time will be grandfathered in + * without the validation requirement. + */ - // If OpenID plugin is installed, users with a verified OpenID - // association whose provider URL matches one of these regexes - // will be considered to be sufficiently valid for our needs. - // - // For example, to trust WikiHow and Wikipedia OpenID users: - // - // addPlugin('RequireValidatedEmailPlugin', array( - // 'trustedOpenIDs' => array( - // '!^http://\w+\.wikihow\.com/!', - // '!^http://\w+\.wikipedia\.org/!', - // ), - // )); - public $trustedOpenIDs=array(); + public $grandfatherCutoff = null; - function __construct() - { - parent::__construct(); - } + /** + * If OpenID plugin is installed, users with a verified OpenID + * association whose provider URL matches one of these regexes + * will be considered to be sufficiently valid for our needs. + * + * For example, to trust WikiHow and Wikipedia OpenID users: + * + * addPlugin('RequireValidatedEmailPlugin', array( + * 'trustedOpenIDs' => array( + * '!^http://\w+\.wikihow\.com/!', + * '!^http://\w+\.wikipedia\.org/!', + * ), + * )); + */ + + public $trustedOpenIDs = array(); /** * Event handler for notice saves; rejects the notice * if user's address isn't validated. * - * @param Notice $notice + * @param Notice $notice The notice being saved + * * @return bool hook result code */ + function onStartNoticeSave($notice) { $user = User::staticGet('id', $notice->profile_id); if (!empty($user)) { // it's a remote notice if (!$this->validated($user)) { - throw new ClientException(_m("You must validate your email address before posting.")); + $msg = _m("You must validate your email address before posting."); + throw new ClientException($msg); } } return true; @@ -79,7 +100,8 @@ class RequireValidatedEmailPlugin extends Plugin * Event handler for registration attempts; rejects the registration * if email field is missing. * - * @param RegisterAction $action + * @param Action $action Action being executed + * * @return bool hook result code */ function onStartRegistrationTry($action) @@ -100,7 +122,8 @@ class RequireValidatedEmailPlugin extends Plugin * Check if a user has a validated email address or has been * otherwise grandfathered in. * - * @param User $user + * @param User $user User to valide + * * @return bool */ protected function validated($user) @@ -108,12 +131,16 @@ class RequireValidatedEmailPlugin extends Plugin // The email field is only stored after validation... // Until then you'll find them in confirm_address. $knownGood = !empty($user->email) || - $this->grandfathered($user) || - $this->hasTrustedOpenID($user); + $this->grandfathered($user) || + $this->hasTrustedOpenID($user); // Give other plugins a chance to override, if they can validate // that somebody's ok despite a non-validated email. - Event::handle('RequireValidatedEmailPlugin_Override', array($user, &$knownGood)); + + // FIXME: This isn't how to do it! Use Start*/End* instead + + Event::handle('RequireValidatedEmailPlugin_Override', + array($user, &$knownGood)); return $knownGood; } @@ -122,14 +149,15 @@ class RequireValidatedEmailPlugin extends Plugin * Check if a user was created before the grandfathering cutoff. * If so, we won't need to check for validation. * - * @param User $user - * @return bool + * @param User $user User to check + * + * @return bool true if user is grandfathered */ protected function grandfathered($user) { if ($this->grandfatherCutoff) { $created = strtotime($user->created . " GMT"); - $cutoff = strtotime($this->grandfatherCutoff); + $cutoff = strtotime($this->grandfatherCutoff); if ($created < $cutoff) { return true; } @@ -141,13 +169,20 @@ class RequireValidatedEmailPlugin extends Plugin * Override for RequireValidatedEmail plugin. If we have a user who's * not validated an e-mail, but did come from a trusted provider, * we'll consider them ok. + * + * @param User $user User to check + * + * @return bool true if user has a trusted OpenID. */ + function hasTrustedOpenID($user) { if ($this->trustedOpenIDs && class_exists('User_openid')) { foreach ($this->trustedOpenIDs as $regex) { $oid = new User_openid(); + $oid->user_id = $user->id; + $oid->find(); while ($oid->fetch()) { if (preg_match($regex, $oid->canonical)) { @@ -159,14 +194,26 @@ class RequireValidatedEmailPlugin extends Plugin return false; } + /** + * Add version information for this plugin. + * + * @param array &$versions Array of associative arrays of version data + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) { - $versions[] = array('name' => 'Require Validated Email', - 'version' => STATUSNET_VERSION, - 'author' => 'Craig Andrews, Evan Prodromou, Brion Vibber', - 'homepage' => 'http://status.net/wiki/Plugin:RequireValidatedEmail', - 'rawdescription' => - _m('The Require Validated Email plugin disables posting for accounts that do not have a validated email address.')); + $versions[] = + array('name' => 'Require Validated Email', + 'version' => STATUSNET_VERSION, + 'author' => 'Craig Andrews, '. + 'Evan Prodromou, '. + 'Brion Vibber', + 'homepage' => + 'http://status.net/wiki/Plugin:RequireValidatedEmail', + 'rawdescription' => + _m('Disables posting without a validated email address.')); return true; } } From fa45805d6d7f42884b507361ba51028c5180f384 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 7 Oct 2010 10:22:57 -0400 Subject: [PATCH 039/112] Events for showing the notice form --- EVENTS.txt | 6 ++++++ lib/action.php | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/EVENTS.txt b/EVENTS.txt index 2496416173..e5cafa8573 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -1136,3 +1136,9 @@ StartShowFeedLink: before showing an individual feed item EndShowFeedLink: after showing an individual feed - $action: action being executed - $feed: feed to show + +StartShowNoticeForm: before showing the notice form (before
) +- $action: action being executed + +EndShowNoticeForm: after showing the notice form (after ) +- $action: action being executed diff --git a/lib/action.php b/lib/action.php index ddc058d418..008f29d03e 100644 --- a/lib/action.php +++ b/lib/action.php @@ -397,7 +397,10 @@ class Action extends HTMLOutputter // lawsuit Event::handle('EndShowSiteNotice', array($this)); } if (common_logged_in()) { - $this->showNoticeForm(); + if (Event::handle('StartShowNoticeForm', array($this))) { + $this->showNoticeForm(); + Event::handle('EndShowNoticeForm', array($this)); + } } else { $this->showAnonymousMessage(); } From 1e3d5f80258811ce1c2154fcd971297e24264894 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 7 Oct 2010 10:32:29 -0400 Subject: [PATCH 040/112] hide notice form if not able to post --- .../RequireValidatedEmailPlugin.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php b/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php index a7d7874f1f..6c0ef37d51 100644 --- a/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php +++ b/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php @@ -216,4 +216,23 @@ class RequireValidatedEmailPlugin extends Plugin _m('Disables posting without a validated email address.')); return true; } + + /** + * Hide the notice form if the user isn't able to post. + * + * @param Action $action action being shown + * + * @return boolean hook value + */ + + function onStartShowNoticeForm($action) + { + $user = common_current_user(); + if (!empty($user)) { // it's a remote notice + if (!$this->validated($user)) { + return false; + } + } + return true; + } } From 8658e4f8c4186574ac6503428be3ed534290387d Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 11:01:17 -0700 Subject: [PATCH 041/112] Use 7 digits for oob OAuth pin instead of 6 --- lib/apioauthstore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 4d141286bf..7a4fe8db52 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -205,7 +205,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore if ($callback === 'oob') { // six digit pin - $t->verifier = mt_rand(0, 999999); + $t->verifier = mt_rand(0, 9999999); } else { $t->verifier = common_good_rand(8); } From 9d5224e2b4ae8dc8e8ac8b2328db77a6c01fc232 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 11:56:49 -0700 Subject: [PATCH 042/112] Change temp credential test script to use POST instead of GET (more useful for testing in general) --- tests/oauth/getrequesttoken.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/oauth/getrequesttoken.php b/tests/oauth/getrequesttoken.php index 045d597166..73f502af30 100755 --- a/tests/oauth/getrequesttoken.php +++ b/tests/oauth/getrequesttoken.php @@ -47,7 +47,7 @@ try { $req = OAuthRequest::from_consumer_and_token( $testConsumer, null, - "GET", + "POST", $requestTokenUrl, $params ); @@ -56,6 +56,7 @@ try { } catch (Exception $e) { // oh noez print $e->getMessage(); + print "OAuth Request:\n"; var_dump($req); exit(1); } @@ -93,5 +94,5 @@ function httpRequest($url) ) ); - return $request->get($url); + return $request->post($url); } From 82a0a1a74b9452fbc122fed9ee9c4e0a86b7a79e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 12:01:00 -0700 Subject: [PATCH 043/112] More OAuthy name for temp credentials fetching test script --- tests/oauth/{getrequesttoken.php => fetch_temp_creds.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/oauth/{getrequesttoken.php => fetch_temp_creds.php} (100%) diff --git a/tests/oauth/getrequesttoken.php b/tests/oauth/fetch_temp_creds.php similarity index 100% rename from tests/oauth/getrequesttoken.php rename to tests/oauth/fetch_temp_creds.php From b8f2cc4e6f121f4ffacefb6fe632beb3b25eb126 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 13:51:47 -0700 Subject: [PATCH 044/112] Make the verifier pin display a little nicer --- actions/apioauthauthorize.php | 25 ++++++++++++++++--------- actions/apioauthpin.php | 16 +++++++--------- tests/oauth/fetch_temp_creds.php | 2 +- 3 files changed, 24 insertions(+), 19 deletions(-) diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index 6772052f2c..d0b6211400 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -449,21 +449,28 @@ class ApiOauthAuthorizeAction extends Action function showAuthorized() { + $title = sprintf( + _("You have successfully authorized %s."), + $this->app->name + ); + + $msg = sprintf( + _('Please return to %s and enter the following security code to complete the process.'), + $this->app->name + ); if ($this->reqToken->verified_callback == 'oob') { - - $pin = new ApiOauthPinAction($this->reqToken->verifier); + $pin = new ApiOauthPinAction($title, $msg, $this->reqToken->verifier); $pin->showPage(); - } else { + // NOTE: This should probably never happen; trhow an error instead? + $info = new InfoAction( - _("Authorization succeeded."), - sprintf( - _('The request token %s has been authorized. Please exchange it for an access token using this verifier: %s'), - $this->oauthTokenParam, - $this->reqToken->verifier - ) + $title, + $msg, + $this->oauthTokenParam, + $this->reqToken->verifier ); $info->showPage(); diff --git a/actions/apioauthpin.php b/actions/apioauthpin.php index 5a88b5e590..5e6713a548 100644 --- a/actions/apioauthpin.php +++ b/actions/apioauthpin.php @@ -36,6 +36,8 @@ require_once INSTALLDIR . '/lib/info.php'; /** * Class for displaying an OAuth verifier pin * + * XXX: I'm pretty sure we don't need to check the logged in state here. -- Zach + * * @category Action * @package StatusNet * @author Zach Copley @@ -45,16 +47,13 @@ require_once INSTALLDIR . '/lib/info.php'; class ApiOauthPinAction extends InfoAction { - - function __construct($verifier) + function __construct($title, $message, $verifier) { $this->verifier = $verifier; - $title = _('Authorization succeeded.'); - parent::__construct($title, $title); + $this->title = $title; + parent::__construct($title, $message); } - // TODO: Check for logged in state! - /** * Display content. * @@ -62,8 +61,7 @@ class ApiOauthPinAction extends InfoAction */ function showContent() { - // XXX: make this much nicer - $this->element('div', array('class' => 'info'), $this->verifier); + $this->element('div', array('class' => 'info'), $this->message); + $this->element('div', array('id' => 'oauth_pin'), $this->verifier); } - } diff --git a/tests/oauth/fetch_temp_creds.php b/tests/oauth/fetch_temp_creds.php index 73f502af30..63ca351cd8 100755 --- a/tests/oauth/fetch_temp_creds.php +++ b/tests/oauth/fetch_temp_creds.php @@ -56,7 +56,7 @@ try { } catch (Exception $e) { // oh noez print $e->getMessage(); - print "OAuth Request:\n"; + print "\nOAuth Request:\n"; var_dump($req); exit(1); } From f8808b076108bbc80e2e23e795c34bcdf817a183 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 14:17:56 -0700 Subject: [PATCH 045/112] Added a comment about an open question: Should we allow pin-based workflow for clients registered as web applications? --- actions/apioauthauthorize.php | 5 ++++- actions/apioauthrequesttoken.php | 7 ++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index d0b6211400..ea5c30c2ac 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -464,7 +464,10 @@ class ApiOauthAuthorizeAction extends Action $pin->showPage(); } else { - // NOTE: This should probably never happen; trhow an error instead? + // NOTE: This would only happen if an application registered as + // a web application but sent in 'oob' for the oauth_callback + // parameter. Usually web apps will send in a callback and + // not use the pin-based workflow. $info = new InfoAction( $title, diff --git a/actions/apioauthrequesttoken.php b/actions/apioauthrequesttoken.php index 4f4c2c8fb2..825460f93c 100644 --- a/actions/apioauthrequesttoken.php +++ b/actions/apioauthrequesttoken.php @@ -87,7 +87,7 @@ class ApiOauthRequestTokenAction extends ApiOauthAction try { - $req = OAuthRequest::from_request(); + $req = OAuthRequest::from_request(); // verify callback if (!$this->verifyCallback($req->get_parameter('oauth_callback'))) { @@ -137,6 +137,11 @@ class ApiOauthRequestTokenAction extends ApiOauthAction { if ($callback == "oob") { common_debug("OAuth request token requested for out of bounds client."); + + // XXX: Should we throw an error if a client is registered as a + // web application but requests the pin based workflow? For now I'm + // allowing the workflow to proceed and issuing a pin. --Zach + return true; } else { return Validate::uri( From 459727bd610df5e579311a1627ee9b0e93ac44b0 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 18:32:27 -0700 Subject: [PATCH 046/112] Update ApiOauthAccessTokenAction to OAuth 1.0a --- actions/apioauthaccesstoken.php | 56 ++++++++++++++++++++++++++------- lib/apioauthstore.php | 34 ++++++++++++-------- 2 files changed, 65 insertions(+), 25 deletions(-) diff --git a/actions/apioauthaccesstoken.php b/actions/apioauthaccesstoken.php index 887df4c20d..b8b188b1dc 100644 --- a/actions/apioauthaccesstoken.php +++ b/actions/apioauthaccesstoken.php @@ -2,7 +2,8 @@ /** * StatusNet, the distributed open-source microblogging tool * - * Exchange an authorized OAuth request token for an access token + * Action for getting OAuth token credentials (exchange an authorized + * request token for an access token) * * PHP version 5 * @@ -34,7 +35,8 @@ if (!defined('STATUSNET')) { require_once INSTALLDIR . '/lib/apioauth.php'; /** - * Exchange an authorized OAuth request token for an access token + * Action for getting OAuth token credentials (exchange an authorized + * request token for an access token) * * @category API * @package StatusNet @@ -45,6 +47,8 @@ require_once INSTALLDIR . '/lib/apioauth.php'; class ApiOauthAccessTokenAction extends ApiOauthAction { + protected $reqToken = null; + protected $verifier = null; /** * Class handler. @@ -65,30 +69,58 @@ class ApiOauthAccessTokenAction extends ApiOauthAction $atok = null; + // XXX: Insist that oauth_token and oauth_verifier be populated? + // Spec doesn't say they MUST be. + try { + $req = OAuthRequest::from_request(); + + $this->reqToken = $req->get_parameter('oauth_token'); + $this->verifier = $req->get_parameter('oauth_verifier'); + $atok = $server->fetch_access_token($req); } catch (OAuthException $e) { common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage()); common_debug(var_export($req, true)); - $this->outputError($e->getMessage()); - return; + $code = $e->getCode(); + $this->clientError($e->getMessage(), empty($code) ? 401 : $code, 'text'); } if (empty($atok)) { - common_debug('couldn\'t get access token.'); - print "Token exchange failed. Has the request token been authorized?\n"; + + // Token exchange failed -- log it + + list($proxy, $ip) = common_client_ip(); + + $msg = sprintf( + 'API OAuth - Failure exchanging request token for access token, ' + . 'request token = %s, verifier = %s, IP = %s, proxy = %s', + $this->reqToken, + $this->verifier, + $ip, + $proxy + ); + + common_log(LOG_WARNING, $msg); + + print "Invalid request token or verifier."; + } else { - print $atok; + $this->showAccessToken($atok); } } - function outputError($msg) + /* + * Display OAuth token credentials + * + * @param OAuthToken token the access token + */ + + function showAccessToken($token) { - header('HTTP/1.1 401 Unauthorized'); - header('Content-Type: text/html; charset=utf-8'); - print $msg . "\n"; + header('Content-Type: application/x-www-form-urlencoded'); + print $token; } } - diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 7a4fe8db52..4b52ba1ba9 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -71,29 +71,33 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore } } - function new_access_token($token, $consumer) + function new_access_token($token, $consumer, $verifier) { - common_debug('new_access_token("'.$token->key.'","'.$consumer->key.'")', __FILE__); + common_debug( + 'new_access_token("' . $token->key . '","' . $consumer->key. '","' . $verifier . '")', + __FILE__ + ); $rt = new Token(); + $rt->consumer_key = $consumer->key; - $rt->tok = $token->key; - $rt->type = 0; // request + $rt->tok = $token->key; + $rt->type = 0; // request $app = Oauth_application::getByConsumerKey($consumer->key); + assert(!empty($app)); - if (empty($app)) { - common_debug("empty app!"); - } + if ($rt->find(true) && $rt->state == 1 && $rt->verifier == $verifier) { // authorized - if ($rt->find(true) && $rt->state == 1) { // authorized common_debug('request token found.', __FILE__); // find the associated user of the app $appUser = new Oauth_application_user(); + $appUser->application_id = $app->id; - $appUser->token = $rt->tok; + $appUser->token = $rt->tok; + $result = $appUser->find(true); if (!empty($result)) { @@ -106,10 +110,12 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore // go ahead and make the access token $at = new Token(); - $at->consumer_key = $consumer->key; - $at->tok = common_good_rand(16); - $at->secret = common_good_rand(16); - $at->type = 1; // access + $at->consumer_key = $consumer->key; + $at->tok = common_good_rand(16); + $at->secret = common_good_rand(16); + $at->type = 1; // access + $at->verifier = $verifier; + $at->verified_callback = $rt->verified_callback; // 1.0a $at->created = DB_DataObject_Cast::dateTime(); if (!$at->insert()) { @@ -217,4 +223,6 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore return new OAuthToken($t->tok, $t->secret); } } + + } From 70cad115734f0c34a5a2c7d6c8ce2492056a7a07 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 18:33:14 -0700 Subject: [PATCH 047/112] Update access token fetching test script to 1.0a --- tests/oauth/exchangetokens.php | 113 +++++++++++++++++++++---------- tests/oauth/fetch_temp_creds.php | 36 ++++++---- 2 files changed, 98 insertions(+), 51 deletions(-) diff --git a/tests/oauth/exchangetokens.php b/tests/oauth/exchangetokens.php index 2394826c7e..049c0cad07 100755 --- a/tests/oauth/exchangetokens.php +++ b/tests/oauth/exchangetokens.php @@ -24,82 +24,121 @@ require_once INSTALLDIR . '/extlib/OAuth.php'; $ini = parse_ini_file("oauth.ini"); -$test_consumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']); +// Check to make sure we have everything we need from the ini file +foreach(array('consumer_key', 'consumer_secret', 'apiroot', 'access_token_url') as $inikey) { + if (empty($ini[$inikey])) { + print "You forgot to specify a $inikey in your oauth.ini file.\n"; + exit(1); + } +} -$at_endpoint = $ini['apiroot'] . $ini['access_token_url']; +$consumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']); -$shortoptions = 't:s:'; -$longoptions = array('oauth_token=', 'token_secret='); +$endpoint = $ini['apiroot'] . $ini['access_token_url']; + +$shortoptions = 't:s:v:'; +$longoptions = array('oauth_token=', 'oauth_token_secret=', 'oauth_verifier='); $helptext = <<sign_request($hmac_method, $test_consumer, $rt); +try { -$r = httpRequest($req_req->to_url()); + $oauthReq = OAuthRequest::from_consumer_and_token( + $consumer, + $rtok, + "POST", + $endpoint, + $params + ); -common_debug("Exchange request token = " . var_export($rt, true)); -common_debug("Exchange tokens URL: " . $req_req->to_url()); + $oauthReq->sign_request($hmac_method, $consumer, $rtok); -$body = $r->getBody(); + $httpReq = httpRequest($endpoint, $oauthReq->to_postdata()); + $body = $httpReq->getBody(); -$token_stuff = array(); -parse_str($body, $token_stuff); +} catch (Exception $e) { + // oh noez + print $e->getMessage(); + print "\nOAuth Request:\n"; + var_dump($oauthReq); + exit(1); +} -print 'Access token : ' . $token_stuff['oauth_token'] . "\n"; -print 'Access token secret : ' . $token_stuff['oauth_token_secret'] . "\n"; +$tokenStuff = array(); +parse_str($body, $tokenStuff); -function httpRequest($url) +if (empty($tokenStuff['oauth_token']) || empty($tokenStuff['oauth_token_secret'])) { + print "Error! HTTP response body: $body\n"; + exit(1); +} + +print "Access Token\n"; +print ' - oauth_token = ' . $tokenStuff['oauth_token'] . "\n"; +print ' - oauth_token_secret = ' . $tokenStuff['oauth_token_secret'] . "\n"; + +function httpRequest($endpoint, $poststr) { $request = HTTPClient::start(); - $request->setConfig(array( - 'follow_redirects' => true, - 'connect_timeout' => 120, - 'timeout' => 120, - 'ssl_verify_peer' => false, - 'ssl_verify_host' => false - )); + $request->setConfig( + array( + 'follow_redirects' => true, + 'connect_timeout' => 120, + 'timeout' => 120, + 'ssl_verify_peer' => false, + 'ssl_verify_host' => false + ) + ); - return $request->get($url); + parse_str($poststr, $postdata); + return $request->post($endpoint, null, $postdata); } diff --git a/tests/oauth/fetch_temp_creds.php b/tests/oauth/fetch_temp_creds.php index 63ca351cd8..bea512a914 100755 --- a/tests/oauth/fetch_temp_creds.php +++ b/tests/oauth/fetch_temp_creds.php @@ -33,10 +33,10 @@ foreach(array('consumer_key', 'consumer_secret', 'apiroot', 'request_token_url') } } -$testConsumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']); -$requestTokenUrl = $ini['apiroot'] . $ini['request_token_url']; -$parsed = parse_url($requestTokenUrl); -$params = array(); +$consumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']); +$endpoint = $ini['apiroot'] . $ini['request_token_url']; +$parsed = parse_url($endpoint); +$params = array(); parse_str($parsed['query'], $params); $params['oauth_callback'] = 'oob'; // out-of-band @@ -45,14 +45,14 @@ $hmac_method = new OAuthSignatureMethod_HMAC_SHA1(); try { $req = OAuthRequest::from_consumer_and_token( - $testConsumer, + $consumer, null, "POST", - $requestTokenUrl, + $endpoint, $params ); - $req->sign_request($hmac_method, $testConsumer, NULL); - $r = httpRequest($req->to_url()); + $req->sign_request($hmac_method, $consumer, NULL); + $r = httpRequest($endpoint, $req->to_postdata()); } catch (Exception $e) { // oh noez print $e->getMessage(); @@ -69,18 +69,24 @@ parse_str($body, $tokenStuff); $tok = $tokenStuff['oauth_token']; $confirmed = $tokenStuff['oauth_callback_confirmed']; -if (empty($tokenStuff['oauth_token']) || empty($confirmed) || $confirmed != 'true') { - print "Error: $body\n"; +if (empty($tokenStuff['oauth_token']) + || empty($tokenStuff['oauth_token_secret']) + || empty($confirmed) + || $confirmed != 'true') +{ + print "Error! HTTP response body: $body\n"; exit(1); } $authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $tok; -print "\nSuccess! "; -print "Authorize URL:\n\n$authurl\n\n"; +print "Request Token\n"; +print ' - oauth_token = ' . $tokenStuff['oauth_token'] . "\n"; +print ' - oauth_token_secret = ' . $tokenStuff['oauth_token_secret'] . "\n"; +print "Authorize URL\n $authurl\n\n"; print "Now paste the Authorize URL into your browser and authorize your temporary credentials.\n"; -function httpRequest($url) +function httpRequest($endpoint, $poststr) { $request = HTTPClient::start(); @@ -94,5 +100,7 @@ function httpRequest($url) ) ); - return $request->post($url); + // Turn signed request query string back into an array + parse_str($poststr, $postdata); + return $request->post($endpoint, null, $postdata); } From 46de847ce0b72a85b96fcbea94624db98c265d45 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 18:41:34 -0700 Subject: [PATCH 048/112] Rename OAuth token credential fetching script --- tests/oauth/{exchangetokens.php => fetch_token_creds.php} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) rename tests/oauth/{exchangetokens.php => fetch_token_creds.php} (96%) diff --git a/tests/oauth/exchangetokens.php b/tests/oauth/fetch_token_creds.php similarity index 96% rename from tests/oauth/exchangetokens.php rename to tests/oauth/fetch_token_creds.php index 049c0cad07..a508c7240c 100755 --- a/tests/oauth/exchangetokens.php +++ b/tests/oauth/fetch_token_creds.php @@ -40,8 +40,10 @@ $shortoptions = 't:s:v:'; $longoptions = array('oauth_token=', 'oauth_token_secret=', 'oauth_verifier='); $helptext = << Date: Thu, 7 Oct 2010 19:23:43 -0700 Subject: [PATCH 049/112] Some fixups to this the OAuth verify credentials test script --- tests/oauth/verifycreds.php | 76 ++++++++++++++++++++----------------- 1 file changed, 41 insertions(+), 35 deletions(-) diff --git a/tests/oauth/verifycreds.php b/tests/oauth/verifycreds.php index 873bdb8bdd..7eea6e7e74 100755 --- a/tests/oauth/verifycreds.php +++ b/tests/oauth/verifycreds.php @@ -22,15 +22,15 @@ define('INSTALLDIR', realpath(dirname(__FILE__) . '/../..')); require_once INSTALLDIR . '/extlib/OAuth.php'; -$shortoptions = 'o:s:'; -$longoptions = array('oauth_token=', 'token_secret='); +$shortoptions = 't:s:'; +$longoptions = array('oauth_token=', 'oauth_token_secret='); $helptext = <<sign_request($hmac_method, $test_consumer, $at); + $hmac_method = new OAuthSignatureMethod_HMAC_SHA1(); -$r = httpRequest($req_req->to_url()); + $oauthReq = OAuthRequest::from_consumer_and_token( + $consumer, + $atok, + "GET", + $endpoint, + $params + ); -$body = $r->getBody(); + $oauthReq->sign_request($hmac_method, $consumer, $atok); -print "$body\n"; + $httpReq = httpRequest($oauthReq->to_url()); -//print $req_req->to_url() . "\n\n"; +} catch (Exception $e) { + print "Error! HTTP response body: " . $httpReq->getBody(); + exit(1); +} + +print $httpReq->getBody(); function httpRequest($url) { $request = HTTPClient::start(); - $request->setConfig(array( - 'follow_redirects' => true, - 'connect_timeout' => 120, - 'timeout' => 120, - 'ssl_verify_peer' => false, - 'ssl_verify_host' => false - )); + $request->setConfig( + array( + 'follow_redirects' => true, + 'connect_timeout' => 120, + 'timeout' => 120, + 'ssl_verify_peer' => false, + 'ssl_verify_host' => false + ) + ); return $request->get($url); } - From be1668a1bd8436952bd9ee36ed710fae9834643f Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 19:24:24 -0700 Subject: [PATCH 050/112] Renamed the OAuth verify credentials test script --- tests/oauth/{verifycreds.php => oauth_verify_creds.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/oauth/{verifycreds.php => oauth_verify_creds.php} (100%) diff --git a/tests/oauth/verifycreds.php b/tests/oauth/oauth_verify_creds.php similarity index 100% rename from tests/oauth/verifycreds.php rename to tests/oauth/oauth_verify_creds.php From 3e0a1e3b884f31473383825fa9b54ab4e3e7b578 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 19:40:31 -0700 Subject: [PATCH 051/112] Some fixups --- tests/oauth/statusupdate.php | 75 ++++++++++++++++++++---------------- 1 file changed, 42 insertions(+), 33 deletions(-) diff --git a/tests/oauth/statusupdate.php b/tests/oauth/statusupdate.php index 4aa230e280..5e9d2a7ab0 100644 --- a/tests/oauth/statusupdate.php +++ b/tests/oauth/statusupdate.php @@ -22,16 +22,16 @@ define('INSTALLDIR', realpath(dirname(__FILE__) . '/../..')); require_once INSTALLDIR . '/extlib/OAuth.php'; -$shortoptions = 'o:s:u:'; +$shortoptions = 't:s:u:'; $longoptions = array('oauth_token=', 'token_secret=', 'update='); $helptext = <<sign_request($hmac_method, $test_consumer, $at); +try { -$r = httpRequest($req_req->to_url()); + $oauthReq = OAuthRequest::from_consumer_and_token( + $consumer, + $atok, + 'POST', + $endpoint, + $params + ); -$body = $r->getBody(); + $oauthReq->sign_request($hmac_method, $consumer, $atok); -print "$body\n"; + $httpReq = httpRequest($endpoint, $oauthReq->to_postdata()); -//print $req_req->to_url() . "\n\n"; + print $httpReq->getBody(); -function httpRequest($url) +} catch (Exception $e) { + print "Error! . $e->getMessage() . 'HTTP reponse body: " . $httpReq->getBody(); + exit(1); +} + +function httpRequest($endpoint, $poststr) { $request = HTTPClient::start(); - $request->setConfig(array( - 'follow_redirects' => true, - 'connect_timeout' => 120, - 'timeout' => 120, - 'ssl_verify_peer' => false, - 'ssl_verify_host' => false - )); + $request->setConfig( + array( + 'follow_redirects' => true, + 'connect_timeout' => 120, + 'timeout' => 120, + 'ssl_verify_peer' => false, + 'ssl_verify_host' => false + ) + ); - return $request->post($url); + // Turn signed request query string back into an array + parse_str($poststr, $postdata); + return $request->post($endpoint, null, $postdata); } From 626f3066002c707e11befcbba84aa7f3b372fd0c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 19:41:05 -0700 Subject: [PATCH 052/112] Rename OAuth status update script --- tests/oauth/{statusupdate.php => oauth_post_notice.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/oauth/{statusupdate.php => oauth_post_notice.php} (100%) diff --git a/tests/oauth/statusupdate.php b/tests/oauth/oauth_post_notice.php similarity index 100% rename from tests/oauth/statusupdate.php rename to tests/oauth/oauth_post_notice.php From 590d96f70e79e371610633e48497e14b5e6bc445 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 19:43:55 -0700 Subject: [PATCH 053/112] Rename oauth.ini example to oauth.ini.sample --- tests/oauth/{oauth.ini => oauth.ini.sample} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/oauth/{oauth.ini => oauth.ini.sample} (100%) diff --git a/tests/oauth/oauth.ini b/tests/oauth/oauth.ini.sample similarity index 100% rename from tests/oauth/oauth.ini rename to tests/oauth/oauth.ini.sample From baa8ae778a01326927394818335d410233d24c49 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 7 Oct 2010 19:46:46 -0700 Subject: [PATCH 054/112] Update OAuth test script README --- tests/oauth/README | 162 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 150 insertions(+), 12 deletions(-) diff --git a/tests/oauth/README b/tests/oauth/README index dd76feb0c6..13f1d0c039 100644 --- a/tests/oauth/README +++ b/tests/oauth/README @@ -1,22 +1,160 @@ Some very rough test scripts for hitting up the OAuth endpoints. -Note: this works best if you register an OAuth application, leaving -the callback URL blank. +These instructions assume you understand the basics of how OAuth +works. You may want to read up about it first. Here are some good +resources for learning about OAuth: -Put your instance info and consumer key and secret in oauth.ini + http://hueniverse.com/oauth/ + http://tools.ietf.org/html/rfc5849 -Example usage: --------------- +To use these scripts (and OAuth in general) first you will need to +register and OAuth client application with your StatusNet instance: -php getrequesttoken.php + http://example.status.net/settings/oauthapps -Gets a request token, token secret and a url to authorize it. Once -you authorize the request token you can exchange it for an access token... +oauth.ini +--------- -php exchangetokens.php --oauth_token=b9a79548a88c1aa9a5bea73103c6d41d --token_secret=4a47d9337fc0202a14ab552e17a3b657 +Using oauth.ini.sample as a guide, put your StatusNet OAuth endpoints +and consumer key and secret in a file called oauth.ini and save it +in the same directory as these scripts. -Once you have your access token, go ahead and try a protected API -resource: +fetch_temp_creds.php +-------------------- -php verifycreds.php --oauth_token=cf2de7665f0dda0a82c2dc39b01be7f9 --token_secret=4524c3b712200138e1a4cff2e9ca83d8 +Will fetch a request token, token secret and a URL to authorize the +token. Once you authorize the request token, you can exchange it +for an access token. + +example usage: + + $ php fetch_temp_creds.php + Request Token + - oauth_token = 89d481e376edc622f08da5791e6a4446 + - oauth_token_secret = 6d028bcd1ea125cbed7da2f254219885 + Authorize URL + http://example.status.net/api/oauth/authorize?oauth_token=89d481e376edc622f08da5791e6a4446 + + Now paste the Authorize URL into your browser and authorize your temporary credentials. + +fetch_token_creds.php +--------------------- + +After you have authorized your request token, you will be presented +with a verifier code, or pin, in your browser, which you will need +to get an access token. Make sure you copy it into a text buffer +or write it down or something. Then call fetch_token_credentials.php +to exchange your temporary credentials for real token credentials. + +example usage: + + $ php fetch_token_creds.php -t 89d481e376edc622f08da5791e6a4446 -s 6d028bcd1ea125cbed7da2f254219885 -v 305162 + Access Token + - oauth_token = 9b354df102d8e2b4621122c85d8d045c + - oauth_token_secret = 1800a88f1574b47d595214a74e5b1ec5 + + +oauth_verify_credentials.php +---------------------------- + +Now you should have real token credentials (an OAuth access token) +and you can access protected API resources. This is an example +script that calls /api/account/verify_credentials.xml. + +example usage: + + $ php oauth_verify_creds.php -t 80305cd15c5c69834364ac02d7f9178c -s 673e3b2978b1b92c8edbfe172505fee1 + + + 23 + zach + zach + + + http://example.status.net/theme/default/default-avatar-stream.png + + false + 0 + + + + + + 0 + Thu Sep 30 23:11:00 +0000 2010 + 0 + 0 + UTC + + false + 4 + true + false + true + + gar + false + Wed Oct 06 23:40:14 +0000 2010 + + web + 7 + + + + false + gar + + http://example.status.net/statusnet/zach + + +oauth_post_notice.php +--------------------- + +This is another test script that lets you post a notice via OAuth. + +example usage: + + $ php oauth_post_notice.php -t 80305cd15c5c69834364ac02d7f9178c -s 673e3b2978b1b92c8edbfe172505fee1 -u 'Test test test...' + + + Test test test... + false + Fri Oct 08 02:37:35 +0000 2010 + + <a href="http://banana.com" rel="nofollow">Banana</a> + 8 + + + + false + + 23 + zach + zach + + + http://example.status.net/statusnet/theme/default/default-avatar-stream.png + + false + 0 + + + + + + 0 + Thu Sep 30 23:11:00 +0000 2010 + 0 + 0 + UTC + + false + 5 + true + false + true + http://example.status.net/statusnet/zach + + Test test test... + From f62e7c461f2fb4fcdc91b125072be953fc09fbe2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 8 Oct 2010 10:33:43 -0700 Subject: [PATCH 055/112] Fix PHP fatal error in DeletenoticeAction: died when we had a valid notice, but weren't logged in due to accessing $this->user before the login check. Moved check up to prepare() from handle() so it's done before usage --- actions/deletenotice.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/actions/deletenotice.php b/actions/deletenotice.php index 68c43040b0..2879faa5df 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -45,6 +45,12 @@ class DeletenoticeAction extends Action parent::prepare($args); $this->user = common_current_user(); + + if (!$this->user) { + common_user_error(_('Not logged in.')); + exit; + } + $notice_id = $this->trimmed('notice'); $this->notice = Notice::staticGet($notice_id); @@ -63,10 +69,7 @@ class DeletenoticeAction extends Action { parent::handle($args); - if (!common_logged_in()) { - common_user_error(_('Not logged in.')); - exit; - } else if ($this->notice->profile_id != $this->user_profile->id && + if ($this->notice->profile_id != $this->user_profile->id && !$this->user->hasRight(Right::DELETEOTHERSNOTICE)) { common_user_error(_('Can\'t delete this notice.')); exit; From 69b13cb279d7b60cb3a7beb9ad39cfe3a3b7745b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 8 Oct 2010 10:42:59 -0700 Subject: [PATCH 056/112] Normalize execution guards on OStatus php files; mostly helps cut down on annoying 'class not found' errors when something spiders the dirs. :P --- plugins/OStatus/OStatusPlugin.php | 4 +++- plugins/OStatus/actions/hostmeta.php | 4 +++- plugins/OStatus/actions/ostatusgroup.php | 4 +++- plugins/OStatus/actions/ostatusinit.php | 5 +++-- plugins/OStatus/actions/ostatussub.php | 4 +++- plugins/OStatus/actions/ownerxrd.php | 4 +++- plugins/OStatus/actions/pushcallback.php | 4 +++- plugins/OStatus/actions/pushhub.php | 4 ++++ plugins/OStatus/actions/userxrd.php | 4 +++- plugins/OStatus/classes/FeedSub.php | 4 ++++ plugins/OStatus/classes/HubSub.php | 4 ++++ plugins/OStatus/classes/Magicsig.php | 4 ++++ plugins/OStatus/classes/Ostatus_profile.php | 4 ++++ plugins/OStatus/classes/Ostatus_source.php | 4 ++++ plugins/OStatus/lib/feeddiscovery.php | 4 +++- plugins/OStatus/lib/hubconfqueuehandler.php | 4 ++++ plugins/OStatus/lib/huboutqueuehandler.php | 4 ++++ plugins/OStatus/lib/hubprepqueuehandler.php | 4 ++++ plugins/OStatus/lib/ostatusqueuehandler.php | 4 ++++ plugins/OStatus/lib/pushinqueuehandler.php | 4 ++++ plugins/OStatus/lib/salmonqueuehandler.php | 4 ++++ plugins/OStatus/lib/xrdaction.php | 4 +++- 22 files changed, 78 insertions(+), 11 deletions(-) diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 9c6696439a..4ab2023cbe 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -22,7 +22,9 @@ * @maintainer Brion Vibber */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/'); diff --git a/plugins/OStatus/actions/hostmeta.php b/plugins/OStatus/actions/hostmeta.php index db4c913e16..14f69ac192 100644 --- a/plugins/OStatus/actions/hostmeta.php +++ b/plugins/OStatus/actions/hostmeta.php @@ -22,7 +22,9 @@ * @maintainer James Walker */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} class HostMetaAction extends Action { diff --git a/plugins/OStatus/actions/ostatusgroup.php b/plugins/OStatus/actions/ostatusgroup.php index 7db00ffbef..24fbaac9ca 100644 --- a/plugins/OStatus/actions/ostatusgroup.php +++ b/plugins/OStatus/actions/ostatusgroup.php @@ -22,7 +22,9 @@ * @maintainer Brion Vibber */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} /** * Key UI methods: diff --git a/plugins/OStatus/actions/ostatusinit.php b/plugins/OStatus/actions/ostatusinit.php index f576823e31..91c36203c8 100644 --- a/plugins/OStatus/actions/ostatusinit.php +++ b/plugins/OStatus/actions/ostatusinit.php @@ -22,8 +22,9 @@ * @maintainer James Walker */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - +if (!defined('STATUSNET')) { + exit(1); +} class OStatusInitAction extends Action { diff --git a/plugins/OStatus/actions/ostatussub.php b/plugins/OStatus/actions/ostatussub.php index 493b519657..a293fda5db 100644 --- a/plugins/OStatus/actions/ostatussub.php +++ b/plugins/OStatus/actions/ostatussub.php @@ -22,7 +22,9 @@ * @maintainer Brion Vibber */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} /** * Key UI methods: diff --git a/plugins/OStatus/actions/ownerxrd.php b/plugins/OStatus/actions/ownerxrd.php index 9e84f72ecb..3f99e1cbd0 100644 --- a/plugins/OStatus/actions/ownerxrd.php +++ b/plugins/OStatus/actions/ownerxrd.php @@ -22,7 +22,9 @@ * @maintainer James Walker */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} class OwnerxrdAction extends XrdAction { diff --git a/plugins/OStatus/actions/pushcallback.php b/plugins/OStatus/actions/pushcallback.php index 6eec1ad16e..9b83d43c4d 100644 --- a/plugins/OStatus/actions/pushcallback.php +++ b/plugins/OStatus/actions/pushcallback.php @@ -22,7 +22,9 @@ * @maintainer Brion Vibber */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} class PushCallbackAction extends Action { diff --git a/plugins/OStatus/actions/pushhub.php b/plugins/OStatus/actions/pushhub.php index 68035ab5cc..bfd51ec02f 100644 --- a/plugins/OStatus/actions/pushhub.php +++ b/plugins/OStatus/actions/pushhub.php @@ -23,6 +23,10 @@ * @maintainer Brion Vibber */ +if (!defined('STATUSNET')) { + exit(1); +} + /** diff --git a/plugins/OStatus/actions/userxrd.php b/plugins/OStatus/actions/userxrd.php index 8179505a55..c9b1d0a5be 100644 --- a/plugins/OStatus/actions/userxrd.php +++ b/plugins/OStatus/actions/userxrd.php @@ -17,7 +17,9 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} /** * @package OStatusPlugin diff --git a/plugins/OStatus/classes/FeedSub.php b/plugins/OStatus/classes/FeedSub.php index 58beec6738..140f323846 100644 --- a/plugins/OStatus/classes/FeedSub.php +++ b/plugins/OStatus/classes/FeedSub.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * @package OStatusPlugin * @maintainer Brion Vibber diff --git a/plugins/OStatus/classes/HubSub.php b/plugins/OStatus/classes/HubSub.php index 825d36ebd6..e7ac23af58 100644 --- a/plugins/OStatus/classes/HubSub.php +++ b/plugins/OStatus/classes/HubSub.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * PuSH feed subscription record * @package Hub diff --git a/plugins/OStatus/classes/Magicsig.php b/plugins/OStatus/classes/Magicsig.php index 20025c37a6..e057deb144 100644 --- a/plugins/OStatus/classes/Magicsig.php +++ b/plugins/OStatus/classes/Magicsig.php @@ -27,6 +27,10 @@ * @link http://status.net/ */ +if (!defined('STATUSNET')) { + exit(1); +} + require_once 'Crypt/RSA.php'; class Magicsig extends Memcached_DataObject diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 10cee917e1..47aee15f8a 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * @package OStatusPlugin * @maintainer Brion Vibber diff --git a/plugins/OStatus/classes/Ostatus_source.php b/plugins/OStatus/classes/Ostatus_source.php index b76bbce56c..0fd74e48ba 100644 --- a/plugins/OStatus/classes/Ostatus_source.php +++ b/plugins/OStatus/classes/Ostatus_source.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * @package OStatusPlugin * @maintainer Brion Vibber diff --git a/plugins/OStatus/lib/feeddiscovery.php b/plugins/OStatus/lib/feeddiscovery.php index 8a166a0be5..d978cc6745 100644 --- a/plugins/OStatus/lib/feeddiscovery.php +++ b/plugins/OStatus/lib/feeddiscovery.php @@ -22,7 +22,9 @@ * @maintainer Brion Vibber */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} class FeedSubBadURLException extends FeedSubException { diff --git a/plugins/OStatus/lib/hubconfqueuehandler.php b/plugins/OStatus/lib/hubconfqueuehandler.php index 8219f8420e..d26c45be04 100644 --- a/plugins/OStatus/lib/hubconfqueuehandler.php +++ b/plugins/OStatus/lib/hubconfqueuehandler.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * Send a PuSH subscription verification from our internal hub. * @package Hub diff --git a/plugins/OStatus/lib/huboutqueuehandler.php b/plugins/OStatus/lib/huboutqueuehandler.php index 3ad94646e6..67a9d9e36b 100644 --- a/plugins/OStatus/lib/huboutqueuehandler.php +++ b/plugins/OStatus/lib/huboutqueuehandler.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * Send a raw PuSH atom update from our internal hub. * @package Hub diff --git a/plugins/OStatus/lib/hubprepqueuehandler.php b/plugins/OStatus/lib/hubprepqueuehandler.php index 0d585938f4..0ed6a3ec57 100644 --- a/plugins/OStatus/lib/hubprepqueuehandler.php +++ b/plugins/OStatus/lib/hubprepqueuehandler.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * When we have a large batch of PuSH consumers, we break the data set * into smaller chunks. Enqueue final destinations... diff --git a/plugins/OStatus/lib/ostatusqueuehandler.php b/plugins/OStatus/lib/ostatusqueuehandler.php index 5e0ab46a5b..d5ee0c5041 100644 --- a/plugins/OStatus/lib/ostatusqueuehandler.php +++ b/plugins/OStatus/lib/ostatusqueuehandler.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * Prepare PuSH and Salmon distributions for an outgoing message. * diff --git a/plugins/OStatus/lib/pushinqueuehandler.php b/plugins/OStatus/lib/pushinqueuehandler.php index 965d042668..ec1911653a 100644 --- a/plugins/OStatus/lib/pushinqueuehandler.php +++ b/plugins/OStatus/lib/pushinqueuehandler.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * Process a feed distribution POST from a PuSH hub. * @package FeedSub diff --git a/plugins/OStatus/lib/salmonqueuehandler.php b/plugins/OStatus/lib/salmonqueuehandler.php index 56d3c9eff2..e70d5ff521 100644 --- a/plugins/OStatus/lib/salmonqueuehandler.php +++ b/plugins/OStatus/lib/salmonqueuehandler.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + /** * Send a Salmon notification in the background. * @package OStatusPlugin diff --git a/plugins/OStatus/lib/xrdaction.php b/plugins/OStatus/lib/xrdaction.php index c8b5beff37..d1488dbdec 100644 --- a/plugins/OStatus/lib/xrdaction.php +++ b/plugins/OStatus/lib/xrdaction.php @@ -22,7 +22,9 @@ * @maintainer James Walker */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} class XrdAction extends Action { From e23ad7392fa0a84a3cea2f50b0f96e4ba68a372b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 8 Oct 2010 11:01:13 -0700 Subject: [PATCH 057/112] Normalize execution guards in imap plugin files. --- plugins/Imap/imapmailhandler.php | 4 +++- plugins/Imap/imapmanager.php | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/Imap/imapmailhandler.php b/plugins/Imap/imapmailhandler.php index 3d4b6113a9..92abf64747 100644 --- a/plugins/Imap/imapmailhandler.php +++ b/plugins/Imap/imapmailhandler.php @@ -17,7 +17,9 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} class IMAPMailHandler extends MailHandler { diff --git a/plugins/Imap/imapmanager.php b/plugins/Imap/imapmanager.php index e2f8c6d543..a9e531e1ae 100644 --- a/plugins/Imap/imapmanager.php +++ b/plugins/Imap/imapmanager.php @@ -29,6 +29,10 @@ * @link http://status.net/ */ +if (!defined('STATUSNET')) { + exit(1); +} + class ImapManager extends IoManager { protected $conn = null; From 7adc6027ff3c344f549bddd2c60372a2c5ea9c40 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 8 Oct 2010 11:06:30 -0700 Subject: [PATCH 058/112] Fix fatal error in FacebookremoveAction if we end up getting called double and the foreign_link entry has already been removed. --- plugins/Facebook/facebookremove.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/Facebook/facebookremove.php b/plugins/Facebook/facebookremove.php index b048a435f5..bc76daaef6 100644 --- a/plugins/Facebook/facebookremove.php +++ b/plugins/Facebook/facebookremove.php @@ -48,6 +48,12 @@ class FacebookremoveAction extends FacebookAction $flink = Foreign_link::getByForeignID($this->arg('fb_sig_user'), 2); + if (!$flink) { + common_log(LOG_ERR, "Tried to delete missing foreign_link entry with Facebook ID " . $this->arg('fb_sig_user')); + $this->serverError(_m('Couldn\'t remove Facebook user: already deleted.')); + return; + } + common_debug("Removing foreign link to Facebook - local user ID: $flink->user_id, Facebook ID: $flink->foreign_id"); $result = $flink->delete(); From 5fe59322bc9e2be876952c29a52ff43513f46463 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 8 Oct 2010 11:12:36 -0700 Subject: [PATCH 059/112] Check for Twitter foreign link actually existing before trying to delete it; friendlier error message in TwittersettingsAction --- plugins/TwitterBridge/twittersettings.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index dab8ab34fe..33c5eb65bb 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -247,6 +247,11 @@ class TwittersettingsAction extends ConnectSettingsAction $user = common_current_user(); $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE); + if (empty($flink)) { + $this->clientError(_m('No Twitter connection to remove.')); + return; + } + $result = $flink->safeDelete(); if (empty($result)) { From a30ea4568ff4b2a324a8a6a8870d1d72fa9ddab3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 8 Oct 2010 11:23:53 -0700 Subject: [PATCH 060/112] Normalize execution guards in OpenID plugin files; avoids annoying fatal errors when .php files get spidered. --- plugins/OpenID/User_openid.php | 5 ++++- plugins/OpenID/User_openid_trustroot.php | 5 ++++- plugins/OpenID/finishaddopenid.php | 2 +- plugins/OpenID/finishopenidlogin.php | 4 +++- plugins/OpenID/openid.php | 6 +++--- plugins/OpenID/openidlogin.php | 4 +++- plugins/OpenID/openidserver.php | 4 +--- plugins/OpenID/openidsettings.php | 3 +-- plugins/OpenID/openidtrust.php | 5 +++-- 9 files changed, 23 insertions(+), 15 deletions(-) diff --git a/plugins/OpenID/User_openid.php b/plugins/OpenID/User_openid.php index 1beff9ea30..e34cf21f2c 100644 --- a/plugins/OpenID/User_openid.php +++ b/plugins/OpenID/User_openid.php @@ -2,7 +2,10 @@ /** * Table Definition for user_openid */ -require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; + +if (!defined('STATUSNET')) { + exit(1); +} class User_openid extends Memcached_DataObject { diff --git a/plugins/OpenID/User_openid_trustroot.php b/plugins/OpenID/User_openid_trustroot.php index 17c03afb02..69e0a3f3e0 100644 --- a/plugins/OpenID/User_openid_trustroot.php +++ b/plugins/OpenID/User_openid_trustroot.php @@ -2,7 +2,10 @@ /** * Table Definition for user_openid_trustroot */ -require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; + +if (!defined('STATUSNET')) { + exit(1); +} class User_openid_trustroot extends Memcached_DataObject { diff --git a/plugins/OpenID/finishaddopenid.php b/plugins/OpenID/finishaddopenid.php index 47b3f7fb16..6eb2f2d206 100644 --- a/plugins/OpenID/finishaddopenid.php +++ b/plugins/OpenID/finishaddopenid.php @@ -27,7 +27,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { +if (!defined('STATUSNET')) { exit(1); } diff --git a/plugins/OpenID/finishopenidlogin.php b/plugins/OpenID/finishopenidlogin.php index 0c03b5c4db..01dd61edb1 100644 --- a/plugins/OpenID/finishopenidlogin.php +++ b/plugins/OpenID/finishopenidlogin.php @@ -17,7 +17,9 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} require_once INSTALLDIR.'/plugins/OpenID/openid.php'; diff --git a/plugins/OpenID/openid.php b/plugins/OpenID/openid.php index 1b93163e5f..ad251aa2cd 100644 --- a/plugins/OpenID/openid.php +++ b/plugins/OpenID/openid.php @@ -17,9 +17,9 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - -require_once(INSTALLDIR.'/plugins/OpenID/User_openid.php'); +if (!defined('STATUSNET')) { + exit(1); +} require_once('Auth/OpenID.php'); require_once('Auth/OpenID/Consumer.php'); diff --git a/plugins/OpenID/openidlogin.php b/plugins/OpenID/openidlogin.php index 20d6e070cd..4046068cfa 100644 --- a/plugins/OpenID/openidlogin.php +++ b/plugins/OpenID/openidlogin.php @@ -17,7 +17,9 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} require_once INSTALLDIR.'/plugins/OpenID/openid.php'; diff --git a/plugins/OpenID/openidserver.php b/plugins/OpenID/openidserver.php index b2cf1f8ac3..ed9db4fd28 100644 --- a/plugins/OpenID/openidserver.php +++ b/plugins/OpenID/openidserver.php @@ -28,13 +28,11 @@ * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { +if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR.'/lib/action.php'; require_once INSTALLDIR.'/plugins/OpenID/openid.php'; -require_once(INSTALLDIR.'/plugins/OpenID/User_openid_trustroot.php'); /** * Settings for OpenID diff --git a/plugins/OpenID/openidsettings.php b/plugins/OpenID/openidsettings.php index 505e7d0ee3..b7d5bd084d 100644 --- a/plugins/OpenID/openidsettings.php +++ b/plugins/OpenID/openidsettings.php @@ -27,11 +27,10 @@ * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { +if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR.'/lib/accountsettingsaction.php'; require_once INSTALLDIR.'/plugins/OpenID/openid.php'; /** diff --git a/plugins/OpenID/openidtrust.php b/plugins/OpenID/openidtrust.php index ed6ca73a47..89f3150f63 100644 --- a/plugins/OpenID/openidtrust.php +++ b/plugins/OpenID/openidtrust.php @@ -17,10 +17,11 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} require_once INSTALLDIR.'/plugins/OpenID/openid.php'; -require_once(INSTALLDIR.'/plugins/OpenID/User_openid_trustroot.php'); class OpenidtrustAction extends Action { From 34e9549756102dccd9069fc6156f1c28839801e8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 8 Oct 2010 11:26:57 -0700 Subject: [PATCH 061/112] execution guard fixes in Facebook plugin files --- plugins/Facebook/FBConnectAuth.php | 4 ++++ plugins/Facebook/facebookutil.php | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/plugins/Facebook/FBConnectAuth.php b/plugins/Facebook/FBConnectAuth.php index f06dffaaab..d6d3786261 100644 --- a/plugins/Facebook/FBConnectAuth.php +++ b/plugins/Facebook/FBConnectAuth.php @@ -27,6 +27,10 @@ * @link http://status.net/ */ +if (!defined('STATUSNET')) { + exit(1); +} + require_once INSTALLDIR . '/plugins/Facebook/FacebookPlugin.php'; class FBConnectauthAction extends Action diff --git a/plugins/Facebook/facebookutil.php b/plugins/Facebook/facebookutil.php index e78856f7c4..fb70c51bc5 100644 --- a/plugins/Facebook/facebookutil.php +++ b/plugins/Facebook/facebookutil.php @@ -17,6 +17,10 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { + exit(1); +} + require_once INSTALLDIR . '/plugins/Facebook/facebook/facebook.php'; require_once INSTALLDIR . '/plugins/Facebook/facebookaction.php'; require_once INSTALLDIR . '/lib/noticelist.php'; From 5215423ea908218566909ab628fad88e780ee1e8 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 9 Oct 2010 16:15:48 +0200 Subject: [PATCH 062/112] Localisation updates from http://translatewiki.net. --- locale/af/LC_MESSAGES/statusnet.po | 50 ++-- locale/ar/LC_MESSAGES/statusnet.po | 50 ++-- locale/arz/LC_MESSAGES/statusnet.po | 50 ++-- locale/bg/LC_MESSAGES/statusnet.po | 50 ++-- locale/br/LC_MESSAGES/statusnet.po | 50 ++-- locale/ca/LC_MESSAGES/statusnet.po | 136 +++++------ locale/cs/LC_MESSAGES/statusnet.po | 50 ++-- locale/de/LC_MESSAGES/statusnet.po | 50 ++-- locale/en_GB/LC_MESSAGES/statusnet.po | 50 ++-- locale/eo/LC_MESSAGES/statusnet.po | 52 ++-- locale/es/LC_MESSAGES/statusnet.po | 50 ++-- locale/fa/LC_MESSAGES/statusnet.po | 50 ++-- locale/fi/LC_MESSAGES/statusnet.po | 50 ++-- locale/fr/LC_MESSAGES/statusnet.po | 72 +++--- locale/ga/LC_MESSAGES/statusnet.po | 50 ++-- locale/gl/LC_MESSAGES/statusnet.po | 50 ++-- locale/hsb/LC_MESSAGES/statusnet.po | 50 ++-- locale/hu/LC_MESSAGES/statusnet.po | 50 ++-- locale/ia/LC_MESSAGES/statusnet.po | 66 ++--- locale/is/LC_MESSAGES/statusnet.po | 50 ++-- locale/it/LC_MESSAGES/statusnet.po | 50 ++-- locale/ja/LC_MESSAGES/statusnet.po | 50 ++-- locale/ka/LC_MESSAGES/statusnet.po | 50 ++-- locale/ko/LC_MESSAGES/statusnet.po | 50 ++-- locale/mk/LC_MESSAGES/statusnet.po | 66 ++--- locale/nb/LC_MESSAGES/statusnet.po | 50 ++-- locale/nl/LC_MESSAGES/statusnet.po | 66 ++--- locale/nn/LC_MESSAGES/statusnet.po | 50 ++-- locale/pl/LC_MESSAGES/statusnet.po | 50 ++-- locale/pt/LC_MESSAGES/statusnet.po | 50 ++-- locale/pt_BR/LC_MESSAGES/statusnet.po | 50 ++-- locale/ru/LC_MESSAGES/statusnet.po | 50 ++-- locale/statusnet.pot | 44 ++-- locale/sv/LC_MESSAGES/statusnet.po | 50 ++-- locale/te/LC_MESSAGES/statusnet.po | 50 ++-- locale/tr/LC_MESSAGES/statusnet.po | 50 ++-- locale/uk/LC_MESSAGES/statusnet.po | 66 ++--- locale/zh_CN/LC_MESSAGES/statusnet.po | 90 ++++--- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 30 +++ plugins/Adsense/locale/Adsense.pot | 2 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 11 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 104 ++++++++ .../locale/ia/LC_MESSAGES/AnonymousFave.po | 11 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 11 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 11 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 106 ++++++++ .../locale/uk/LC_MESSAGES/AnonymousFave.po | 11 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/id/LC_MESSAGES/Autocomplete.po | 32 +++ .../locale/pt_BR/LC_MESSAGES/Autocomplete.po | 33 +++ plugins/BitlyUrl/locale/BitlyUrl.pot | 55 ++++- .../locale/es/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/pt_BR/LC_MESSAGES/BitlyUrl.po | 63 ++++- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 62 ++++- .../locale/zh_CN/LC_MESSAGES/BitlyUrl.po | 62 ++++- plugins/Blacklist/locale/Blacklist.pot | 2 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/CasAuthentication.pot | 2 +- .../locale/ClientSideShorten.pot | 2 +- .../id/LC_MESSAGES/ClientSideShorten.po | 35 +++ plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/id/LC_MESSAGES/Comet.po | 26 ++ plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 27 +++ .../locale/DirectionDetector.pot | 2 +- .../id/LC_MESSAGES/DirectionDetector.po | 27 +++ plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/id/LC_MESSAGES/DiskCache.po | 27 +++ .../locale/ru/LC_MESSAGES/DiskCache.po | 28 +++ .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 27 +++ plugins/Disqus/locale/Disqus.pot | 2 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 48 ++++ .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 12 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 46 ++++ plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 30 +++ plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 30 +++ plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 30 +++ .../locale/EmailAuthentication.pot | 2 +- .../id/LC_MESSAGES/EmailAuthentication.po | 30 +++ plugins/Facebook/locale/Facebook.pot | 62 ++--- .../locale/br/LC_MESSAGES/Facebook.po | 69 +++--- .../locale/es/LC_MESSAGES/Facebook.po | 68 +++--- .../locale/fr/LC_MESSAGES/Facebook.po | 73 +++--- .../locale/gl/LC_MESSAGES/Facebook.po | 68 +++--- .../locale/ia/LC_MESSAGES/Facebook.po | 73 +++--- .../locale/mk/LC_MESSAGES/Facebook.po | 73 +++--- .../locale/nb/LC_MESSAGES/Facebook.po | 68 +++--- .../locale/nl/LC_MESSAGES/Facebook.po | 73 +++--- .../locale/pt_BR/LC_MESSAGES/Facebook.po | 68 +++--- .../locale/tl/LC_MESSAGES/Facebook.po | 73 +++--- .../locale/uk/LC_MESSAGES/Facebook.po | 73 +++--- .../locale/zh_CN/LC_MESSAGES/Facebook.po | 68 +++--- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 26 ++ .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 27 +++ plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 38 +++ .../locale/id/LC_MESSAGES/ForceGroup.po | 38 +++ plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 30 +++ .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 31 +++ plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/id/LC_MESSAGES/Geonames.po | 31 +++ .../locale/GoogleAnalytics.pot | 2 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 30 +++ plugins/Gravatar/locale/Gravatar.pot | 2 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 55 +++++ plugins/Imap/locale/Imap.pot | 6 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 12 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 55 +++++ .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 35 +++ .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 36 +++ .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 34 +++ .../locale/LdapAuthentication.pot | 2 +- .../id/LC_MESSAGES/LdapAuthentication.po | 30 +++ .../pt_BR/LC_MESSAGES/LdapAuthentication.po | 31 +++ .../zh_CN/LC_MESSAGES/LdapAuthentication.po | 29 +++ .../locale/LdapAuthorization.pot | 2 +- .../id/LC_MESSAGES/LdapAuthorization.po | 30 +++ .../pt_BR/LC_MESSAGES/LdapAuthorization.po | 31 +++ .../zh_CN/LC_MESSAGES/LdapAuthorization.po | 29 +++ plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 31 +++ .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 32 +++ plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/id/LC_MESSAGES/Linkback.po | 34 +++ .../locale/ru/LC_MESSAGES/Linkback.po | 35 +++ .../locale/zh_CN/LC_MESSAGES/Linkback.po | 34 +++ plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 13 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 12 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 12 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 12 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 64 +++++ .../locale/tl/LC_MESSAGES/Mapstraction.po | 12 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 12 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 67 ++++++ plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 30 +++ .../locale/zh_CN/LC_MESSAGES/Memcache.po | 28 +++ plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/id/LC_MESSAGES/Memcached.po | 29 +++ .../locale/zh_CN/LC_MESSAGES/Memcached.po | 28 +++ plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/id/LC_MESSAGES/Meteor.po | 38 +++ .../Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po | 39 +++ plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 41 ++++ .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 11 +- .../locale/ta/LC_MESSAGES/MobileProfile.po | 78 ++++++ plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 33 +++ .../locale/zh_CN/LC_MESSAGES/NoticeTitle.po | 33 +++ plugins/OStatus/locale/OStatus.pot | 212 ++++++++-------- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 227 +++++++++--------- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 224 ++++++++--------- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 218 ++++++++--------- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 224 ++++++++--------- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 224 ++++++++--------- .../locale/OpenExternalLinkTarget.pot | 2 +- .../id/LC_MESSAGES/OpenExternalLinkTarget.po | 27 +++ .../LC_MESSAGES/OpenExternalLinkTarget.po | 29 +++ .../LC_MESSAGES/OpenExternalLinkTarget.po | 27 +++ plugins/OpenID/locale/OpenID.pot | 132 +++++----- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 138 +++++------ .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 138 +++++------ .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 138 +++++------ .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 138 +++++------ .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 138 +++++------ .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 138 +++++------ .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 138 +++++------ .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 30 +++ .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 31 +++ plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 26 ++ .../locale/id/LC_MESSAGES/PostDebug.po | 26 ++ .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 28 +++ .../locale/PoweredByStatusNet.pot | 2 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/RequireValidatedEmail.pot | 2 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 32 +++ plugins/Sample/locale/Sample.pot | 2 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 55 +++++ plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 27 +++ plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 91 +++++++ .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 91 +++++++ .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 91 +++++++ .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 91 +++++++ .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 91 +++++++ .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 91 +++++++ .../locale/SlicedFavorites.pot | 2 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 34 +++ .../locale/id/LC_MESSAGES/SlicedFavorites.po | 34 +++ plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 38 +++ .../locale/ia/LC_MESSAGES/SphinxSearch.po | 37 +++ .../locale/mk/LC_MESSAGES/SphinxSearch.po | 37 +++ .../locale/nl/LC_MESSAGES/SphinxSearch.po | 38 +++ .../locale/tl/LC_MESSAGES/SphinxSearch.po | 38 +++ .../locale/uk/LC_MESSAGES/SphinxSearch.po | 38 +++ plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/SubscriptionThrottle.pot | 2 +- .../id/LC_MESSAGES/SubscriptionThrottle.po | 27 +++ plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/id/LC_MESSAGES/TabFocus.po | 32 +++ plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/id/LC_MESSAGES/TightUrl.po | 27 +++ plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 28 +++ .../TwitterBridge/locale/TwitterBridge.pot | 14 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 20 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 114 +++++++++ plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/id/LC_MESSAGES/UserLimit.po | 26 ++ plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/id/LC_MESSAGES/WikiHashtags.po | 30 +++ .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 30 +++ plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 20 +- 258 files changed, 7227 insertions(+), 3036 deletions(-) create mode 100644 plugins/APC/locale/id/LC_MESSAGES/APC.po create mode 100644 plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/Comet/locale/id/LC_MESSAGES/Comet.po create mode 100644 plugins/Comet/locale/ru/LC_MESSAGES/Comet.po create mode 100644 plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po create mode 100644 plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po create mode 100644 plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po create mode 100644 plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po create mode 100644 plugins/Echo/locale/fi/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/id/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/pt/LC_MESSAGES/Echo.po create mode 100644 plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po create mode 100644 plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po create mode 100644 plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po create mode 100644 plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po create mode 100644 plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po create mode 100644 plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po create mode 100644 plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po create mode 100644 plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po create mode 100644 plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po create mode 100644 plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po create mode 100644 plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po create mode 100644 plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po create mode 100644 plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po create mode 100644 plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/OpenExternalLinkTarget/locale/id/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/pt_BR/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po create mode 100644 plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po create mode 100644 plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po create mode 100644 plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po create mode 100644 plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po create mode 100644 plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po create mode 100644 plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po create mode 100644 plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po create mode 100644 plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po create mode 100644 plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po create mode 100644 plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po create mode 100644 plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po create mode 100644 plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po create mode 100644 plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po create mode 100644 plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/XCache/locale/id/LC_MESSAGES/XCache.po diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 520bef7f59..db753499fb 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:06+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:15+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -532,7 +532,7 @@ msgid "Invalid token." msgstr "Ongeldige token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -642,7 +642,7 @@ msgid "You may not delete another user's status." msgstr "U mag nie 'n ander gebruiker se status verwyder nie." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Die kennisgewing bestaan nie." @@ -852,7 +852,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -870,7 +870,7 @@ msgstr "Moenie hierdie gebruiker blokkeer nie" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1044,7 +1044,7 @@ msgid "Delete this application" msgstr "Skrap hierdie applikasie" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1054,31 +1054,31 @@ msgstr "Skrap hierdie applikasie" msgid "Not logged in." msgstr "Nie aangeteken nie." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Hierdie kennisgewing kan nie verwyder word nie." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Verwyder kennisgewing" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Is u seker u wil hierdie kennisgewing verwyder?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Moenie hierdie kennisgewing verwyder nie" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Verwyder hierdie kennisgewing" @@ -7295,17 +7295,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "'n paar sekondes gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "ongeveer 'n minuut gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7313,12 +7313,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "ongeveer 'n uur gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7326,12 +7326,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "ongeveer een dag gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7339,12 +7339,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "ongeveer een maand gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7352,7 +7352,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "ongeveer een jaar gelede" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index a93144a506..b71f146aa2 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:16+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -536,7 +536,7 @@ msgid "Invalid token." msgstr "حجم غير صالح." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -647,7 +647,7 @@ msgid "You may not delete another user's status." msgstr "لا يمكنك حذف المستخدمين." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "لا إشعار كهذا." @@ -857,7 +857,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -875,7 +875,7 @@ msgstr "لا تمنع هذا المستخدم" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1047,7 +1047,7 @@ msgid "Delete this application" msgstr "احذف هذا التطبيق" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1057,31 +1057,31 @@ msgstr "احذف هذا التطبيق" msgid "Not logged in." msgstr "لست والجًا." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "تعذّر حذف هذا الإشعار." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "احذف الإشعار" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -7267,17 +7267,17 @@ msgid "Moderator" msgstr "مراقب" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7289,12 +7289,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7306,12 +7306,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7323,12 +7323,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7340,7 +7340,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "قبل سنة تقريبًا" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 403ea6b270..81d2bd5321 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:09+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:18+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -541,7 +541,7 @@ msgid "Invalid token." msgstr "حجم غير صالح." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -654,7 +654,7 @@ msgid "You may not delete another user's status." msgstr "لا يمكنك حذف المستخدمين." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "لا إشعار كهذا." @@ -866,7 +866,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -884,7 +884,7 @@ msgstr "لا تمنع هذا المستخدم" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 #, fuzzy msgctxt "BUTTON" @@ -1060,7 +1060,7 @@ msgid "Delete this application" msgstr "احذف هذا الإشعار" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1070,31 +1070,31 @@ msgstr "احذف هذا الإشعار" msgid "Not logged in." msgstr "لست والجًا." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "تعذّر حذف هذا الإشعار." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "احذف الإشعار" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -7273,17 +7273,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7295,12 +7295,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7312,12 +7312,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7329,12 +7329,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7346,7 +7346,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "قبل سنه تقريبًا" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index fbc7900672..6c26ec4e7c 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:10+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:19+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -531,7 +531,7 @@ msgid "Invalid token." msgstr "Неправилен размер." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -641,7 +641,7 @@ msgid "You may not delete another user's status." msgstr "Не може да изтривате бележки на друг потребител." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Няма такава бележка." @@ -850,7 +850,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -868,7 +868,7 @@ msgstr "Да не се блокира този потребител" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1039,7 +1039,7 @@ msgid "Delete this application" msgstr "Изтриване на това приложение" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1049,31 +1049,31 @@ msgstr "Изтриване на това приложение" msgid "Not logged in." msgstr "Не сте влезли в системата." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Грешка при изтриване на бележката." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Изтриване на бележката" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Наистина ли искате да изтриете тази бележка?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Да не се изтрива бележката" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -7310,17 +7310,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "преди няколко секунди" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "преди около минута" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7328,12 +7328,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "преди около час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7341,12 +7341,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "преди около ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7354,12 +7354,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "преди около месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7367,7 +7367,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "преди около година" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 0add952aa7..a79645e16b 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:11+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:23+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -531,7 +531,7 @@ msgid "Invalid token." msgstr "Fichenn direizh." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -641,7 +641,7 @@ msgid "You may not delete another user's status." msgstr "Ne c'helloc'h ket dilemel statud un implijer all." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "N'eus ket eus an ali-se." @@ -849,7 +849,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -867,7 +867,7 @@ msgstr "Arabat stankañ an implijer-mañ" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1038,7 +1038,7 @@ msgid "Delete this application" msgstr "Dilemel ar poelad-se" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1048,31 +1048,31 @@ msgstr "Dilemel ar poelad-se" msgid "Not logged in." msgstr "Nann-luget." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Diposupl eo dilemel an ali-mañ." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Dilemel un ali" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Ha sur oc'h ho peus c'hoant dilemel an ali-mañ ?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Arabat dilemel an ali-mañ" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Dilemel an ali-mañ" @@ -7228,17 +7228,17 @@ msgid "Moderator" msgstr "Habasker" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "un nebeud eilennoù zo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "1 vunutenn zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7246,12 +7246,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "1 eurvezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7259,12 +7259,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "1 devezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7272,12 +7272,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "miz zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7285,7 +7285,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "bloaz zo well-wazh" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 29f7b082a3..2ba3d3537e 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:12+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:25+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -541,7 +541,7 @@ msgid "Invalid token." msgstr "El testimoni no és vàlid." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -657,7 +657,7 @@ msgid "You may not delete another user's status." msgstr "No podeu eliminar l'estat d'un altre usuari." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "No existeix aquest avís." @@ -871,7 +871,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -889,7 +889,7 @@ msgstr "No bloquis l'usuari" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1062,7 +1062,7 @@ msgid "Delete this application" msgstr "Elimina aquesta aplicació" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1072,11 +1072,11 @@ msgstr "Elimina aquesta aplicació" msgid "Not logged in." msgstr "No heu iniciat una sessió." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "No es pot eliminar l'avís." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1084,21 +1084,21 @@ msgstr "" "Esteu a punt d'eliminar permanentment un avís. Una vegada fet, no es podrà " "desfer." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Elimina l'avís" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Esteu segur que voleu eliminar aquest avís?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "No eliminis aquest avís" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Elimina aquest avís" @@ -2360,11 +2360,11 @@ msgstr "%1$s ha abandonat el grup %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Llicència" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Llicència d'aquest lloc basat en StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." @@ -2398,7 +2398,7 @@ msgstr "" #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Selecció de llicència" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2406,11 +2406,11 @@ msgstr "Privat" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Tots els drets reservats" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" @@ -2418,19 +2418,19 @@ msgstr "Tipus" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Seleccioneu la llicència" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Detalls de la llicència" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Propietari" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nom del propietari del contingut del lloc (si s'hi aplica)." #: actions/licenseadminpanel.php:283 msgid "License Title" @@ -2438,11 +2438,11 @@ msgstr "Títol de la llicència" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "El títol de la llicència." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL de la llicència" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." @@ -2450,15 +2450,15 @@ msgstr "" #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL de la imatge de la llicència" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL de la imatge que es mostrarà juntament amb la llicència." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Desa els paràmetres de la llicència" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -3756,7 +3756,7 @@ msgstr "Sessions" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Paràmetres de sessió d'aquest lloc basat en StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -4705,7 +4705,7 @@ msgstr "Usuari" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Paràmetres d'usuari d'aquest lloc basat en StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4769,7 +4769,7 @@ msgstr "Si es permet als usuaris invitar-ne de nous." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Desa els paràmetres d'usuari" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4994,9 +4994,9 @@ msgstr "Preferit" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. #: classes/Fave.php:151 -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) ha afegit el vostre avís com a preferit" +msgstr "%1$s ha marcat l'avís %2$s com a preferit" #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -5061,7 +5061,7 @@ msgstr "La sortida del grup ha fallat." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "L'identificador del perfil %s no és vàlid." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5080,7 +5080,7 @@ msgstr "Inici de sessió" #: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s s'ha unit al grup %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5179,9 +5179,9 @@ msgstr "S'ha produït un problema en desar la safata d'entrada del grup." #. TRANS: Server exception thrown when a reply cannot be saved. #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. #: classes/Notice.php:1120 -#, fuzzy, php-format +#, php-format msgid "Could not save reply for %1$d, %2$d." -msgstr "No s'ha pogut desar la informació del grup local." +msgstr "No s'ha pogut desar la resposta de %1$d, %2$d." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. @@ -5259,9 +5259,9 @@ msgstr "Segueix" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. #: classes/Subscription.php:258 -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s ara està escoltant els teus avisos a %2$s." +msgstr "%1$s ara està seguint %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5715,7 +5715,7 @@ msgstr "Configuració de les instantànies" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Defineix la llicència del lloc" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -6458,13 +6458,13 @@ msgstr "Grup" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "Grup %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Membres" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6472,13 +6472,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Membres del grup %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Blocats" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6486,7 +6486,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "%s usuaris blocats" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6494,13 +6494,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Edita les propietats del grup %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logotip" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6508,7 +6508,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Afegeix o edita el logotip de %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6516,7 +6516,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Afegeix o edita el disseny de %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -7017,6 +7017,8 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"«%1$s« no és un tipus de fitxer compatible en aquest servidor. Proveu " +"d'utilitzar un altre format de %2$s." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. @@ -7142,15 +7144,15 @@ msgstr "Crida l'atenció a l'usuari" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "S'ha produït un error en inserir un perfil nou." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "S'ha produït un error en inserir un avatar." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "S'ha produït un error en inserir un perfil remot." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 @@ -7460,9 +7462,9 @@ msgstr "Cancel·la la subscripció" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). #: lib/usernoprofileexception.php:60 -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "L'usuari no té perfil." +msgstr "L'usuari %1$s (%2$d) no té un registre de perfil." #: lib/userprofile.php:117 msgid "Edit Avatar" @@ -7511,17 +7513,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "fa pocs segons" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "fa un minut" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7529,12 +7531,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "fa una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7542,12 +7544,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "fa un dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7555,12 +7557,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "fa un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7568,7 +7570,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "fa un any" @@ -7585,7 +7587,7 @@ msgstr "%s no és un color vàlid! Feu servir 3 o 6 caràcters hexadecimals." #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "Fitxer de còpia de seguretat de l'usuari %s (%s)" #: scripts/restoreuser.php:88 msgid "No user specified; using backup user." @@ -7594,4 +7596,4 @@ msgstr "No s'ha especificat cap usuari; s'utilitza l'usuari de reserva." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d entrades a la còpia de seguretat." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index ffcdb38579..ea2b6f04aa 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:13+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:26+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -533,7 +533,7 @@ msgid "Invalid token." msgstr "Neplatný token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -646,7 +646,7 @@ msgid "You may not delete another user's status." msgstr "Nesmíte odstraňovat status jiného uživatele." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Žádné takové oznámení." @@ -857,7 +857,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -875,7 +875,7 @@ msgstr "Zablokovat tohoto uživatele" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1047,7 +1047,7 @@ msgid "Delete this application" msgstr "Odstranit tuto aplikaci" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1057,11 +1057,11 @@ msgstr "Odstranit tuto aplikaci" msgid "Not logged in." msgstr "Nejste přihlášen(a)." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Toto oznámení nelze odstranit." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1069,21 +1069,21 @@ msgstr "" "Chystáte se trvale odstranit oznámení. Jakmile se tak stane, nemůže se " "odestát." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Odstranit oznámení" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Jste si jisti, že chcete smazat tohoto oznámení?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Neodstraňujte toto oznámení" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -7441,17 +7441,17 @@ msgid "Moderator" msgstr "Moderátor" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "před pár sekundami" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "asi před minutou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7460,12 +7460,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "asi před hodinou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7474,12 +7474,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "asi přede dnem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7488,12 +7488,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "asi před měsícem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7502,7 +7502,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "asi před rokem" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index b6889826f5..310e450afe 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:14+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -550,7 +550,7 @@ msgid "Invalid token." msgstr "Ungültiges Token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -664,7 +664,7 @@ msgid "You may not delete another user's status." msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Unbekannte Nachricht." @@ -882,7 +882,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -900,7 +900,7 @@ msgstr "Diesen Benutzer freigeben" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1072,7 +1072,7 @@ msgid "Delete this application" msgstr "Programm löschen" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1082,11 +1082,11 @@ msgstr "Programm löschen" msgid "Not logged in." msgstr "Nicht angemeldet." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Die Nachricht konnte nicht gelöscht werden." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1094,21 +1094,21 @@ msgstr "" "Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " "ist irreversibel." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Notiz löschen" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Diese Nachricht nicht löschen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Nachricht löschen" @@ -7533,17 +7533,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "vor einer Minute" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7551,12 +7551,12 @@ msgstr[0] "vor ca. einer Minute" msgstr[1] "vor ca. %d Minuten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "vor einer Stunde" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7564,12 +7564,12 @@ msgstr[0] "vor ca. einer Stunde" msgstr[1] "vor ca. %d Stunden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "vor einem Tag" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7577,12 +7577,12 @@ msgstr[0] "vor ca. einem Tag" msgstr[1] "vor ca. %d Tagen" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "vor einem Monat" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7590,7 +7590,7 @@ msgstr[0] "vor ca. einem Monat" msgstr[1] "vor ca. %d Monaten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "vor einem Jahr" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 4611c6961b..ab2386b198 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:15+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:28+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -537,7 +537,7 @@ msgid "Invalid token." msgstr "Invalid token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -651,7 +651,7 @@ msgid "You may not delete another user's status." msgstr "You may not delete another user's status." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "No such notice." @@ -862,7 +862,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -880,7 +880,7 @@ msgstr "Do not block this user" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1053,7 +1053,7 @@ msgid "Delete this application" msgstr "Delete this application" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1063,11 +1063,11 @@ msgstr "Delete this application" msgid "Not logged in." msgstr "Not logged in." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Can't delete this notice." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1075,21 +1075,21 @@ msgstr "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Delete notice" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Are you sure you want to delete this notice?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Do not delete this notice" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Delete this notice" @@ -7353,17 +7353,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "a few seconds ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "about a minute ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7371,12 +7371,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "about an hour ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7384,12 +7384,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "about a day ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7397,12 +7397,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "about a month ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7410,7 +7410,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "about a year ago" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index df248608a0..e69920f845 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:16+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:29+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -187,7 +187,7 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -"Kial ne [krei konton]](%%%%action.register%%%%) kaj poste puŝeti %s aŭ afiŝi " +"Kial ne [krei konton](%%%%action.register%%%%) kaj poste puŝeti %s aŭ afiŝi " "avizon al li?" #. TRANS: H1 text @@ -537,7 +537,7 @@ msgid "Invalid token." msgstr "Nevalida ĵetono" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -651,7 +651,7 @@ msgid "You may not delete another user's status." msgstr "Vi ne povas forigi la staton de alia uzanto." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ne estas tiu avizo." @@ -861,7 +861,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -879,7 +879,7 @@ msgstr "Ne bloki la uzanton" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1051,7 +1051,7 @@ msgid "Delete this application" msgstr "Viŝi ĉi tiun aplikon" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1061,32 +1061,32 @@ msgstr "Viŝi ĉi tiun aplikon" msgid "Not logged in." msgstr "Ne konektita." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Ne povas forigi ĉi tiun avizon." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" "Vi nun por ĉiam forigos avizon. Kiam tio fariĝos, ne plu eblos malfari tion." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Forigi avizon" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Ĉu vi certe volas forigi la avizon?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Ne forigi la avizon" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Forigi la avizon" @@ -7407,17 +7407,17 @@ msgid "Moderator" msgstr "Moderanto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "antaŭ kelkaj sekundoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "antaŭ ĉirkaŭ unu minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7425,12 +7425,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu minuto" msgstr[1] "antaŭ ĉirkaŭ %d minutoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "antaŭ ĉirkaŭ unu horo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7438,12 +7438,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu horo" msgstr[1] "antaŭ ĉirkaŭ %d horoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "antaŭ ĉirkaŭ unu tago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7451,12 +7451,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu tago" msgstr[1] "antaŭ ĉirkaŭ %d tagoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "Antaŭ ĉrikaŭ unu monato" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7464,7 +7464,7 @@ msgstr[0] "antaŭ ĉirkaŭ unu monato" msgstr[1] "antaŭ ĉirkaŭ %d monatoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "antaŭ ĉirkaŭ unu jaro" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 34fe75ae52..26c96c266d 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:17+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -541,7 +541,7 @@ msgid "Invalid token." msgstr "Token inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -658,7 +658,7 @@ msgid "You may not delete another user's status." msgstr "No puedes borrar el estado de otro usuario." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "No existe ese mensaje." @@ -870,7 +870,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -888,7 +888,7 @@ msgstr "No bloquear a este usuario" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1062,7 +1062,7 @@ msgid "Delete this application" msgstr "Borrar esta aplicación" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1072,11 +1072,11 @@ msgstr "Borrar esta aplicación" msgid "Not logged in." msgstr "No conectado." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "No se puede eliminar este mensaje." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1084,21 +1084,21 @@ msgstr "" "Estás a punto de eliminar un mensaje permanentemente. Una vez hecho esto, no " "lo puedes deshacer." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Borrar mensaje" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "¿Estás seguro de que quieres eliminar este aviso?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "No eliminar este mensaje" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Borrar este mensaje" @@ -7524,17 +7524,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "hace unos segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "hace un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7542,12 +7542,12 @@ msgstr[0] "hace aproximadamente un minuto" msgstr[1] "hace aproximadamente %d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "hace una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7555,12 +7555,12 @@ msgstr[0] "hace aproximadamente una hora" msgstr[1] "hace aproximadamente %d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "hace un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7568,12 +7568,12 @@ msgstr[0] "hace aproximadamente un día" msgstr[1] "hace aproximadamente %d días" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "hace un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7581,7 +7581,7 @@ msgstr[0] "hace aproximadamente un mes" msgstr[1] "hace aproximadamente %d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "hace un año" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 8428a42ded..ecfa7c7569 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:18+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:32+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -535,7 +535,7 @@ msgid "Invalid token." msgstr "رمز نامعتبر است." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -649,7 +649,7 @@ msgid "You may not delete another user's status." msgstr "شما توانایی حذف وضعیت کاربر دیگری را ندارید." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "چنین پیامی وجود ندارد." @@ -863,7 +863,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -881,7 +881,7 @@ msgstr "کاربر را مسدود نکن" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1054,7 +1054,7 @@ msgid "Delete this application" msgstr "این برنامه حذف شود" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1064,11 +1064,11 @@ msgstr "این برنامه حذف شود" msgid "Not logged in." msgstr "شما به سیستم وارد نشده اید." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "نمی‌توان این پیام را پاک کرد." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1076,21 +1076,21 @@ msgstr "" "شما می‌خواهید یک پیام را به طور کامل پاک کنید. پس از انجام این کار نمی‌توان " "پیام را بازگرداند." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "پیام را پاک کن" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "آیا اطمینان دارید که می‌خواهید این پیام را پاک کنید؟" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "این پیام را پاک نکن" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -7457,60 +7457,60 @@ msgid "Moderator" msgstr "مدیر" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "چند ثانیه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "حدود یک روز پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "حدود یک ماه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "حدود یک سال پیش" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index a10325fc6a..f239374cad 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:19+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:33+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -546,7 +546,7 @@ msgid "Invalid token." msgstr "Koko ei kelpaa." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -662,7 +662,7 @@ msgid "You may not delete another user's status." msgstr "Et voi poistaa toisen käyttäjän päivitystä." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Päivitystä ei ole." @@ -873,7 +873,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -891,7 +891,7 @@ msgstr "Älä estä tätä käyttäjää" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 #, fuzzy msgctxt "BUTTON" @@ -1066,7 +1066,7 @@ msgid "Delete this application" msgstr "Poista tämä päivitys" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1076,11 +1076,11 @@ msgstr "Poista tämä päivitys" msgid "Not logged in." msgstr "Et ole kirjautunut sisään." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Tätä päivitystä ei voi poistaa." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1088,21 +1088,21 @@ msgstr "" "Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei " "voi enää perua." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Poista päivitys" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Oletko varma että haluat poistaa tämän päivityksen?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Älä poista tätä päivitystä" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -7474,17 +7474,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "muutama sekunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "noin minuutti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7492,12 +7492,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "noin tunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7505,12 +7505,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "noin päivä sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7518,12 +7518,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "noin kuukausi sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7531,7 +7531,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "noin vuosi sitten" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index cf09b012bc..56b5a6eee7 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:20+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -497,7 +497,7 @@ msgstr "Vous avez été bloqué de ce groupe par l’administrateur." #: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." +msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s." #: actions/apigroupleave.php:116 msgid "You are not a member of this group." @@ -548,7 +548,7 @@ msgid "Invalid token." msgstr "Jeton incorrect." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -669,7 +669,7 @@ msgid "You may not delete another user's status." msgstr "Vous ne pouvez pas supprimer le statut d’un autre utilisateur." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Avis non trouvé." @@ -884,7 +884,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -902,7 +902,7 @@ msgstr "Ne pas bloquer cet utilisateur" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1075,7 +1075,7 @@ msgid "Delete this application" msgstr "Supprimer cette application" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1085,11 +1085,11 @@ msgstr "Supprimer cette application" msgid "Not logged in." msgstr "Non connecté." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Impossible de supprimer cet avis." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1097,21 +1097,21 @@ msgstr "" "Vous êtes sur le point de supprimer définitivement un message. Une fois cela " "fait, il est impossible de l’annuler." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Supprimer cet avis" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Voulez-vous vraiment supprimer cet avis ?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -5039,9 +5039,9 @@ msgstr "Ajouter à mes favoris" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. #: classes/Fave.php:151 -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) a ajouté un de vos avis à ses favoris" +msgstr "%1$s a marqué l’avis %2$s comme favori." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -5104,7 +5104,7 @@ msgstr "La désinscription du groupe a échoué." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "L’identifiant de profil « %s » est invalide." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5221,9 +5221,9 @@ msgstr "Problème lors de l’enregistrement de la boîte de réception du group #. TRANS: Server exception thrown when a reply cannot be saved. #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. #: classes/Notice.php:1120 -#, fuzzy, php-format +#, php-format msgid "Could not save reply for %1$d, %2$d." -msgstr "Impossible d’enregistrer les informations du groupe local." +msgstr "Impossible d’enregistrer la réponse à %1$d, %2$d." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. @@ -5303,9 +5303,9 @@ msgstr "Suivre" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. #: classes/Subscription.php:258 -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s a rejoint le groupe %2$s." +msgstr "%1$s suit à présent %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5907,7 +5907,7 @@ msgstr "Révoquer" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "l’élément « auteur » doit contenir un élément « nom »." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -7521,9 +7521,9 @@ msgstr "Désabonnement" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). #: lib/usernoprofileexception.php:60 -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "Aucun profil ne correspond à cet utilisateur." +msgstr "L’utilisateur %1$s (%2$d) n’a pas de profil." #: lib/userprofile.php:117 msgid "Edit Avatar" @@ -7572,17 +7572,17 @@ msgid "Moderator" msgstr "Modérateur" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "il y a quelques secondes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "il y a 1 minute" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7590,12 +7590,12 @@ msgstr[0] "une minute" msgstr[1] "%d minutes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "il y a 1 heure" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7603,12 +7603,12 @@ msgstr[0] "une heure" msgstr[1] "%d heures" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "il y a 1 jour" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7616,12 +7616,12 @@ msgstr[0] "un jour" msgstr[1] "%d jours" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "il y a 1 mois" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7629,7 +7629,7 @@ msgstr[0] "un" msgstr[1] "%d" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "il y a environ 1 an" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index b2ca157b27..924661cb26 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:21+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:42+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -544,7 +544,7 @@ msgid "Invalid token." msgstr "Tamaño inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -658,7 +658,7 @@ msgid "You may not delete another user's status." msgstr "Non deberías eliminar o estado de outro usuario" #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ningún chío." @@ -874,7 +874,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 #, fuzzy msgctxt "BUTTON" @@ -894,7 +894,7 @@ msgstr "Bloquear usuario" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 #, fuzzy msgctxt "BUTTON" @@ -1076,7 +1076,7 @@ msgid "Delete this application" msgstr "Eliminar chío" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1086,11 +1086,11 @@ msgstr "Eliminar chío" msgid "Not logged in." msgstr "Non está logueado." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Non se pode eliminar este chíos." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 #, fuzzy msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1099,22 +1099,22 @@ msgstr "" "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " "atrás... Quedas avisado!" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Eliminar chío" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Estas seguro que queres eliminar este chío?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 #, fuzzy msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 #, fuzzy msgid "Delete this notice" msgstr "Eliminar chío" @@ -7619,17 +7619,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "fai uns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "fai un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7640,12 +7640,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "fai unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7656,12 +7656,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "fai un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7672,12 +7672,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "fai un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7688,7 +7688,7 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "fai un ano" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index f447ea3c9a..9b851f719d 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:22+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:44+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -538,7 +538,7 @@ msgid "Invalid token." msgstr "Pase incorrecto." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -654,7 +654,7 @@ msgid "You may not delete another user's status." msgstr "Non pode borrar o estado doutro usuario." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Non existe tal nota." @@ -869,7 +869,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -887,7 +887,7 @@ msgstr "Non bloquear este usuario" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1060,7 +1060,7 @@ msgid "Delete this application" msgstr "Borrar a aplicación" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1070,11 +1070,11 @@ msgstr "Borrar a aplicación" msgid "Not logged in." msgstr "Non iniciou sesión." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Non se pode borrar esta nota." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1082,21 +1082,21 @@ msgstr "" "Está a piques de borrar unha nota definitivamente. Unha vez feito, non se " "poderá recuperar." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Borrar a nota" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Está seguro de querer borrar esta nota?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Non borrar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Borrar esta nota" @@ -7525,17 +7525,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "hai uns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "hai como un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7543,12 +7543,12 @@ msgstr[0] "hai un minuto" msgstr[1] "hai %d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "hai como unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7556,12 +7556,12 @@ msgstr[0] "hai unha hora" msgstr[1] "hai %d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "hai como un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7569,12 +7569,12 @@ msgstr[0] "hai un día" msgstr[1] "hai %d días" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "hai como un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7582,7 +7582,7 @@ msgstr[0] "hai un mes" msgstr[1] "hai %d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "hai como un ano" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index a0f71db530..08ea249d42 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:23+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:45+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -528,7 +528,7 @@ msgid "Invalid token." msgstr "Njepłaćiwy token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -637,7 +637,7 @@ msgid "You may not delete another user's status." msgstr "Njemóžeš status druheho wužiwarja zničić." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Zdźělenka njeeksistuje." @@ -847,7 +847,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -865,7 +865,7 @@ msgstr "Tutoho wužiwarja njeblokować" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1037,7 +1037,7 @@ msgid "Delete this application" msgstr "Tutu aplikaciju zničić" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1047,31 +1047,31 @@ msgstr "Tutu aplikaciju zničić" msgid "Not logged in." msgstr "Njepřizjewjeny." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Tuta zdźělenka njeda so zničić." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Zdźělenku wušmórnyć" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Tutu zdźělenku njewušmórnyć" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -7169,17 +7169,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "před něšto sekundami" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7189,12 +7189,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7204,12 +7204,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7219,12 +7219,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7234,7 +7234,7 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "před něhdźe jednym lětom" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 1f170ac334..9097b66db9 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:24+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:47+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-03 20:54:28+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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" @@ -532,7 +532,7 @@ msgid "Invalid token." msgstr "Érvénytelen token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -641,7 +641,7 @@ msgid "You may not delete another user's status." msgstr "Nem törölheted más felhasználók állapotait." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nincs ilyen hír." @@ -850,7 +850,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -868,7 +868,7 @@ msgstr "Ne blokkoljuk ezt a felhasználót" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1038,7 +1038,7 @@ msgid "Delete this application" msgstr "" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1048,31 +1048,31 @@ msgstr "" msgid "Not logged in." msgstr "Nem vagy bejelentkezve." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "" -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Hír törlése" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Biztosan törölni szeretnéd ezt a hírt?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Ne töröljük ezt a hírt" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Töröljük ezt a hírt" @@ -7176,17 +7176,17 @@ msgid "Moderator" msgstr "Moderátor" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "pár másodperce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "körülbelül egy perce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7194,12 +7194,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "körülbelül egy órája" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7207,12 +7207,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "körülbelül egy napja" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7220,12 +7220,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "körülbelül egy hónapja" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7233,7 +7233,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "körülbelül egy éve" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 3abd8fce2f..3bd8775bf6 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -532,7 +532,7 @@ msgid "Invalid token." msgstr "Indicio invalide." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -649,7 +649,7 @@ msgid "You may not delete another user's status." msgstr "Tu non pote deler le stato de un altere usator." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nota non trovate." @@ -865,7 +865,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -883,7 +883,7 @@ msgstr "Non blocar iste usator" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1056,7 +1056,7 @@ msgid "Delete this application" msgstr "Deler iste application" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1066,11 +1066,11 @@ msgstr "Deler iste application" msgid "Not logged in." msgstr "Tu non ha aperite un session." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Non pote deler iste nota." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1078,21 +1078,21 @@ msgstr "" "Tu es super le puncto de deler permanentemente un nota. Un vice facite, isto " "non pote esser disfacite." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Deler nota" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Es tu secur de voler deler iste nota?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Non deler iste nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Deler iste nota" @@ -4979,9 +4979,9 @@ msgstr "Favorir" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. #: classes/Fave.php:151 -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) ha addite tu nota como favorite" +msgstr "%1$s marcava le nota %2$s como favorite." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -5161,9 +5161,9 @@ msgstr "Problema salveguardar le cassa de entrata del gruppo." #. TRANS: Server exception thrown when a reply cannot be saved. #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. #: classes/Notice.php:1120 -#, fuzzy, php-format +#, php-format msgid "Could not save reply for %1$d, %2$d." -msgstr "Non poteva salveguardar le informationes del gruppo local." +msgstr "Non poteva salveguardar le responsa pro %1$d, %2$d." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. @@ -5241,9 +5241,9 @@ msgstr "Sequer" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. #: classes/Subscription.php:258 -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s se ha jungite al gruppo %2$s." +msgstr "%1$s seque ora %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -7444,9 +7444,9 @@ msgstr "Cancellar subscription" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). #: lib/usernoprofileexception.php:60 -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "Le usator non ha un profilo." +msgstr "Le usator %1$s (%2$d) non ha un registro de profilo." #: lib/userprofile.php:117 msgid "Edit Avatar" @@ -7495,17 +7495,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "alcun secundas retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "circa un minuta retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7513,12 +7513,12 @@ msgstr[0] "un minuta" msgstr[1] "%d minutas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "circa un hora retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7526,12 +7526,12 @@ msgstr[0] "un hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "circa un die retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7539,12 +7539,12 @@ msgstr[0] "un die" msgstr[1] "%d dies" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "circa un mense retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7552,7 +7552,7 @@ msgstr[0] "un mense" msgstr[1] "%d menses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "circa un anno retro" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 2e413d299b..14ec3cdc33 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:26+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:51+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -547,7 +547,7 @@ msgid "Invalid token." msgstr "Ótæk stærð." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -660,7 +660,7 @@ msgid "You may not delete another user's status." msgstr "Þú getur ekki eytt stöðu annars notanda." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ekkert svoleiðis babl." @@ -874,7 +874,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -893,7 +893,7 @@ msgstr "Opna á þennan notanda" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 #, fuzzy msgctxt "BUTTON" @@ -1071,7 +1071,7 @@ msgid "Delete this application" msgstr "Eyða þessu babli" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1081,32 +1081,32 @@ msgstr "Eyða þessu babli" msgid "Not logged in." msgstr "Ekki innskráð(ur)." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Get ekki eytt þessu babli." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Eyða babli" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Ertu viss um að þú viljir eyða þessu babli?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 #, fuzzy msgid "Do not delete this notice" msgstr "Get ekki eytt þessu babli." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Eyða þessu babli" @@ -7462,17 +7462,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7480,12 +7480,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7493,12 +7493,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "fyrir um einum degi síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7506,12 +7506,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7519,7 +7519,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "fyrir um einu ári síðan" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 2b34725840..2b95919900 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:27+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:52+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -536,7 +536,7 @@ msgid "Invalid token." msgstr "Token non valido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -651,7 +651,7 @@ msgid "You may not delete another user's status." msgstr "Non puoi eliminare il messaggio di un altro utente." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nessun messaggio." @@ -864,7 +864,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -882,7 +882,7 @@ msgstr "Non bloccare questo utente" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1054,7 +1054,7 @@ msgid "Delete this application" msgstr "Elimina l'applicazione" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1064,11 +1064,11 @@ msgstr "Elimina l'applicazione" msgid "Not logged in." msgstr "Accesso non effettuato." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Impossibile eliminare questo messaggio." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1076,21 +1076,21 @@ msgstr "" "Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " "possibile recuperarlo." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Elimina messaggio" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Vuoi eliminare questo messaggio?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Non eliminare il messaggio" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -7492,17 +7492,17 @@ msgid "Moderator" msgstr "Moderatore" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "pochi secondi fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "circa un minuto fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7510,12 +7510,12 @@ msgstr[0] "circa un minuto fa" msgstr[1] "circa %d minuti fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "circa un'ora fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7523,12 +7523,12 @@ msgstr[0] "circa un'ora fa" msgstr[1] "circa %d ore fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "circa un giorno fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7536,12 +7536,12 @@ msgstr[0] "circa un giorno fa" msgstr[1] "circa %d giorni fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "circa un mese fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7549,7 +7549,7 @@ msgstr[0] "circa un mese fa" msgstr[1] "circa %d mesi fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "circa un anno fa" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 6527d62a3f..e371c88569 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:28+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:54+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -540,7 +540,7 @@ msgid "Invalid token." msgstr "不正なトークン。" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -651,7 +651,7 @@ msgid "You may not delete another user's status." msgstr "他のユーザのステータスを消すことはできません。" #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "そのようなつぶやきはありません。" @@ -864,7 +864,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -882,7 +882,7 @@ msgstr "このユーザをアンブロックする" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 #, fuzzy msgctxt "BUTTON" @@ -1056,7 +1056,7 @@ msgid "Delete this application" msgstr "このアプリケーションを削除" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1066,11 +1066,11 @@ msgstr "このアプリケーションを削除" msgid "Not logged in." msgstr "ログインしていません。" -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "このつぶやきを削除できません。" -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1078,21 +1078,21 @@ msgstr "" "あなたはつぶやきを永久に削除しようとしています。 これが完了するとそれを元に戻" "すことはできません。" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "つぶやき削除" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "本当にこのつぶやきを削除しますか?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "このつぶやきを削除できません。" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "このつぶやきを削除" @@ -7452,60 +7452,60 @@ msgid "Moderator" msgstr "管理" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "数秒前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "約 1 分前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "約 1 時間前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "約 1 日前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "約 1 ヵ月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "約 1 年前" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index cf125941cb..ca4362803f 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:29+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:55+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -530,7 +530,7 @@ msgid "Invalid token." msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -639,7 +639,7 @@ msgid "You may not delete another user's status." msgstr "სხვა მომხმარებლის სტატუსის წაშლა არ შეგიძლიათ." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "ასეთი შეტყობინება არ არსებობს." @@ -848,7 +848,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -866,7 +866,7 @@ msgstr "არ დაბლოკო ეს მომხმარებელი #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1038,7 +1038,7 @@ msgid "Delete this application" msgstr "აპლიკაციის წაშლა" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1048,31 +1048,31 @@ msgstr "აპლიკაციის წაშლა" msgid "Not logged in." msgstr "ავტორიზებული არ ხართ." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "ამ შეტყობინების წაშლა შეუძლებელია." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "თქვენ შეტყობინების სამუდამოდ წაშლას აპირებთ. ეს მოქმედება შეუქცევადია." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "შეტყობინების წაშლა" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "ნამდვილად გსურთ ამ შეტყობინების წაშლა?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "არ წაშალო ეს შეტყობინება" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "შეტყობინების წაშლა" @@ -7373,60 +7373,60 @@ msgid "Moderator" msgstr "მოდერატორი" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "რამდენიმე წამის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "დაახლოებით 1 წუთის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "დაახლოებით 1 საათის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "დაახლოებით 1 დღის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "დაახლოებით 1 თვის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "დაახლოებით 1 წლის წინ" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 145f1a51a4..2f21e358f7 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:31+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:56+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -529,7 +529,7 @@ msgid "Invalid token." msgstr "토큰이 잘못되었습니다." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -641,7 +641,7 @@ msgid "You may not delete another user's status." msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "그러한 통지는 없습니다." @@ -851,7 +851,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -869,7 +869,7 @@ msgstr "이용자를 차단하지 않는다." #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1040,7 +1040,7 @@ msgid "Delete this application" msgstr "이 응용프로그램 삭제" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1050,11 +1050,11 @@ msgstr "이 응용프로그램 삭제" msgid "Not logged in." msgstr "로그인하고 있지 않습니다." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "이 통지를 지울 수 없습니다." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 #, fuzzy msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1062,22 +1062,22 @@ msgid "" msgstr "" "영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "통지 삭제" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "정말로 통지를 삭제하시겠습니까?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 #, fuzzy msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -7265,60 +7265,60 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "몇 초 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "1분 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "1시간 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "하루 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "1달 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "1년 전" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 248ae86b37..d3c2b08293 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:32+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -538,7 +538,7 @@ msgid "Invalid token." msgstr "Погрешен жетон." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -652,7 +652,7 @@ msgid "You may not delete another user's status." msgstr "Не можете да избришете статус на друг корисник." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Нема таква забелешка." @@ -868,7 +868,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -886,7 +886,7 @@ msgstr "Не го блокирај корисников" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1059,7 +1059,7 @@ msgid "Delete this application" msgstr "Избриши го програмов" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1069,11 +1069,11 @@ msgstr "Избриши го програмов" msgid "Not logged in." msgstr "Не сте најавени." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Не може да се избрише оваа забелешка." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1081,21 +1081,21 @@ msgstr "" "На пат сте да избришете забелешка засекогаш. Откако ќе го направите тоа, " "постапката нема да може да се врати." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Бриши забелешка" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Дали сте сигурни дека сакате да ја избришете оваа заблешка?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Не ја бриши оваа забелешка" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Бриши ја оваа забелешка" @@ -5001,9 +5001,9 @@ msgstr "Бендисај" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. #: classes/Fave.php:151 -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) бендиса Ваша забелешка" +msgstr "%1$s ја бендиса забелешката %2$s." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -5184,9 +5184,9 @@ msgstr "Проблем при зачувувањето на групното п #. TRANS: Server exception thrown when a reply cannot be saved. #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. #: classes/Notice.php:1120 -#, fuzzy, php-format +#, php-format msgid "Could not save reply for %1$d, %2$d." -msgstr "Не можев да ги зачувам информациите за локалните групи." +msgstr "Не можев да го зачувам одговорот за %1$d, %2$d." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. @@ -5267,9 +5267,9 @@ msgstr "Следи" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. #: classes/Subscription.php:258 -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s се зачлени во групата %2$s." +msgstr "%1$s сега го/ја следи %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -7470,9 +7470,9 @@ msgstr "Откажи ја претплатата" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). #: lib/usernoprofileexception.php:60 -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "Корисникот нема профил." +msgstr "Корисникот %1$s (%2$d) нема профилен запис." #: lib/userprofile.php:117 msgid "Edit Avatar" @@ -7521,17 +7521,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "пред неколку секунди" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "пред една минута" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7539,12 +7539,12 @@ msgstr[0] "пред околу една минута" msgstr[1] "пред околу %d минути" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "пред еден час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7552,12 +7552,12 @@ msgstr[0] "пред околу еден час" msgstr[1] "пред околу %d часа" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "пред еден ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7565,12 +7565,12 @@ msgstr[0] "пред околу еден ден" msgstr[1] "пред околу %d дена" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "пред еден месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7578,7 +7578,7 @@ msgstr[0] "пред околу еден месец" msgstr[1] "пред околу %d месеци" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "пред една година" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 3605a78e89..a724b6fbb3 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:35+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:01+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -533,7 +533,7 @@ msgid "Invalid token." msgstr "Ugyldig symbol." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -645,7 +645,7 @@ msgid "You may not delete another user's status." msgstr "Du kan ikke slette statusen til en annen bruker." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ingen slik notis." @@ -856,7 +856,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -874,7 +874,7 @@ msgstr "Ikke blokker denne brukeren" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1048,7 +1048,7 @@ msgid "Delete this application" msgstr "Slett dette programmet" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1058,11 +1058,11 @@ msgstr "Slett dette programmet" msgid "Not logged in." msgstr "Ikke logget inn." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Kan ikke slette notisen." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1070,21 +1070,21 @@ msgstr "" "Du er i ferd med å slette en notis permanent. Når dette er gjort kan det " "ikke gjøres om." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Slett notis" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Er du sikker på at du vil slette denne notisen?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Ikke slett denne notisen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -7415,17 +7415,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "noen få sekunder siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "omtrent ett minutt siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7433,12 +7433,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "omtrent én time siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7446,12 +7446,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "omtrent én dag siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7459,12 +7459,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "omtrent én måned siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7472,7 +7472,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "omtrent ett år siden" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 93a3239f28..87ad36fd07 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:33+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:06:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -545,7 +545,7 @@ msgid "Invalid token." msgstr "Ongeldig token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -665,7 +665,7 @@ msgid "You may not delete another user's status." msgstr "U kunt de status van een andere gebruiker niet verwijderen." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "De mededeling bestaat niet." @@ -880,7 +880,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -898,7 +898,7 @@ msgstr "Gebruiker niet blokkeren" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1071,7 +1071,7 @@ msgid "Delete this application" msgstr "Deze applicatie verwijderen" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1081,11 +1081,11 @@ msgstr "Deze applicatie verwijderen" msgid "Not logged in." msgstr "Niet aangemeld." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Deze mededeling kan niet verwijderd worden." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1093,21 +1093,21 @@ msgstr "" "U staat op het punt een mededeling permanent te verwijderen. Als dit " "uitgevoerd is, kan het niet ongedaan gemaakt worden." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Mededeling verwijderen" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -5031,9 +5031,9 @@ msgstr "Aan favorieten toevoegen" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. #: classes/Fave.php:151 -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" +msgstr "%1$s heeft de mededeling %2$s als favoriet gemarkeerd." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -5222,9 +5222,9 @@ msgstr "" #. TRANS: Server exception thrown when a reply cannot be saved. #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. #: classes/Notice.php:1120 -#, fuzzy, php-format +#, php-format msgid "Could not save reply for %1$d, %2$d." -msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." +msgstr "Het was niet mogelijk antwoord %1$d voor %2$d op te slaan." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. @@ -5305,9 +5305,9 @@ msgstr "Volgen" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. #: classes/Subscription.php:258 -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s is lid geworden van de groep %2$s." +msgstr "%1$s is %2$s gaan volgen." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -7517,9 +7517,9 @@ msgstr "Abonnement opheffen" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). #: lib/usernoprofileexception.php:60 -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "Deze gebruiker heeft geen profiel." +msgstr "Gebruiker %1$s (%2$d) heeft geen profielrecord." #: lib/userprofile.php:117 msgid "Edit Avatar" @@ -7568,17 +7568,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "een paar seconden geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7586,12 +7586,12 @@ msgstr[0] "ongeveer een minuut geleden" msgstr[1] "ongeveer %d minuten geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "ongeveer een uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7599,12 +7599,12 @@ msgstr[0] "ongeveer een uur geleden" msgstr[1] "ongeveer %d uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "ongeveer een dag geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7612,12 +7612,12 @@ msgstr[0] "ongeveer een dag geleden" msgstr[1] "ongeveer %d dagen geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "ongeveer een maand geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7625,7 +7625,7 @@ msgstr[0] "ongeveer een maand geleden" msgstr[1] "ongeveer %d maanden geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "ongeveer een jaar geleden" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 30065f00e0..aaf116c8d1 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:34+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:00+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -545,7 +545,7 @@ msgid "Invalid token." msgstr "Ugyldig storleik." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -658,7 +658,7 @@ msgid "You may not delete another user's status." msgstr "Du kan ikkje sletta statusen til ein annan brukar." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Denne notisen finst ikkje." @@ -871,7 +871,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -890,7 +890,7 @@ msgstr "Lås opp brukaren" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 #, fuzzy msgctxt "BUTTON" @@ -1068,7 +1068,7 @@ msgid "Delete this application" msgstr "Slett denne notisen" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1078,11 +1078,11 @@ msgstr "Slett denne notisen" msgid "Not logged in." msgstr "Ikkje logga inn" -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Kan ikkje sletta notisen." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 #, fuzzy msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1091,22 +1091,22 @@ msgstr "" "Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " "ikkje finne ho att." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Slett notis" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Sikker på at du vil sletta notisen?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 #, fuzzy msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -7439,17 +7439,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "eit par sekund sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7457,12 +7457,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "omtrent ein time sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7470,12 +7470,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "omtrent ein dag sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7483,12 +7483,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "omtrent ein månad sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7496,7 +7496,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "omtrent eitt år sidan" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 9a4e2b64de..e4fe1d7f00 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:36+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:02+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -540,7 +540,7 @@ msgid "Invalid token." msgstr "Nieprawidłowy token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -653,7 +653,7 @@ msgid "You may not delete another user's status." msgstr "Nie można usuwać stanów innych użytkowników." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nie ma takiego wpisu." @@ -864,7 +864,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -882,7 +882,7 @@ msgstr "Nie blokuj tego użytkownika" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1054,7 +1054,7 @@ msgid "Delete this application" msgstr "Usuń tę aplikację" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1064,11 +1064,11 @@ msgstr "Usuń tę aplikację" msgid "Not logged in." msgstr "Niezalogowany." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Nie można usunąć tego wpisu." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1076,21 +1076,21 @@ msgstr "" "Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, nie będzie " "mogło zostać cofnięte." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Usuń wpis" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -7490,17 +7490,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "kilka sekund temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "około minutę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7509,12 +7509,12 @@ msgstr[1] "około %d minut temu" msgstr[2] "około %d minut temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "około godzinę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7523,12 +7523,12 @@ msgstr[1] "około %d godzin temu" msgstr[2] "około %d godzin temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "blisko dzień temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7537,12 +7537,12 @@ msgstr[1] "około %d dni temu" msgstr[2] "około %d dni temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "około miesiąc temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7551,7 +7551,7 @@ msgstr[1] "około %d miesięcy temu" msgstr[2] "około %d miesięcy temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "około rok temu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 03e01a88d4..ed66ddfdfe 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:36+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:03+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -536,7 +536,7 @@ msgid "Invalid token." msgstr "Chave inválida." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -648,7 +648,7 @@ msgid "You may not delete another user's status." msgstr "Não pode apagar o estado de outro utilizador." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Nota não foi encontrada." @@ -859,7 +859,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -877,7 +877,7 @@ msgstr "Não bloquear este utilizador" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1050,7 +1050,7 @@ msgid "Delete this application" msgstr "Apagar esta aplicação" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1060,11 +1060,11 @@ msgstr "Apagar esta aplicação" msgid "Not logged in." msgstr "Não iniciou sessão." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Nota não pode ser apagada." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1072,21 +1072,21 @@ msgstr "" "Está prestes a apagar permamentemente uma nota. Esta acção não pode ser " "desfeita." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Apagar nota" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Tem a certeza de que quer apagar esta nota?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Não apagar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Apagar esta nota" @@ -7486,17 +7486,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "há alguns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "há cerca de um minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7504,12 +7504,12 @@ msgstr[0] "um minuto" msgstr[1] "%d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "há cerca de uma hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7517,12 +7517,12 @@ msgstr[0] "uma hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "há cerca de um dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7530,12 +7530,12 @@ msgstr[0] "um dia" msgstr[1] "%d dias" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "há cerca de um mês" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7543,7 +7543,7 @@ msgstr[0] "um mês" msgstr[1] "%d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "há cerca de um ano" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index fec11bd91d..c0063ea588 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:37+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:04+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -543,7 +543,7 @@ msgid "Invalid token." msgstr "Token inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -661,7 +661,7 @@ msgid "You may not delete another user's status." msgstr "Você não pode excluir uma mensagem de outro usuário." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Essa mensagem não existe." @@ -874,7 +874,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -892,7 +892,7 @@ msgstr "Não bloquear este usuário" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1065,7 +1065,7 @@ msgid "Delete this application" msgstr "Excluir esta aplicação" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1075,11 +1075,11 @@ msgstr "Excluir esta aplicação" msgid "Not logged in." msgstr "Você não está autenticado." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Não é possível excluir esta mensagem." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1087,21 +1087,21 @@ msgstr "" "Você está prestes a excluir permanentemente uma mensagem. Isso não poderá " "ser desfeito." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Excluir a mensagem" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Tem certeza que deseja excluir esta mensagem?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Não excluir esta mensagem." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -7522,17 +7522,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "alguns segundos atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7540,12 +7540,12 @@ msgstr[0] "um minuto" msgstr[1] "%d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7553,12 +7553,12 @@ msgstr[0] "uma hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "cerca de 1 dia atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7566,12 +7566,12 @@ msgstr[0] "um dia" msgstr[1] "%d dias" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "cerca de 1 mês atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7579,7 +7579,7 @@ msgstr[0] "um mês" msgstr[1] "%d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "cerca de 1 ano atrás" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index e8c4ffa868..8ccf571013 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:38+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:05+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -542,7 +542,7 @@ msgid "Invalid token." msgstr "Неправильный токен" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -656,7 +656,7 @@ msgid "You may not delete another user's status." msgstr "Вы не можете удалять статус других пользователей." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Нет такой записи." @@ -868,7 +868,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -886,7 +886,7 @@ msgstr "Не блокировать этого пользователя" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1059,7 +1059,7 @@ msgid "Delete this application" msgstr "Удалить это приложение" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1069,11 +1069,11 @@ msgstr "Удалить это приложение" msgid "Not logged in." msgstr "Не авторизован." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Не удаётся удалить эту запись." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1081,21 +1081,21 @@ msgstr "" "Вы окончательно удаляете запись. После того, как это будет сделано, " "восстановление будет невозможно." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Удалить запись" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Вы уверены, что хотите удалить эту запись?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Не удалять эту запись" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Удалить эту запись" @@ -7500,17 +7500,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "пару секунд назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "около минуты назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7519,12 +7519,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "около часа назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7533,12 +7533,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "около дня назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7547,12 +7547,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "около месяца назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7561,7 +7561,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "около года назад" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 6ba6689a93..5acb59d598 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-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -516,7 +516,7 @@ msgid "Invalid token." msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -625,7 +625,7 @@ msgid "You may not delete another user's status." msgstr "" #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -833,7 +833,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -851,7 +851,7 @@ msgstr "" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1021,7 +1021,7 @@ msgid "Delete this application" msgstr "" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1031,31 +1031,31 @@ msgstr "" msgid "Not logged in." msgstr "" -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "" -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "" @@ -7018,17 +7018,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7036,12 +7036,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7049,12 +7049,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7062,12 +7062,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7075,7 +7075,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 48afeedb44..d529ea4bb9 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:39+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:06+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -532,7 +532,7 @@ msgid "Invalid token." msgstr "Ogiltig token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -644,7 +644,7 @@ msgid "You may not delete another user's status." msgstr "Du kan inte ta bort en annan användares status." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Ingen sådan notis." @@ -856,7 +856,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -874,7 +874,7 @@ msgstr "Blockera inte denna användare" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1048,7 +1048,7 @@ msgid "Delete this application" msgstr "Ta bort denna applikation" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1058,11 +1058,11 @@ msgstr "Ta bort denna applikation" msgid "Not logged in." msgstr "Inte inloggad." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Kan inte ta bort denna notis." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1070,21 +1070,21 @@ msgstr "" "Du håller på att ta bort en notis permanent. När det väl är gjort kan du " "inte ångra dig." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Ta bort notis" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Är du säker på att du vill ta bort denna notis?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Ta inte bort denna notis" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -7462,17 +7462,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "ett par sekunder sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "för nån minut sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7480,12 +7480,12 @@ msgstr[0] "för ungefär en minut sedan" msgstr[1] "för ungefär %d minuter sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "för en timma sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7493,12 +7493,12 @@ msgstr[0] "för ungefär en timma sedan" msgstr[1] "för ungefär %d timmar sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "för en dag sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7506,12 +7506,12 @@ msgstr[0] "för ungefär en dag sedan" msgstr[1] "för ungefär %d dagar sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "för en månad sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7519,7 +7519,7 @@ msgstr[0] "för ungefär en månad sedan" msgstr[1] "för ungefär %d månader sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "för ett år sedan" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 1a0244b39a..f5475c9ea5 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:43+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:07+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -527,7 +527,7 @@ msgid "Invalid token." msgstr "తప్పుడు పాత్ర." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -637,7 +637,7 @@ msgid "You may not delete another user's status." msgstr "ఇతర వాడుకరుల స్థితిని మీరు తొలగించలేరు." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." @@ -849,7 +849,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -867,7 +867,7 @@ msgstr "ఈ వాడుకరిని నిరోధించకు" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1039,7 +1039,7 @@ msgid "Delete this application" msgstr "ఈ ఉపకరణాన్ని తొలగించు" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1049,31 +1049,31 @@ msgstr "ఈ ఉపకరణాన్ని తొలగించు" msgid "Not logged in." msgstr "లోనికి ప్రవేశించలేదు." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "ఈ నోటీసుని తొలగించలేము." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "మీరు ఒక నోటీసుని శాశ్వతంగా తొలగించబోతున్నారు. ఇది ఒక్కసారి పూర్తయితే, దాన్నిక వెనక్కి తేలేరు." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "నోటీసుని తొలగించు" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించకు" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -7366,17 +7366,17 @@ msgid "Moderator" msgstr "సమన్వయకర్త" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7384,12 +7384,12 @@ msgstr[0] "సుమారు ఒక నిమిషం క్రితం" msgstr[1] "సుమారు %d నిమిషాల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7397,12 +7397,12 @@ msgstr[0] "ఒక గంట" msgstr[1] "%d గంటల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7410,12 +7410,12 @@ msgstr[0] "ఒక రోజు" msgstr[1] "%d రోజుల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "ఓ నెల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7423,7 +7423,7 @@ msgstr[0] "ఒక నెల" msgstr[1] "%d నెలల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 07dbdd66cf..5c859186d2 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:44+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:08+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -532,7 +532,7 @@ msgid "Invalid token." msgstr "Geçersiz büyüklük." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -643,7 +643,7 @@ msgid "You may not delete another user's status." msgstr "Başka bir kullanıcının durum mesajını silemezsiniz." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Böyle bir durum mesajı yok." @@ -858,7 +858,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -876,7 +876,7 @@ msgstr "Bu kullanıcıyı engelleme" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1049,7 +1049,7 @@ msgid "Delete this application" msgstr "Bu uygulamayı sil" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1059,11 +1059,11 @@ msgstr "Bu uygulamayı sil" msgid "Not logged in." msgstr "Giriş yapılmadı." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Bu durum mesajı silinemiyor." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1071,21 +1071,21 @@ msgstr "" "Bir durum mesajını kalıcı olarak silmek üzeresiniz. Bu bir kez yapıldığında, " "geri alınamaz." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Durum mesajını sil" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Bu durum mesajını silmek istediğinizden emin misiniz?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Bu durum mesajını silme" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Bu durum mesajını sil" @@ -7302,60 +7302,60 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "birkaç saniye önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "yaklaşık bir gün önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "yaklaşık bir ay önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index b5abed952f..0743548676 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:45+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -538,7 +538,7 @@ msgid "Invalid token." msgstr "Невірний токен." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -654,7 +654,7 @@ msgid "You may not delete another user's status." msgstr "Ви не можете видалити статус іншого користувача." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "Такого допису немає." @@ -867,7 +867,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -885,7 +885,7 @@ msgstr "Не блокувати цього користувача" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1058,7 +1058,7 @@ msgid "Delete this application" msgstr "Видалити додаток" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1068,31 +1068,31 @@ msgstr "Видалити додаток" msgid "Not logged in." msgstr "Не увійшли." -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "Не можна видалити цей допис." -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "Ви видаляєте допис назавжди. Ця дія є незворотною." -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "Видалити допис" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "Ви впевненні, що бажаєте видалити цей допис?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "Не видаляти цей допис" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Видалити допис" @@ -4980,9 +4980,9 @@ msgstr "Обрати" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. #: classes/Fave.php:151 -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) додав(ла) ваш допис обраних" +msgstr "%1$s додав(ла) ваш допис %2$s до обраних." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -5162,9 +5162,9 @@ msgstr "Проблема при збереженні вхідних дописі #. TRANS: Server exception thrown when a reply cannot be saved. #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. #: classes/Notice.php:1120 -#, fuzzy, php-format +#, php-format msgid "Could not save reply for %1$d, %2$d." -msgstr "Не вдалося зберегти інформацію про локальну спільноту." +msgstr "Не вдалося зберегти відповідь для %1$d, %2$d." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. @@ -5241,9 +5241,9 @@ msgstr "Слідкувати" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. #: classes/Subscription.php:258 -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s долучився до спільноти %2$s." +msgstr "%1$s тепер слідкує за %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -7444,9 +7444,9 @@ msgstr "Відписатись" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). #: lib/usernoprofileexception.php:60 -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "Користувач не має профілю." +msgstr "Користувач %1$s (%2$d) не має профілю." #: lib/userprofile.php:117 msgid "Edit Avatar" @@ -7495,17 +7495,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "мить тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "хвилину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7514,12 +7514,12 @@ msgstr[1] "близько %d хвилин тому" msgstr[2] "близько %d хвилин тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "годину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7528,12 +7528,12 @@ msgstr[1] "близько %d годин тому" msgstr[2] "близько %d годин тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "день тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7542,12 +7542,12 @@ msgstr[1] "близько %d днів тому" msgstr[2] "близько %d днів тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "місяць тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7556,7 +7556,7 @@ msgstr[1] "близько %d місяців тому" msgstr[2] "близько %d місяців тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "близько року тому" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 9699f1b2e2..a9600d1bba 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-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:46+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:10+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 (r74276); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-03 20:54:28+0000\n" +"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -531,7 +531,7 @@ msgid "Invalid token." msgstr "无效的 token。" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 -#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: 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 @@ -642,7 +642,7 @@ msgid "You may not delete another user's status." msgstr "你不能删除其他用户的消息。" #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 -#: actions/deletenotice.php:52 actions/shownotice.php:92 +#: actions/deletenotice.php:58 actions/shownotice.php:92 msgid "No such notice." msgstr "没有这条消息。" @@ -852,7 +852,7 @@ msgstr "" #. 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/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/deletenotice.php:150 actions/deleteuser.php:152 #: actions/groupblock.php:178 msgctxt "BUTTON" msgid "No" @@ -870,7 +870,7 @@ msgstr "不要屏蔽这个用户" #. 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/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/deletenotice.php:157 actions/deleteuser.php:159 #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" @@ -1042,7 +1042,7 @@ msgid "Delete this application" msgstr "删除这个应用" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: 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/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 @@ -1052,31 +1052,31 @@ msgstr "删除这个应用" msgid "Not logged in." msgstr "未登录。" -#: actions/deletenotice.php:71 +#: actions/deletenotice.php:74 msgid "Can't delete this notice." msgstr "无法删除这条消息。" -#: actions/deletenotice.php:103 +#: actions/deletenotice.php:106 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "你即将永久删除一条消息,此操作无法撤销。" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 +#: actions/deletenotice.php:112 actions/deletenotice.php:144 msgid "Delete notice" msgstr "删除消息" -#: actions/deletenotice.php:144 +#: actions/deletenotice.php:147 msgid "Are you sure you want to delete this notice?" msgstr "你确定要删除这条消息吗?" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 +#: actions/deletenotice.php:154 msgid "Do not delete this notice" msgstr "不要删除这个消息" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:667 +#: actions/deletenotice.php:161 lib/noticelist.php:667 msgid "Delete this notice" msgstr "删除" @@ -4836,9 +4836,9 @@ msgstr "收藏" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. #: classes/Fave.php:151 -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) 收藏了你的消息" +msgstr "%1$s 将消息 %2$s 标记了收藏。" #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -4900,14 +4900,14 @@ msgstr "离开小组失败。" #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "无效的用户 ID %s。" #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. #: classes/Group_member.php:89 -#, fuzzy, php-format +#, php-format msgid "Group ID %s is invalid." -msgstr "保存用户时出错;无效。" +msgstr "小组 ID %s 无效。" #. TRANS: Activity title. #: classes/Group_member.php:113 lib/joinform.php:114 @@ -5013,9 +5013,9 @@ msgstr "保存小组收件箱时出错。" #. TRANS: Server exception thrown when a reply cannot be saved. #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. #: classes/Notice.php:1120 -#, fuzzy, php-format +#, php-format msgid "Could not save reply for %1$d, %2$d." -msgstr "无法保存本地小组信息。" +msgstr "无法保存回复,%1$d 对 %2$d。" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. @@ -5091,9 +5091,9 @@ msgstr "关注" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. #: classes/Subscription.php:258 -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s加入了%2$s小组。" +msgstr "%1$s 现在开始关注了 %2$s。" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5590,7 +5590,7 @@ msgstr "该应用的图标" #. TRANS: Form input field instructions. #. TRANS: %d is the number of available characters for the description. #: lib/applicationeditform.php:201 -#, fuzzy, php-format +#, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" msgstr[0] "用不超过%d个字符描述你的应用" @@ -5684,7 +5684,7 @@ msgstr "取消" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "作者元素必须包含一个名称元素。" #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -5713,15 +5713,13 @@ msgstr "此附件的标签" #. TRANS: Exception thrown when a password change fails. #: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 -#, fuzzy msgid "Password changing failed." -msgstr "不允许更改密码" +msgstr "修改密码失败。" #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. #: lib/authenticationplugin.php:238 -#, fuzzy msgid "Password changing is not allowed." -msgstr "不允许更改密码" +msgstr "不允许更改密码。" #. TRANS: Title for the form to block a user. #: lib/blockform.php:68 @@ -5735,9 +5733,8 @@ msgstr "执行结果" #. TRANS: Title for command results. #: lib/channel.php:194 -#, fuzzy msgid "AJAX error" -msgstr "Ajax错误" +msgstr "AJAX 错误" #. TRANS: E-mail subject when a command has completed. #: lib/channel.php:233 lib/mailhandler.php:142 @@ -6124,7 +6121,6 @@ msgstr "去安装程序。" #. TRANS: Menu item for Instant Messaging settings. #: lib/connectsettingsaction.php:106 -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "即时通讯IM" @@ -6136,7 +6132,6 @@ msgstr "使用即时通讯工具(IM)更新" #. TRANS: Menu item for Short Message Service settings. #: lib/connectsettingsaction.php:113 -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -6148,7 +6143,6 @@ msgstr "使用 SMS 更新" #. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "关联" @@ -7256,9 +7250,9 @@ msgstr "取消关注" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). #: lib/usernoprofileexception.php:60 -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "用户没有个人信息。" +msgstr "用户 %1$s (%2$d) 没有个人信息记录。" #: lib/userprofile.php:117 msgid "Edit Avatar" @@ -7307,60 +7301,60 @@ msgid "Moderator" msgstr "审核员" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1153 msgid "a few seconds ago" msgstr "几秒前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1129 +#: lib/util.php:1156 msgid "about a minute ago" msgstr "约1分钟前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1160 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "约1分钟前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1136 +#: lib/util.php:1163 msgid "about an hour ago" msgstr "约1小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1140 +#: lib/util.php:1167 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "约一小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1143 +#: lib/util.php:1170 msgid "about a day ago" msgstr "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1147 +#: lib/util.php:1174 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1150 +#: lib/util.php:1177 msgid "about a month ago" msgstr "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1154 +#: lib/util.php:1181 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1157 +#: lib/util.php:1184 msgid "about a year ago" msgstr "约1年前" @@ -7377,7 +7371,7 @@ msgstr "%s不是有效的颜色!应使用3或6个十六进制字符。" #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "用户 %s (%s) 的备份文件" +msgstr "用户 %s (%s) 的备份文件\n" #: scripts/restoreuser.php:88 msgid "No user specified; using backup user." diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 9343ee5ede..58278c7738 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..77cb451a1f --- /dev/null +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:14+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Gunakan singgahan variabel APC untuk menyinggah hasil pencarian." diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index 5b64960c89..bab9a538c4 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index 5f7a9ccc94..237bb5da02 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 49d56e34dd..d7d357c967 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:13+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-anonymousfave\n" @@ -23,9 +23,8 @@ msgstr "" #. TRANS: Label for tally for number of times a notice was favored. #: AnonymousFavePlugin.php:207 -#, fuzzy msgid "Favored" -msgstr "marcado como favorito una vez" +msgstr "" #. TRANS: Server exception. #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..e5cbb86d38 --- /dev/null +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,104 @@ +# Translation of StatusNet - AnonymousFave to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:13+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +msgid "Favored" +msgstr "Préféré" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 +msgid "Couldn't create anonymous user session." +msgstr "Impossible de créer une session d’utilisateur anonyme." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:326 +msgid "Allow anonymous users to favorite notices." +msgstr "Autoriser les utilisateurs anonymes à préférer des avis." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Impossible de marquer cet avis comme favori ! Veuillez vous assurer que " +"votre navigateur accepte les cookies." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Cet avis a déjà été ajouté à vos favoris !" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Impossible de créer le favori." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Retirer ce favori" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "Impossible de mettre à jour le score de préférence pour l’avis %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "Impossible de créer le score de préférence pour l’avis %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Impossible de marquer cet avis comme non favori ! Veuillez vous assurer que " +"votre navigateur accepte les cookies." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Cet avis n’est pas un favori !" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Impossible de supprimer le favori." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Ajouter aux favoris" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 008f2c0da6..e2174d347c 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" @@ -23,9 +23,8 @@ msgstr "" #. TRANS: Label for tally for number of times a notice was favored. #: AnonymousFavePlugin.php:207 -#, fuzzy msgid "Favored" -msgstr "favorite un vice" +msgstr "" #. TRANS: Server exception. #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index ef63f13673..6579d35e82 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" @@ -23,9 +23,8 @@ msgstr "" #. TRANS: Label for tally for number of times a notice was favored. #: AnonymousFavePlugin.php:207 -#, fuzzy msgid "Favored" -msgstr "бендисано еднаш" +msgstr "" #. TRANS: Server exception. #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index 50718382ad..b4e9503306 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:13+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-03 20:54:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-anonymousfave\n" @@ -24,9 +24,8 @@ msgstr "" #. TRANS: Label for tally for number of times a notice was favored. #: AnonymousFavePlugin.php:207 -#, fuzzy msgid "Favored" -msgstr "één keer als favoriet aangemerkt" +msgstr "" #. TRANS: Server exception. #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..09a35825c2 --- /dev/null +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,106 @@ +# Translation of StatusNet - AnonymousFave to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:13+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +msgid "Favored" +msgstr "Pinaboran" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 +msgid "Couldn't create anonymous user session." +msgstr "Hindi malikha ang sesyon ng hindi nakikilalang tagagamit." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:326 +msgid "Allow anonymous users to favorite notices." +msgstr "" +"Payagan ang hindi nakikilalang mga tagagamit sa paboritong mga pabatid." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Hindi maipaborito ang pabatid! Pakitiyak na gumagana ang mga otap ng iyong " +"pantingin-tingin." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Nagkaroon ng isang suliranin sa iyong token ng sesyon. Paki subukang muli." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Isa nang paborito ang pabatid na ito!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Hindi malikha ang paborito." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Huwag paboran ang paborito" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "" +"Hindi maisapanahon ang talang-bilang ng paborito para sa ID na %d ng pabatid." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "" +"Hindi malikha ang talang-bilang ng paborito para sa ID na %d ng pabatid." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Hindi magawang hindi paborito ang pabatid! Pakitiyak na gumagana ang mga " +"otap ng iyong pantingin-tingin." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Ang pabatid na ito ay hindi isang paborito!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Hindi mabura ang paborito." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Idagdag sa mga paborito" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 269be0b3b3..294db46316 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:32:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" @@ -24,9 +24,8 @@ msgstr "" #. TRANS: Label for tally for number of times a notice was favored. #: AnonymousFavePlugin.php:207 -#, fuzzy msgid "Favored" -msgstr "обране один раз" +msgstr "" #. TRANS: Server exception. #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 644420f4d8..dbdc1703ce 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 7dd4fe2665..7aa9fdc16b 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..69455e8c90 --- /dev/null +++ b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Autocomplete to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:15+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:54:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"Pengaya autocomplete memungkinkan pengguna untuk mengisi otomatis nama layar " +"dalam @ balasan. Ketika sebuah \"@\" diketik ke area teks pemberitahuan, " +"sebuah kotak isi otomatis muncul dan berisi nama layar teman pengguna." diff --git a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..2176a74d6f --- /dev/null +++ b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - Autocomplete to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:15+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-03 20:54:24+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"O plugin de autocompletamento permite aos usuários autocompletar os nomes " +"nas respostas @. Quando se escreve \"@\" no área de texto de mensagem, uma " +"caixa e apresentada com os nomes dos amigos do usuário." diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 937f8f08a8..b46badcdb7 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,11 +16,58 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "" -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po index 335e4df0ef..e1cad4db23 100644 --- a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po @@ -9,24 +9,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Debes especificar un serviceUrl." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" "Utiliza el servicio de acortamiento de URL %1$s." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 9487dca83e..ce4a7de7b0 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -9,25 +9,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Vous devez spécifier un serviceUrl." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" "Utilise le service de raccourcissement d’URL %1$s." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 2e4e8847fd..a6605c9171 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,23 +9,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Tu debe specificar un serviceUrl." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Usa abbreviator de URL %1$s." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index ec6fdcd002..f7e262b42e 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,25 +9,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Мора да назначите serviceUrl." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" "Користи %1$s - служба за скратување на URL-" "адреса." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index 6083396153..4d5dba6483 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,23 +9,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Du må oppgi en tjeneste-Url." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Bruker URL-forkortertjenesten %1$s." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index 6f8b319bc0..b26fe0d42e 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,25 +9,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "U moet een serviceURL opgeven." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" "Gebruikt de dienst %1$s om URL's korter te " "maken." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po index bad97ab2a2..76294af4fe 100644 --- a/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po @@ -9,24 +9,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+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-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Você precisa especificar um serviceUrl." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" +"Utiliza o serviço de encurtamento de URL %1$s" + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index 3c94b42c45..c81c74689b 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -9,24 +9,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-bitlyurl\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" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Вы должны указать URL-адрес сервису." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Использование службы сокращения URL %1$s." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po index 1e891d40cd..b9d27ac717 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,25 +9,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Dapat kang tumukoy ng isang serbisyo ng URL." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" "Gumagamit ng %1$s na serbisyong pampaiksi ng " "URL." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 05b3f1dd7c..a5c1ad86aa 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,25 +9,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\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" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "Ви маєте вказати URL-адресу сервісу." -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" "Використання %1$s для скорочення URL-адрес." + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po index 82fd39598a..bdc0839700 100644 --- a/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po @@ -9,24 +9,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:16+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-bitlyurl\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: BitlyUrlPlugin.php:43 -msgid "You must specify a serviceUrl." +#: BitlyUrlPlugin.php:48 +#, fuzzy +msgid "You must specify a serviceUrl for bit.ly shortening." msgstr "你必须指定一个服务网址" -#: BitlyUrlPlugin.php:60 +#: BitlyUrlPlugin.php:171 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "使用 %1$s短链接服务" + +#: BitlyUrlPlugin.php:212 +msgid "bit.ly" +msgstr "" + +#: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54 +msgid "bit.ly URL shortening" +msgstr "" + +#: bitlyadminpanelaction.php:65 +msgid "" +"URL shortening with bit.ly requires [a bit.ly account and API key](http://" +"bit.ly/a/your_api_key). This verifies that this is an authorized account, " +"and allow you to use bit.ly's tracking features and custom domains." +msgstr "" + +#: bitlyadminpanelaction.php:132 +msgid "Invalid login. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:138 +msgid "Invalid API key. Max length is 255 characters." +msgstr "" + +#: bitlyadminpanelaction.php:191 +msgid "Credentials" +msgstr "" + +#: bitlyadminpanelaction.php:199 +msgid "Leave these empty to use global default credentials." +msgstr "" + +#: bitlyadminpanelaction.php:202 +msgid "If you leave these empty, bit.ly will be unavailable to users." +msgstr "" + +#: bitlyadminpanelaction.php:209 +msgid "Login name" +msgstr "" + +#: bitlyadminpanelaction.php:218 +msgid "API key" +msgstr "" + +#: bitlyadminpanelaction.php:236 +msgid "Save bit.ly settings" +msgstr "" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index bcd7e65149..a58f7b4d7a 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index ab31dc9092..39b24d2470 100644 --- a/plugins/BlankAd/locale/BlankAd.pot +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index ac2da9e728..80f1d09845 100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 644196f564..45ec7e627e 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index d28eb8fab3..4153f0fd0c 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index bc376527ae..471126f4b2 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..b3f6be4afb --- /dev/null +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ClientSideShorten to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:21+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten menyebabkan bentuk pemberitahuan antarmuka web untuk " +"memendekkan URL secara otomatis ketika dimasukkan, dan sebelum pemberitahuan " +"dikirim." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "Argumen 'text' harus disebutkan." diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index 0a5054c508..7349005237 100644 --- a/plugins/Comet/locale/Comet.pot +++ b/plugins/Comet/locale/Comet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Comet/locale/id/LC_MESSAGES/Comet.po b/plugins/Comet/locale/id/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..d237e91d93 --- /dev/null +++ b/plugins/Comet/locale/id/LC_MESSAGES/Comet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - Comet to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:21+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:07:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Pengaya untuk membuat pemutakhiran langsung menggunakan Comet/Bayeux." diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..07a1722b85 --- /dev/null +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - Comet to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:22+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:07:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-comet\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" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Плагин для обновлений в «реальном времени» с помощью Comet/Bayeux." diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 5ce7afe070..9b4b17f73e 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..5cad2f6ab2 --- /dev/null +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DirectionDetector to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:26+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:07:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: DirectionDetectorPlugin.php:261 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "" +"Menampilkan pemberitahuan dengan konten kanan-ke-kiri dalam arah yang tepat." diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index a32e645c9b..7f5f4e7121 100644 --- a/plugins/DiskCache/locale/DiskCache.pot +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..d4d21b5927 --- /dev/null +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DiskCache to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:27+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "" +"Pengaya untuk mengimplementasikan antarmuka singgahan dengan berkas cakram." diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..487ee1d8c9 --- /dev/null +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DiskCache to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:27+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-diskcache\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" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "" +"Плагин для реализации интерфейса кэширования с помощью файлов на диске." diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..dec1b90412 --- /dev/null +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DiskCache to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:27+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-diskcache\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "实现缓存与磁盘文件接口的插件。" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index aff420a52a..4b9b2b2cc6 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..168407448b --- /dev/null +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -0,0 +1,48 @@ +# Translation of StatusNet - Disqus to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Veuillez activer JavaScript pour voir les [commentaires propulsés par " +"Disqus] (http://disqus.com/?ref_noscript=%s)." + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "Commentaires propulsés par " + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Commentaires" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Utilisez Disqus pour ajouter des " +"commentaires aux pages d’avis." diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 3a961bd888..f37f2d2365 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-disqus\n" @@ -29,10 +29,12 @@ msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" "disqus.com/?ref_noscript=%s)." msgstr "" +"Пожалуйста, включите JavaScript для просмотра [комментариев, работающих с " +"помощью Disqus](http://disqus.com/?ref_noscript=%s)." #: DisqusPlugin.php:149 msgid "Comments powered by " -msgstr "" +msgstr "Комментарии работают с помощью " #: DisqusPlugin.php:201 msgid "Comments" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..6dc7ba4e62 --- /dev/null +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - Disqus to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-disqus\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"请启用 JavaScript 来查看 [通过 Disqus 的评论](http://disqus.com/?" +"ref_noscript=%s)。" + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "通过 Disqus 的评论" + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "评论" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "使用Disqus在消息页中添加评论。" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index 9ce8c61a73..f58ab18039 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..b0508f8d9b --- /dev/null +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Finnish (Suomi) +# Expored from translatewiki.net +# +# Author: Nike +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:28+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-03 20:55:45+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Lisää kommentointimahdollisuus ilmoitussivulle Echon avulla." diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..70823beb7e --- /dev/null +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Gunakan Echo untuk menambahkan " +"komentar ke halaman pemberitahuan." diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..2d6b7f6290 --- /dev/null +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Hamilton Abreu +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:28+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:45+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Use o Echo para adicionar comentários " +"às páginas de notas." diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 574852edf4..654ad59697 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..e42ce6a643 --- /dev/null +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:29+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Pengaya Email Authentication memungkinkan pengguna untuk masuk log " +"menggunakan alamat surel mereka." diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index e8fbf5d391..9a6cdc8326 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -31,28 +31,28 @@ msgid "" "%2$s" msgstr "" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "" -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "" -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "" -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "" #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -61,17 +61,17 @@ msgid "" msgstr "" #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -79,82 +79,82 @@ msgid "" msgstr "" #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "" #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "" #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "" -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "" -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "" -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "" @@ -318,7 +318,11 @@ msgstr "" msgid "Facebook Login" msgstr "" -#: facebookremove.php:57 +#: facebookremove.php:53 +msgid "Couldn't remove Facebook user: already deleted." +msgstr "" + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "" diff --git a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po index a00477dc4f..b2c81c9d7c 100644 --- a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:07+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:35+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -36,31 +36,31 @@ msgid "" "%2$s" msgstr "" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "" "Rankout a rit bezañ kevreet war Facebook evit implijout Facebook Connect." -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "Un implijer lec'hel liammet d'ar gont Facebook-se a zo dija." -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "" "Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " "gont." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Ur gudenn dizanv a zo bet." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -69,17 +69,17 @@ msgid "" msgstr "" #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Kefluniadur ar gont Facebook" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Dibarzhioù kevreañ" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -87,82 +87,82 @@ msgid "" msgstr "" #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Krouiñ ur gont nevez" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Krouiñ un implijer nevez gant al lesanv-se." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Lesanv nevez" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Krouiñ" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "Kevreañ d'ur gont a zo dioutañ" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "Lesanv a zo dioutañ" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Ger-tremen" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Kevreañ" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "N'eo ket aotreet krouiñ kontoù." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "N'eo ket reizh ar c'hod pedadenn." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Lesanv nann-aotreet." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Anv implijer pe ger-tremen direizh." @@ -326,7 +326,12 @@ msgstr "Kevreit gant ho kont Facebook" msgid "Facebook Login" msgstr "Kevreadenn Facebook" -#: facebookremove.php:57 +#: facebookremove.php:53 +#, fuzzy +msgid "Couldn't remove Facebook user: already deleted." +msgstr "Dibosupl eo dilemel an implijer Facebook." + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "Dibosupl eo dilemel an implijer Facebook." diff --git a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po index a0829eab16..ade12e83ab 100644 --- a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:07+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:35+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-facebook\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, fuzzy, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -44,30 +44,30 @@ msgstr "" "aplicación de Facebook y la actualización automática de estados mediante la " "reinstalación de la aplicación de Facebook %2$s." -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "" "Debes haber iniciado sesión en Facebook para poder utilizar Facebook Connect." -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "Ya hay un usuario local vinculado a esta cuenta de Facebook." -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "" "Hubo un problema con tu token de sesión. Por favor, inténtalo de nuevo." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "No puedes registrarte si no estás de acuerdo con la licencia." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Ha ocurrido un error desconocido." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -79,17 +79,17 @@ msgstr "" "tu cuenta, de tenerla." #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Configuración de cuenta de Facebook" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Opciones de conexión" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -100,35 +100,35 @@ msgstr "" "instantánea y número de teléfono." #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Crear cuenta nueva" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Crear un nuevo usuario con este nombre de usuario." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Nuevo nombre de usuario" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Crear" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "Conectar cuenta existente" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." @@ -137,50 +137,50 @@ msgstr "" "conectarte a tu Facebook." #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "El nombre de usuario ya existe" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Contraseña" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Conectar" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Registro de usuario no permitido." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "No es un código de invitación válido." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "El nombre de usuario debe tener sólo letras minúsculas y números, sin " "espacios." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Nombre de usuario no autorizado." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "El nombre de usuario ya existe. Prueba con otro." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "Error de conexión del usuario a Facebook." -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Nombre de usuario o contraseña inválidos." @@ -348,7 +348,11 @@ msgstr "" msgid "Facebook Login" msgstr "" -#: facebookremove.php:57 +#: facebookremove.php:53 +msgid "Couldn't remove Facebook user: already deleted." +msgstr "" + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "" diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po index ee73eb52fe..cc06d49edc 100644 --- a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po @@ -10,19 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -48,30 +48,30 @@ msgstr "" "\n" "%2$s" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "Vous devez être identifié sur Facebook pour utiliser Facebook Connect." -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "Il existe déjà un utilisateur local lié à ce compte Facebook." -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " "nouveau." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Une erreur inconnue s’est produite." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -84,17 +84,17 @@ msgstr "" "existant si vous en avez un." #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Configuration du compte Facebook" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Options de connexion" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -105,34 +105,34 @@ msgstr "" "messagerie instantanée et numéro de téléphone." #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Créer un nouveau compte" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Créer un nouvel utilisateur avec ce pseudonyme." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Nouveau pseudonyme" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Créer" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "Se connecter à un compte existant" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." @@ -141,50 +141,50 @@ msgstr "" "et mot de passe pour l’associer à votre compte Facebook." #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "Pseudonyme existant" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Mot de passe" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Connexion" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Inscription non autorisée." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "Le code d’invitation n’est pas valide." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Les pseudonymes ne peuvent contenir que des lettres minuscules et des " "chiffres, sans espaces." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Pseudonyme non autorisé." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "Erreur de connexion de l’utilisateur à Facebook." -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." @@ -225,9 +225,9 @@ msgstr "Nom d’utilisateur ou mot de passe incorrect." #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$s is a page number. #: facebookhome.php:153 -#, fuzzy, php-format +#, php-format msgid "%1$s and friends, page %2$d" -msgstr "%s et ses amis" +msgstr "%1$s et ses amis, page %2$d" #. TRANS: Page title. #. TRANS: %s is a user nickname @@ -353,7 +353,12 @@ msgstr "Connectez-vous avec votre compte Facebook" msgid "Facebook Login" msgstr "Connexion Facebook" -#: facebookremove.php:57 +#: facebookremove.php:53 +#, fuzzy +msgid "Couldn't remove Facebook user: already deleted." +msgstr "Impossible de supprimer l’utilisateur Facebook." + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "Impossible de supprimer l’utilisateur Facebook." diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po index 76955f6651..001358077f 100644 --- a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:36+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -36,28 +36,28 @@ msgid "" "%2$s" msgstr "" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "" -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "" -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "Houbo un erro co seu pase. Inténteo de novo." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "Non pode rexistrarse se non acepta a licenza." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Houbo un erro descoñecido." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -66,17 +66,17 @@ msgid "" msgstr "" #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Opcións de conexión" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -87,86 +87,86 @@ msgstr "" "instantánea e números de teléfono." #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Crear unha conta nova" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Crear un novo usuario con este alcume." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Novo alcume" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " "espazos, tiles ou eñes" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Crear" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Contrasinal" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Conectar" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Non se permite o rexistro." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "O código da invitación é incorrecto." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "O alcume debe ter só letras en minúscula e números, e non pode ter espazos " "en branco." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "" -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Ese alcume xa está en uso. Probe con outro." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "O nome de usuario ou contrasinal non son correctos." @@ -330,7 +330,11 @@ msgstr "" msgid "Facebook Login" msgstr "" -#: facebookremove.php:57 +#: facebookremove.php:53 +msgid "Couldn't remove Facebook user: already deleted." +msgstr "" + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "" diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po index 0cca9bf9d4..de97f2aede 100644 --- a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -46,28 +46,28 @@ msgstr "" "\n" "%2$s" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "Tu debe aperir un session a Facebook pro usar Facebook Connect." -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "Il ha jam un usator local ligate a iste conto de Facebook." -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Un error incognite ha occurrite." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -79,17 +79,17 @@ msgstr "" "connecter con tu conto existente si tu ha un." #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Configuration de conto Facebook" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Optiones de connexion" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -100,34 +100,34 @@ msgstr "" "telephono." #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Crear nove conto" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Crear un nove usator con iste pseudonymo." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Nove pseudonymo" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 minusculas o numeros, sin punctuation o spatios" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Crear" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "Connecter conto existente" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." @@ -136,48 +136,48 @@ msgstr "" "pro connecter lo a tu Facebook." #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "Pseudonymo existente" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Contrasigno" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Connecter" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Creation de conto non permittite." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "Le codice de invitation es invalide." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Pseudonymo non permittite." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "Error durante le connexion del usator a Facebook." -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Nomine de usator o contrasigno invalide." @@ -218,9 +218,9 @@ msgstr "Nomine de usator o contrasigno incorrecte." #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$s is a page number. #: facebookhome.php:153 -#, fuzzy, php-format +#, php-format msgid "%1$s and friends, page %2$d" -msgstr "%s e amicos" +msgstr "%1$s e amicos, pagina %2$d" #. TRANS: Page title. #. TRANS: %s is a user nickname @@ -345,7 +345,12 @@ msgstr "Aperir session con tu conto de Facebook" msgid "Facebook Login" msgstr "Authentication con Facebook" -#: facebookremove.php:57 +#: facebookremove.php:53 +#, fuzzy +msgid "Couldn't remove Facebook user: already deleted." +msgstr "Non poteva remover le usator de Facebook." + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "Non poteva remover le usator de Facebook." diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po index 3538cd94ed..3d8093bb4e 100644 --- a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -46,29 +46,29 @@ msgstr "" "\n" "%2$s" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "" "Мора да сте најавени на Facebook за да можете да користите Facebook Connect." -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "Веќе постои локален корисник поврзан со оваа сметка на Facebook." -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се повторно." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "Не можете да се регистрирате ако не се согласувате со лиценцата." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Се појави непозната грешка." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -80,17 +80,17 @@ msgstr "" "сметка, или пак да се поврзете со Вашата постоечка сметка (ако ја имате)." #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Поставки за сметка на Facebook" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Нагодувања за врска" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -100,34 +100,34 @@ msgstr "" "податоци: лозинка, е-пошта, IM-адреса, и телефонскиот број." #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Создај нова сметка" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Создај нов корисник со овој прекар." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Нов прекар" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Создај" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "Поврзи постоечка сметка" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." @@ -136,49 +136,49 @@ msgstr "" "поврзете со профилот на Facebook." #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "Постоечки прекар" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Лозинка" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Поврзи се" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Регистрацијата не е дозволена." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "Ова не е важечки код за покана." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Прекарот мора да се состои само од мали букви и бројки, без празни места." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Прекарот не е дозволен." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Прекарот е зафатен. Одберете друг." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "Грешка при поврзувањето на корисникот со Facebook." -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Неважечко корисничко име или лозинка." @@ -219,9 +219,9 @@ msgstr "Погрешно корисничко име или лозинка." #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$s is a page number. #: facebookhome.php:153 -#, fuzzy, php-format +#, php-format msgid "%1$s and friends, page %2$d" -msgstr "%s и пријателите" +msgstr "%1$s и пријателите, страница %2$d" #. TRANS: Page title. #. TRANS: %s is a user nickname @@ -346,7 +346,12 @@ msgstr "Најавете се со Вашата сметка на Facebook" msgid "Facebook Login" msgstr "Најава со Facebook" -#: facebookremove.php:57 +#: facebookremove.php:53 +#, fuzzy +msgid "Couldn't remove Facebook user: already deleted." +msgstr "Не можев да го отстранам корисниот на Facebook." + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "Не можев да го отстранам корисниот на Facebook." diff --git a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po index 283609654e..d0b778bcbe 100644 --- a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:36+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-facebook\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -36,28 +36,28 @@ msgid "" "%2$s" msgstr "" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "" -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "" -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "" -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "" #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -66,17 +66,17 @@ msgid "" msgstr "" #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -84,82 +84,82 @@ msgid "" msgstr "" #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Opprett ny konto" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Opprett en ny bruker med dette kallenavnet." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Nytt kallenavn" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Opprett" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "Eksisterende kallenavn" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Passord" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Koble til" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Registrering ikke tillatt." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "Ikke en gyldig invitasjonskode." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Kallenavn er ikke tillatt." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Kallenavnet er allerede i bruk. Prøv et annet." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Ugyldig brukernavn eller passord." @@ -323,7 +323,11 @@ msgstr "" msgid "Facebook Login" msgstr "" -#: facebookremove.php:57 +#: facebookremove.php:53 +msgid "Couldn't remove Facebook user: already deleted." +msgstr "" + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "" diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po index 5c675a5bbb..367281deec 100644 --- a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:36+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-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -50,30 +50,30 @@ msgstr "" "\n" "%2$s" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "U moet zijn aangemeld bij Facebook om Facebook Connect te gebruiken." -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "Er is al een lokale gebruiker verbonden met deze Facebookgebruiker" -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " "alstublieft." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Er is een onbekende fout opgetreden." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -85,17 +85,17 @@ msgstr "" "gebruiker aanmaken of koppelen met een bestaande gebruiker als u die al hebt." #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Facebookgebruiker instellen" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Verbindingsinstellingen" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -105,34 +105,34 @@ msgstr "" "privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Nieuwe gebruiker aanmaken" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Nieuwe gebruikersnaam" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Aanmaken" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "Verbinden met een bestaande gebruiker" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." @@ -141,51 +141,51 @@ msgstr "" "wachtwoord om deze daarna te koppelen met uw Facebookgebruiker." #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "Bestaande gebruikersnaam" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Wachtwoord" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Koppelen" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Registratie is niet toegestaan." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "De uitnodigingscode is ongeldig." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "De gebruikersnaam mag alleen kleine letters en cijfers bevatten. Spaties " "zijn niet toegestaan." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Gebruikersnaam niet toegestaan." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "" "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "Fout bij het verbinden van de gebruiker met Facebook." -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." @@ -226,9 +226,9 @@ msgstr "De gebruikersnaam of wachtwoord is onjuist." #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$s is a page number. #: facebookhome.php:153 -#, fuzzy, php-format +#, php-format msgid "%1$s and friends, page %2$d" -msgstr "%s en vrienden" +msgstr "%1$s en vrienden, pagina %2$d" #. TRANS: Page title. #. TRANS: %s is a user nickname @@ -353,7 +353,12 @@ msgstr "Aanmelden met uw Facebookgebruiker" msgid "Facebook Login" msgstr "Aanmelden via Facebook" -#: facebookremove.php:57 +#: facebookremove.php:53 +#, fuzzy +msgid "Couldn't remove Facebook user: already deleted." +msgstr "Het was niet mogelijk de Facebookgebruiker te verwijderen." + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "Het was niet mogelijk de Facebookgebruiker te verwijderen." diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po index 303c33314e..0b2b15419c 100644 --- a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:37+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-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-facebook\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -37,28 +37,28 @@ msgid "" "%2$s" msgstr "" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "" -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "" -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "Você não pode se registrar se não aceitar a licença." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Ocorreu um erro desconhecido." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -67,17 +67,17 @@ msgid "" msgstr "" #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Opções de conexão" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -85,84 +85,84 @@ msgid "" msgstr "" #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Criar nova conta" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Criar um novo usuário com este apelido." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Novo apelido" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Criar" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Senha" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Conectar" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Não é permitido o registro." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "O código de convite é inválido." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "O apelido deve conter apenas letras minúsculas e números e não pode ter " "espaços." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Apelido não permitido." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Este apelido já está em uso. Tente outro." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "Erro ao conectar o usuário ao Facebook." -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "" @@ -326,7 +326,11 @@ msgstr "" msgid "Facebook Login" msgstr "" -#: facebookremove.php:57 +#: facebookremove.php:53 +msgid "Couldn't remove Facebook user: already deleted." +msgstr "" + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "" diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po index fdaf62f418..6dc1ec4aab 100644 --- a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -47,30 +47,30 @@ msgstr "" "\n" "%2$s" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "Dapat na nakalagda ka sa Facebook upang magamit ang Ugnay sa Facebook." -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "" "Mayroon nang isang katutubong tagagamit na nakakawing sa ganitong akawnt ng " "Facebook." -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "May isang suliranin sa iyong token ng sesyon. Paki subukan uli." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "Hindi ka makapagpapatala kung hindi ka sumasang-ayon sa lisensiya." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Isang hindi nalalamang kamalian ang naganap." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -83,17 +83,17 @@ msgstr "" "kung mayroon ka." #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Pagtatakda ng Akawnt ng Facebook" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Mga pagpipilian na pang-ugnay" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -104,36 +104,36 @@ msgstr "" "na pangtelepono." #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Lumikha ng bagong akawnt" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Lumikha ng isang bagong tagagamit na may ganitong palayaw." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Bagong palayaw" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1 hanggang 64 na maliliit na mga titik o mga bilang, walang bantas o mga " "patlang" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Likhain" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "Umugnay sa umiiral na akawnt" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." @@ -142,50 +142,50 @@ msgstr "" "tagagamit at hudyat upang iugnay ito sa iyong Facebook." #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "Umiiral na palayaw" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Hudyat" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Umugnay" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Hindi pinapahintulutan ang pagpapatala." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "Hindi isang tanggap na kodigo ng paanyaya." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Ang palayaw ay dapat na may mga maliliit na mga titik lamang at mga bilang " "at walang mga patlang." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Hindi pinapahintulutan ang palayaw." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Ginagamit na ang palayaw. Subukan ang iba." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "May kamalian sa pag-ugnay ng tagagamit sa Facebook." -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Hindi tanggap na pangalan ng tagagamit o hudyat." @@ -226,9 +226,9 @@ msgstr "Hindi tamang pangalan ng tagagamit o hudyat." #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$s is a page number. #: facebookhome.php:153 -#, fuzzy, php-format +#, php-format msgid "%1$s and friends, page %2$d" -msgstr "%s at mga kaibigan" +msgstr "%1$s at mga kaibigan, pahina %2$d" #. TRANS: Page title. #. TRANS: %s is a user nickname @@ -355,7 +355,12 @@ msgstr "Lumagda sa pamamagitan ng iyong Akawnt sa Facebook" msgid "Facebook Login" msgstr "Paglagda sa Facebook" -#: facebookremove.php:57 +#: facebookremove.php:53 +#, fuzzy +msgid "Couldn't remove Facebook user: already deleted." +msgstr "Hindi matanggal ang tagagamit ng Facebook." + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "Hindi matanggal ang tagagamit ng Facebook." diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index bacfa64d65..8cbaead368 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebook\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" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -47,29 +47,29 @@ msgstr "" "\n" "%2$s" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "Ви повинні увійти до Facebook або використати Facebook Connect." -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "" "На даному сайті вже є користувач, котрий підключив цей акаунт Facebook." -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "Виникла якась незрозуміла помилка." #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -81,17 +81,17 @@ msgstr "" "використати такий, що вже існує." #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Налаштування акаунту Facebook" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "Опції з’єднання" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -101,35 +101,35 @@ msgstr "" "електронна адреса, адреса IM, телефонний номер." #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "Створити новий акаунт" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "Створити нового користувача з цим нікнеймом." #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "Новий нікнейм" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "Створити" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "Приєднати акаунт, який вже існує" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." @@ -138,50 +138,50 @@ msgstr "" "приєднати їх до Facebook." #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "Нікнейм, який вже існує" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "Пароль" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "Під’єднати" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "Це не дійсний код запрошення." -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Ім’я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " "інтервалів." -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "Нікнейм не допускається." -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "Цей нікнейм вже використовується. Спробуйте інший." -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "Помилка при підключенні до Facebook." -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "Невірне ім’я або пароль." @@ -222,9 +222,9 @@ msgstr "Неточне ім’я або пароль." #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$s is a page number. #: facebookhome.php:153 -#, fuzzy, php-format +#, php-format msgid "%1$s and friends, page %2$d" -msgstr "%s з друзями" +msgstr "%1$s з друзями, сторінка %2$d" #. TRANS: Page title. #. TRANS: %s is a user nickname @@ -349,7 +349,12 @@ msgstr "Увійти з акаунтом Facebook" msgid "Facebook Login" msgstr "Вхід Facebook" -#: facebookremove.php:57 +#: facebookremove.php:53 +#, fuzzy +msgid "Couldn't remove Facebook user: already deleted." +msgstr "Не вдалося видалити користувача Facebook." + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "Не вдалося видалити користувача Facebook." diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index 20b5eb95bb..57f45fc8c4 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,20 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-facebook\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: facebookutil.php:425 +#: facebookutil.php:429 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -46,28 +46,28 @@ msgstr "" "\n" "%2$s" -#: FBConnectAuth.php:51 +#: FBConnectAuth.php:55 msgid "You must be logged into Facebook to use Facebook Connect." msgstr "你必须使用Facebook Connect来登入Facebook帐号。" -#: FBConnectAuth.php:75 +#: FBConnectAuth.php:79 msgid "There is already a local user linked with this Facebook account." msgstr "这里已经有一个用户连接了此Facebook帐号。" -#: FBConnectAuth.php:87 FBConnectSettings.php:166 +#: FBConnectAuth.php:91 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "你的session token出错了。请重试。" -#: FBConnectAuth.php:92 +#: FBConnectAuth.php:96 msgid "You can't register if you don't agree to the license." msgstr "你必须同意许可协议才能注册。" -#: FBConnectAuth.php:102 +#: FBConnectAuth.php:106 msgid "An unknown error has occured." msgstr "发生未知错误。" #. TRANS: %s is the site name. -#: FBConnectAuth.php:117 +#: FBConnectAuth.php:121 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -78,17 +78,17 @@ msgstr "" "以新建一个帐号,或者使用你在本站已有的帐号。" #. TRANS: Page title. -#: FBConnectAuth.php:124 +#: FBConnectAuth.php:128 msgid "Facebook Account Setup" msgstr "Facebook帐号设置" #. TRANS: Legend. -#: FBConnectAuth.php:158 +#: FBConnectAuth.php:162 msgid "Connection options" msgstr "连接选项" #. TRANS: %s is the name of the license used by the user for their status updates. -#: FBConnectAuth.php:168 +#: FBConnectAuth.php:172 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -98,82 +98,82 @@ msgstr "" "话号码。" #. TRANS: Legend. -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:189 msgid "Create new account" msgstr "创建新帐户" -#: FBConnectAuth.php:187 +#: FBConnectAuth.php:191 msgid "Create a new user with this nickname." msgstr "以此昵称创建新帐户" #. TRANS: Field label. -#: FBConnectAuth.php:191 +#: FBConnectAuth.php:195 msgid "New nickname" msgstr "新昵称" -#: FBConnectAuth.php:193 +#: FBConnectAuth.php:197 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 到 64 个小写字母或数字,不包含标点或空格" #. TRANS: Submit button. -#: FBConnectAuth.php:197 +#: FBConnectAuth.php:201 msgctxt "BUTTON" msgid "Create" msgstr "创建" -#: FBConnectAuth.php:203 +#: FBConnectAuth.php:207 msgid "Connect existing account" msgstr "连接现有帐号" -#: FBConnectAuth.php:205 +#: FBConnectAuth.php:209 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "如果你已有帐号,请输入用户名和密码登录并连接至Facebook。" #. TRANS: Field label. -#: FBConnectAuth.php:209 +#: FBConnectAuth.php:213 msgid "Existing nickname" msgstr "已存在的昵称" -#: FBConnectAuth.php:212 facebookaction.php:277 +#: FBConnectAuth.php:216 facebookaction.php:277 msgid "Password" msgstr "密码" #. TRANS: Submit button. -#: FBConnectAuth.php:216 +#: FBConnectAuth.php:220 msgctxt "BUTTON" msgid "Connect" msgstr "连接" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:233 FBConnectAuth.php:243 +#: FBConnectAuth.php:237 FBConnectAuth.php:247 msgid "Registration not allowed." msgstr "不允许注册。" #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:255 msgid "Not a valid invitation code." msgstr "对不起,无效的邀请码。" -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:265 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "昵称只能使用小写字母和数字且不能使用空格。" -#: FBConnectAuth.php:266 +#: FBConnectAuth.php:270 msgid "Nickname not allowed." msgstr "昵称不被允许。" -#: FBConnectAuth.php:271 +#: FBConnectAuth.php:275 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" -#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347 msgid "Error connecting user to Facebook." msgstr "连接用户至Facebook时发生错误。" -#: FBConnectAuth.php:309 +#: FBConnectAuth.php:313 msgid "Invalid username or password." msgstr "用户名或密码不正确。" @@ -338,7 +338,11 @@ msgstr "使用你的 Facebook 帐号登录" msgid "Facebook Login" msgstr "" -#: facebookremove.php:57 +#: facebookremove.php:53 +msgid "Couldn't remove Facebook user: already deleted." +msgstr "" + +#: facebookremove.php:63 msgid "Couldn't remove Facebook user." msgstr "" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 056d788c6e..fa3c43f282 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..eba434fc1d --- /dev/null +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - FirePHP to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:37+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "Pengaya FirePHP menulis keluaran log StatusNet kepada FirePHP." diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..bce278fba7 --- /dev/null +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - FirePHP to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:38+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-firephp\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "FirePHP 插件将 StatusNet 的日志输出到 FirePHP。" diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 841f0d7a7b..f8306640c0 100644 --- a/plugins/ForceGroup/locale/ForceGroup.pot +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..5c88ead802 --- /dev/null +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:38+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Permet de forcer l’inscription à un groupe et force tous les avis à " +"apparaître dans les groupes dont les utilisateurs sont forcés." diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..f48744a6ed --- /dev/null +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:38+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:47+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Tidak dapat menggabungkan pengguna %1$s ke grup %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Memungkinkan keanggotaan grup secara paksa dan memaksa semua pemberitahuan " +"muncul di grup yang penggunanya dipaksa masuk." diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index ca4aa70217..9b32cebd78 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..7bcabafabc --- /dev/null +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:39+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Ping GeoURL ketika pemberitahuan lokasi " +"geo terbaru dikirim." diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..e63b2f2a54 --- /dev/null +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GeoURL to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:39+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-geourl\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" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Пинг GeoURL при отправлении новых заметок " +"с геолокацией." diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 10efb57ef9..657b960506 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..af2520d295 --- /dev/null +++ b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:39+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Menggunakan layanan Geonames untuk " +"mendapatkan nama terbaca untuk lokasi berdasarkan lintang/bujur dari " +"pengguna." diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index 1b037740e3..e5b4c0edfe 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..8cfd6120b9 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:40+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Gunakan Google Analytics " +"untuk melacak akses web." diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index d4bc0f8163..5cba76d9b9 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index 7a80d5e577..52ca20d890 100644 --- a/plugins/GroupFavorited/locale/GroupFavorited.pot +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..3480193d80 --- /dev/null +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - GroupFavorited to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:42+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:07:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Messages populaires dans le groupe %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Messages populaires dans le groupe %1$s, page %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Populaires" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Avis populaires dans le groupe %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Cette extension ajoute un élément de menu pour les messages populaires dans " +"les groupes." diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index aaef1d81fb..0174c463fe 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,11 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 3f48f9e97e..c2d47967df 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,23 +10,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "Erreur" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index 163722b630..cce0fbb3d8 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "Error" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index ccf2313d73..220519b4c4 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "Грешка" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index 694386f660..175a813b06 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "Feil" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 68c0d24889..84bc8a93c3 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "Fout" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index 42032f1a10..0c9b88be1d 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,24 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-imap\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" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "Ошибка" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index 459cfaf87a..241c50bc77 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "Kamalian" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index 5476500770..d489f62f08 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\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" -#: imapmailhandler.php:28 +#: imapmailhandler.php:30 msgid "Error" msgstr "Помилка" -#: imapmanager.php:47 +#: imapmanager.php:51 msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..b0eb61c508 --- /dev/null +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - Imap to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-imap\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: imapmailhandler.php:30 +msgid "Error" +msgstr "错误" + +#: imapmanager.php:51 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "ImapManager 应该使用它的生成器来创建,而不是使用固定的 get 方法。" + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "必须指定一个邮箱。" + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "必须设定一个用户。" + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "必须设定一个密码。" + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "必须设定一个抓取频率。" + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 86aa2524fa..59ff310ae6 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..7a6569eb47 --- /dev/null +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - InfiniteScroll to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Infinite Scroll menambahkan fungsi berikut terhadap instalasi StatusNet " +"Anda: Ketika seorang pengguna melakukan skrol ke bawah halaman, halaman " +"pemberitahuan selanjutnya secara otomatis didapat dan ditambahkan. Ini " +"berarti tidak perlu menekan \"Halaman Berikutnya\" yang hanya menambah " +"ketergantungan." diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..23856193c8 --- /dev/null +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - InfiniteScroll to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+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-03 20:55:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Infinite Scroll adiciona a seguinte funcionalidade a sua instalação " +"StatusNet: Quando um usuário se desloca para o final da página, a próxima " +"página de mensagens é recuperada e adicionada automaticamente. Isto " +"significa que não será necessário clicar em \"Próxima página\", que aumenta " +"drasticamente a capacidade de retenção de usuários." diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..cb6aa99f96 --- /dev/null +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - InfiniteScroll to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:43+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-infinitescroll\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"无限滚动(Infinite Scroll)给你的 StatusNet 网站增加了这些功能:当用户滚动页" +"面到底部的时候,将自动获取下一页的消息并追加显示出来。这样用户就不用再去点" +"击“下一页”按钮了,大大的增加了黏贴度。" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 23c773a9d9..4edbf7303d 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..0c51cd2f1e --- /dev/null +++ b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:44+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"Pengaya LDAP Authentication memungkinkan StatusNet untuk menangani " +"autentikasi melalui LDAP." diff --git a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..561d4ee1b5 --- /dev/null +++ b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LdapAuthentication to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:44+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-03 20:55:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"O plugin de autenticação LDAP permite ao StatusNet manejar a autenticação " +"através de LDAP." diff --git a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..8ffeb1aa78 --- /dev/null +++ b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - LdapAuthentication to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:44+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "LDAP 验证插件允许 StatusNet 通过 LDAP 处理验证。" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 0cc414c101..5522ba4fe8 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..059ff89e57 --- /dev/null +++ b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:44+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"Pengaya LDAP Authorization memungkinkan StatusNet menangani otorisasi " +"melalui LDAP." diff --git a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..0bbd6c0d45 --- /dev/null +++ b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LdapAuthorization to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:44+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-03 20:55:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"O plugin de autorização LDAP permite ao StatusNet manejar a autorização " +"através de LDAP." diff --git a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..8c490e8911 --- /dev/null +++ b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - LdapAuthorization to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:45+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "LDAP 授权插件允许 StatusNet 通过 LDAP 处理授权。" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 65f0baf68e..1904dc00c4 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..4e28c03c04 --- /dev/null +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LilUrl to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:45+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "Sebuah serviceUrl harus disebutkan." + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Menggunakan layanan pemendek URL %1$s." diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..68946ee353 --- /dev/null +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - LilUrl to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:45+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-lilurl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "必须设置一个服务的地址 Url。" + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "使用 %1$s 短链接服务" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 1d1b0437cd..558e1854e4 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..b92f116a75 --- /dev/null +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:46+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Memberitahu penulis blog apabila kiriman mereka telah terhubung dengan " +"mikroblog menggunakan protokol Pingback atau Trackback ." diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..303a67687f --- /dev/null +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - Linkback to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:46+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-linkback\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" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Уведомляет авторов блогов, когда на их сообщения были ссылки с помощью " +"протоколов Pingback или Trackback." diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..944eb8a4b3 --- /dev/null +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:46+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-linkback\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"当博客的地址在消息中被发布时使用 PingbackTrackback 协议通知博客的作者。" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index f35ca69141..3768a067d7 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 8987740707..971db7b72e 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Mapstraction to French (Français) # Expored from translatewiki.net # +# Author: Peter17 # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -56,9 +57,9 @@ msgstr "Carte des amis de %s" #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$d is a page number. #: allmap.php:80 -#, fuzzy, php-format +#, php-format msgid "%1$s friends map, page %2$d" -msgstr "Carte %s, page %d" +msgstr "Carte des amis de %1$s, page %2$d" #: usermap.php:73 #, php-format diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 75b389ec3e..23f602b523 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -56,9 +56,9 @@ msgstr "Mappa del amicos de %s" #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$d is a page number. #: allmap.php:80 -#, fuzzy, php-format +#, php-format msgid "%1$s friends map, page %2$d" -msgstr "Mappa de %s, pagina %d" +msgstr "Mappa de amicos de %1$s, pagina %2$d" #: usermap.php:73 #, php-format diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 19926cbbe1..9bdb2deaf4 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -56,9 +56,9 @@ msgstr "Карта на пријатели на %s" #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$d is a page number. #: allmap.php:80 -#, fuzzy, php-format +#, php-format msgid "%1$s friends map, page %2$d" -msgstr "Карта на %s, стр. %d" +msgstr "Карта на пријатели на %1$s, страница %2$d" #: usermap.php:73 #, php-format diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 084ee41627..6fe27a13cd 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:47+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-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-mapstraction\n" @@ -57,9 +57,9 @@ msgstr "Kaart van %s en vrienden" #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$d is a page number. #: allmap.php:80 -#, fuzzy, php-format +#, php-format msgid "%1$s friends map, page %2$d" -msgstr "Kaart van %s, pagina %d" +msgstr "Kaart van vrienden van %1$s, pagina %2$d" #: usermap.php:73 #, php-format diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..88ffdf6a26 --- /dev/null +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,64 @@ +# Translation of StatusNet - Mapstraction to Tamil (தமிழ்) +# Expored from translatewiki.net +# +# Author: TRYPPN +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"Language-Team: Tamil \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ta\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "வரைபடம்" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "முழு அளவு" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" + +#: map.php:72 +msgid "No such user." +msgstr "அப்படியொரு பயனர் இல்லை." + +#: map.php:79 +msgid "User has no profile." +msgstr "" + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "" + +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, php-format +msgid "%1$s friends map, page %2$d" +msgstr "" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 5a029fd3a5..7aefcd55e8 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -56,9 +56,9 @@ msgstr "%s na mapa ng mga kaibigan" #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$d is a page number. #: allmap.php:80 -#, fuzzy, php-format +#, php-format msgid "%1$s friends map, page %2$d" -msgstr "%s na mapa, pahina %d" +msgstr " %1$s mapa ng mga kaibigan, pahina %2$d" #: usermap.php:73 #, php-format diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index 5fcbf8cf42..f2d3afef91 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -57,9 +57,9 @@ msgstr "Мапа друзів %s." #. TRANS: Page title. #. TRANS: %1$s is a user nickname, %2$d is a page number. #: allmap.php:80 -#, fuzzy, php-format +#, php-format msgid "%1$s friends map, page %2$d" -msgstr "Мапа друзів %s, сторінка %d" +msgstr "Мапа друзів %1$s, сторінка %2$d" #: usermap.php:73 #, php-format diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..fceb988550 --- /dev/null +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,67 @@ +# Translation of StatusNet - Mapstraction to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:47+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:10:44+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-mapstraction\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "地图" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "完整尺寸" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" +"使用 Mapstraction 显示用户和好友" +"的消息地图。" + +#: map.php:72 +msgid "No such user." +msgstr "没有这个用户。" + +#: map.php:79 +msgid "User has no profile." +msgstr "用户没有个人信息。" + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "%s 好友地图" + +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, php-format +msgid "%1$s friends map, page %2$d" +msgstr "%1$s 好友地图,第 %2$d 页。" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "%s 地图,第 %d 页" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 53b0536d55..f6f498245b 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..b5c99a581e --- /dev/null +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Memcache to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:47+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-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-memcache\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Utiliza Memcached para fazer o cache " +"de resultados de consulta." diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..06d4e23f21 --- /dev/null +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Memcache to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:48+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-memcache\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "使用 Memcached 来缓存查询结果。" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index 03d62b7cdf..c349786794 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..c6692dd602 --- /dev/null +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:48+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:58:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Gunakan Memcached untuk menyinggahkan " +"hasil pencarian." diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..daf4cb920d --- /dev/null +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Memcached to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:48+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:58:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-memcached\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "使用 Memcached 来缓存查询结果。" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index 86ddef2cb0..9c9f35fdbd 100644 --- a/plugins/Meteor/locale/Meteor.pot +++ b/plugins/Meteor/locale/Meteor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..c2906284f8 --- /dev/null +++ b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Meteor to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:49+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:07:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Tidak dapat terhubung ke %1$s di %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Kesalahan menambahkan pesan meteor \"%s\"" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Pengaya untuk membuat pemutakhiran langsung menggunakan Comet/Bayeux." diff --git a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..b302b52bda --- /dev/null +++ b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - Meteor to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:49+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:07:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-meteor\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "无法连在 %2$s 端口连接到 %1$s。" + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "添加 meteor 消息“%s”出错。" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "通过 Comet/Bayeux 实现“实时更新”的插件。" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 1323e4436f..013bd0ed1a 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..475deec22c --- /dev/null +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - Minify to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:50+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:56:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-minify\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: minify.php:49 +msgid "The parameter \"f\" is not a valid path." +msgstr "参数 \"f\" 不是个有效的路径。" + +#: minify.php:53 +msgid "The parameter \"f\" is required but missing." +msgstr "需要参数 \"f\" 但是丢失了。" + +#: minify.php:111 +msgid "File type not supported." +msgstr "文件类型不支持。" + +#: MinifyPlugin.php:179 +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "Minify 插件通过删除空白和注释缩小 StatusNet 的 CSS 和 JavaScript。" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 9af3c011bc..0ece2cbc2e 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 40c4819d94..c2f0daebef 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: Eleferen +# Author: Александр Сигачёв # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-mobileprofile\n" @@ -76,4 +77,4 @@ msgstr "Прикрепить файл" #: MobileProfilePlugin.php:417 msgid "XHTML MobileProfile output for supporting user agents." -msgstr "" +msgstr "XHTML MobileProfile вывод для поддерживаемых пользовательских агентов." diff --git a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..3380274085 --- /dev/null +++ b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - MobileProfile to Tamil (தமிழ்) +# Expored from translatewiki.net +# +# Author: TRYPPN +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:51+0000\n" +"Language-Team: Tamil \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ta\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "" + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "கணக்கு" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "இணை" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "விடுபதிகை" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "பதிவு செய்" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "புகுபதிகை" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "தேடுக" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "இணை" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "ஒரு கோப்பை இணைக்கவும்" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 92969c6bc0..5051a13573 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..830d66f995 --- /dev/null +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - NoticeTitle to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:51+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:07:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-noticetitle\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" + +#: NoticeTitlePlugin.php:132 +msgid "Adds optional titles to notices." +msgstr "Добавляет необязательный заголовок для сообщений." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:309 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s — %2$s" diff --git a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..4c9b5ed327 --- /dev/null +++ b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - NoticeTitle to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:52+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:07:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-noticetitle\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: NoticeTitlePlugin.php:132 +msgid "Adds optional titles to notices." +msgstr "为消息添加可选的标题。" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:309 +#, php-format +msgid "%1$s - %2$s" +msgstr "" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index a94ea84dd1..24b4347578 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,243 +18,243 @@ msgstr "" #. TRANS: Link description for link to subscribe to a remote user. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:227 OStatusPlugin.php:937 +#: OStatusPlugin.php:229 OStatusPlugin.php:939 msgid "Subscribe" msgstr "" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109 msgid "Join" msgstr "" #. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:459 +#: OStatusPlugin.php:461 #, php-format msgid "Sent from %s via OStatus" msgstr "" #. TRANS: Exception. -#: OStatusPlugin.php:531 +#: OStatusPlugin.php:533 msgid "Could not set up remote subscription." msgstr "" -#: OStatusPlugin.php:605 +#: OStatusPlugin.php:607 msgid "Unfollow" msgstr "" #. TRANS: Success message for unsubscribe from user attempt through OStatus. #. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. -#: OStatusPlugin.php:608 +#: OStatusPlugin.php:610 #, php-format msgid "%1$s stopped following %2$s." msgstr "" -#: OStatusPlugin.php:636 +#: OStatusPlugin.php:638 msgid "Could not set up remote group membership." msgstr "" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: OStatusPlugin.php:658 +#: OStatusPlugin.php:660 #, php-format msgid "%1$s has joined group %2$s." msgstr "" #. TRANS: Exception. -#: OStatusPlugin.php:667 +#: OStatusPlugin.php:669 msgid "Failed joining remote group." msgstr "" -#: OStatusPlugin.php:707 +#: OStatusPlugin.php:709 msgid "Leave" msgstr "" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:710 +#: OStatusPlugin.php:712 #, php-format msgid "%1$s has left group %2$s." msgstr "" -#: OStatusPlugin.php:785 +#: OStatusPlugin.php:787 msgid "Disfavor" msgstr "" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:788 +#: OStatusPlugin.php:790 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." msgstr "" #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:864 +#: OStatusPlugin.php:866 msgid "Remote" msgstr "" #. TRANS: Title for activity. -#: OStatusPlugin.php:904 +#: OStatusPlugin.php:906 msgid "Profile update" msgstr "" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:907 +#: OStatusPlugin.php:909 #, php-format msgid "%s has updated their profile page." msgstr "" #. TRANS: Plugin description. -#: OStatusPlugin.php:952 +#: OStatusPlugin.php:954 msgid "" "Follow people across social networks that implement OStatus." msgstr "" -#: classes/FeedSub.php:248 +#: classes/FeedSub.php:252 msgid "Attempting to start PuSH subscription for feed with no hub." msgstr "" -#: classes/FeedSub.php:278 +#: classes/FeedSub.php:282 msgid "Attempting to end PuSH subscription for feed with no hub." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:188 +#: classes/Ostatus_profile.php:192 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:191 +#: classes/Ostatus_profile.php:195 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." msgstr "" #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. -#: classes/Ostatus_profile.php:281 +#: classes/Ostatus_profile.php:285 #, php-format msgid "Invalid actor passed to %1$s: %2$s." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:374 +#: classes/Ostatus_profile.php:378 msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." msgstr "" -#: classes/Ostatus_profile.php:404 +#: classes/Ostatus_profile.php:408 msgid "Unknown feed format." msgstr "" -#: classes/Ostatus_profile.php:427 +#: classes/Ostatus_profile.php:431 msgid "RSS feed without a channel." msgstr "" #. TRANS: Client exception. -#: classes/Ostatus_profile.php:472 +#: classes/Ostatus_profile.php:476 msgid "Can't handle that kind of post." msgstr "" #. TRANS: Client exception. %s is a source URL. -#: classes/Ostatus_profile.php:555 +#: classes/Ostatus_profile.php:559 #, php-format msgid "No content for notice %s." msgstr "" #. TRANS: Shown when a notice is longer than supported and/or when attachments are present. -#: classes/Ostatus_profile.php:588 +#: classes/Ostatus_profile.php:592 msgid "Show more" msgstr "" #. TRANS: Exception. %s is a profile URL. -#: classes/Ostatus_profile.php:781 +#: classes/Ostatus_profile.php:785 #, php-format msgid "Could not reach profile page %s." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:839 +#: classes/Ostatus_profile.php:843 #, php-format msgid "Could not find a feed URL for profile page %s." msgstr "" -#: classes/Ostatus_profile.php:976 +#: classes/Ostatus_profile.php:980 msgid "Can't find enough profile information to make a feed." msgstr "" -#: classes/Ostatus_profile.php:1035 +#: classes/Ostatus_profile.php:1039 #, php-format msgid "Invalid avatar URL %s." msgstr "" -#: classes/Ostatus_profile.php:1045 +#: classes/Ostatus_profile.php:1049 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" -#: classes/Ostatus_profile.php:1053 +#: classes/Ostatus_profile.php:1057 #, php-format msgid "Unable to fetch avatar from %s." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1275 +#: classes/Ostatus_profile.php:1279 msgid "Local user can't be referenced as remote." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1280 +#: classes/Ostatus_profile.php:1284 msgid "Local group can't be referenced as remote." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347 msgid "Can't save local profile." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1351 +#: classes/Ostatus_profile.php:1355 msgid "Can't save OStatus profile." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642 msgid "Not a valid webfinger address." msgstr "" #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1720 +#: classes/Ostatus_profile.php:1724 #, php-format msgid "Couldn't save profile for \"%s\"." msgstr "" #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1739 +#: classes/Ostatus_profile.php:1743 #, php-format msgid "Couldn't save ostatus_profile for \"%s\"." msgstr "" #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1747 +#: classes/Ostatus_profile.php:1751 #, php-format msgid "Couldn't find a valid profile for \"%s\"." msgstr "" -#: classes/Ostatus_profile.php:1789 +#: classes/Ostatus_profile.php:1793 msgid "Could not store HTML content of long post as file." msgstr "" #. TRANS: Client exception. %s is a HTTP status code. -#: classes/HubSub.php:208 +#: classes/HubSub.php:212 #, php-format msgid "Hub subscriber verification returned HTTP %s." msgstr "" #. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. -#: classes/HubSub.php:355 +#: classes/HubSub.php:359 #, php-format msgid "Callback returned status: %1$s. Body: %2$s" msgstr "" @@ -360,18 +360,18 @@ msgid "Feeds" msgstr "" #. TRANS: Client exception. -#: actions/pushhub.php:66 +#: actions/pushhub.php:70 msgid "Publishing outside feeds not supported." msgstr "" #. TRANS: Client exception. %s is a mode. -#: actions/pushhub.php:69 +#: actions/pushhub.php:73 #, php-format msgid "Unrecognized mode \"%s\"." msgstr "" #. TRANS: Client exception. %s is a topic. -#: actions/pushhub.php:89 +#: actions/pushhub.php:93 #, php-format msgid "" "Unsupported hub.topic %s this hub only serves local user and group Atom " @@ -379,43 +379,43 @@ msgid "" msgstr "" #. TRANS: Client exception. -#: actions/pushhub.php:95 +#: actions/pushhub.php:99 #, php-format msgid "Invalid hub.verify \"%s\". It must be sync or async." msgstr "" #. TRANS: Client exception. -#: actions/pushhub.php:101 +#: actions/pushhub.php:105 #, php-format msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." msgstr "" #. TRANS: Client exception. -#: actions/pushhub.php:109 +#: actions/pushhub.php:113 #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "" #. TRANS: Client exception. -#: actions/pushhub.php:161 +#: actions/pushhub.php:165 #, php-format msgid "Invalid hub.topic \"%s\". User doesn't exist." msgstr "" #. TRANS: Client exception. -#: actions/pushhub.php:170 +#: actions/pushhub.php:174 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." msgstr "" #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. -#: actions/pushhub.php:195 +#: actions/pushhub.php:199 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "" -#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43 msgid "No such user." msgstr "" @@ -462,47 +462,47 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "" #. TRANS: Field label. -#: actions/ostatusgroup.php:76 +#: actions/ostatusgroup.php:78 msgid "Join group" msgstr "" #. TRANS: Tooltip for field label "Join group". -#: actions/ostatusgroup.php:79 +#: actions/ostatusgroup.php:81 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" #. TRANS: Button text. -#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +#: actions/ostatusgroup.php:86 actions/ostatussub.php:75 msgctxt "BUTTON" msgid "Continue" msgstr "" -#: actions/ostatusgroup.php:103 +#: actions/ostatusgroup.php:105 msgid "You are already a member of this group." msgstr "" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:138 +#: actions/ostatusgroup.php:140 msgid "Already a member!" msgstr "" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:149 +#: actions/ostatusgroup.php:151 msgid "Remote group join failed!" msgstr "" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:153 +#: actions/ostatusgroup.php:155 msgid "Remote group join aborted!" msgstr "" #. TRANS: Page title for OStatus remote group join form -#: actions/ostatusgroup.php:165 +#: actions/ostatusgroup.php:167 msgid "Confirm joining remote group" msgstr "" #. TRANS: Instructions. -#: actions/ostatusgroup.php:176 +#: actions/ostatusgroup.php:178 msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" @@ -549,12 +549,12 @@ msgid "Could not remove remote user %1$s from group %2$s." msgstr "" #. TRANS: Field label for a field that takes an OStatus user address. -#: actions/ostatussub.php:66 +#: actions/ostatussub.php:68 msgid "Subscribe to" msgstr "" #. TRANS: Tooltip for field label "Subscribe to". -#: actions/ostatussub.php:69 +#: actions/ostatussub.php:71 msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" @@ -562,192 +562,192 @@ msgstr "" #. TRANS: Button text. #. TRANS: Tooltip for button "Join". -#: actions/ostatussub.php:110 +#: actions/ostatussub.php:112 msgctxt "BUTTON" msgid "Join this group" msgstr "" #. TRANS: Button text. -#: actions/ostatussub.php:113 +#: actions/ostatussub.php:115 msgctxt "BUTTON" msgid "Confirm" msgstr "" #. TRANS: Tooltip for button "Confirm". -#: actions/ostatussub.php:115 +#: actions/ostatussub.php:117 msgid "Subscribe to this user" msgstr "" -#: actions/ostatussub.php:136 +#: actions/ostatussub.php:138 msgid "You are already subscribed to this user." msgstr "" -#: actions/ostatussub.php:165 +#: actions/ostatussub.php:167 msgid "Photo" msgstr "" -#: actions/ostatussub.php:176 +#: actions/ostatussub.php:178 msgid "Nickname" msgstr "" -#: actions/ostatussub.php:197 +#: actions/ostatussub.php:199 msgid "Location" msgstr "" -#: actions/ostatussub.php:206 +#: actions/ostatussub.php:208 msgid "URL" msgstr "" -#: actions/ostatussub.php:218 +#: actions/ostatussub.php:220 msgid "Note" msgstr "" #. TRANS: Error text. -#: actions/ostatussub.php:254 actions/ostatussub.php:261 -#: actions/ostatussub.php:286 +#: actions/ostatussub.php:256 actions/ostatussub.php:263 +#: actions/ostatussub.php:288 msgid "" "Sorry, we could not reach that address. Please make sure that the OStatus " "address is like nickname@example.com or http://example.net/nickname." msgstr "" #. TRANS: Error text. -#: actions/ostatussub.php:265 actions/ostatussub.php:269 -#: actions/ostatussub.php:273 actions/ostatussub.php:277 -#: actions/ostatussub.php:281 +#: actions/ostatussub.php:267 actions/ostatussub.php:271 +#: actions/ostatussub.php:275 actions/ostatussub.php:279 +#: actions/ostatussub.php:283 msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." msgstr "" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:315 +#: actions/ostatussub.php:317 msgid "Already subscribed!" msgstr "" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:320 +#: actions/ostatussub.php:322 msgid "Remote subscription failed!" msgstr "" -#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +#: actions/ostatussub.php:369 actions/ostatusinit.php:64 msgid "There was a problem with your session token. Try again, please." msgstr "" #. TRANS: Form title. -#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +#: actions/ostatussub.php:397 actions/ostatusinit.php:83 msgid "Subscribe to user" msgstr "" #. TRANS: Page title for OStatus remote subscription form -#: actions/ostatussub.php:415 +#: actions/ostatussub.php:417 msgid "Confirm" msgstr "" #. TRANS: Instructions. -#: actions/ostatussub.php:427 +#: actions/ostatussub.php:429 msgid "" "You can subscribe to users from other supported sites. Paste their address " "or profile URI below:" msgstr "" #. TRANS: Client error. -#: actions/ostatusinit.php:41 +#: actions/ostatusinit.php:42 msgid "You can use the local subscription!" msgstr "" #. TRANS: Form legend. -#: actions/ostatusinit.php:97 +#: actions/ostatusinit.php:98 #, php-format msgid "Join group %s" msgstr "" #. TRANS: Button text. -#: actions/ostatusinit.php:99 +#: actions/ostatusinit.php:100 msgctxt "BUTTON" msgid "Join" msgstr "" #. TRANS: Form legend. -#: actions/ostatusinit.php:102 +#: actions/ostatusinit.php:103 #, php-format msgid "Subscribe to %s" msgstr "" #. TRANS: Button text. -#: actions/ostatusinit.php:104 +#: actions/ostatusinit.php:105 msgctxt "BUTTON" msgid "Subscribe" msgstr "" #. TRANS: Field label. -#: actions/ostatusinit.php:117 +#: actions/ostatusinit.php:118 msgid "User nickname" msgstr "" -#: actions/ostatusinit.php:118 +#: actions/ostatusinit.php:119 msgid "Nickname of the user you want to follow." msgstr "" #. TRANS: Field label. -#: actions/ostatusinit.php:123 +#: actions/ostatusinit.php:124 msgid "Profile Account" msgstr "" #. TRANS: Tooltip for field label "Profile Account". -#: actions/ostatusinit.php:125 +#: actions/ostatusinit.php:126 msgid "Your account id (e.g. user@identi.ca)." msgstr "" #. TRANS: Client error. -#: actions/ostatusinit.php:147 +#: actions/ostatusinit.php:148 msgid "Must provide a remote profile." msgstr "" #. TRANS: Client error. -#: actions/ostatusinit.php:159 +#: actions/ostatusinit.php:160 msgid "Couldn't look up OStatus account profile." msgstr "" #. TRANS: Client error. -#: actions/ostatusinit.php:172 +#: actions/ostatusinit.php:173 msgid "Couldn't confirm remote profile address." msgstr "" #. TRANS: Page title. -#: actions/ostatusinit.php:217 +#: actions/ostatusinit.php:218 msgid "OStatus Connect" msgstr "" -#: actions/pushcallback.php:48 +#: actions/pushcallback.php:50 msgid "Empty or invalid feed id." msgstr "" #. TRANS: Server exception. %s is a feed ID. -#: actions/pushcallback.php:54 +#: actions/pushcallback.php:56 #, php-format msgid "Unknown PuSH feed id %s" msgstr "" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:94 +#: actions/pushcallback.php:96 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "" #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:99 +#: actions/pushcallback.php:101 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "" #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:106 +#: actions/pushcallback.php:108 #, php-format msgid "Unexpected subscribe request for %s." msgstr "" #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:111 +#: actions/pushcallback.php:113 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 79f2887939..906bc95ec8 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -1,6 +1,7 @@ # Translation of StatusNet - OStatus to French (Français) # Expored from translatewiki.net # +# Author: Peter17 # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -23,94 +24,94 @@ msgstr "" #. TRANS: Link description for link to subscribe to a remote user. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:227 OStatusPlugin.php:937 +#: OStatusPlugin.php:229 OStatusPlugin.php:939 msgid "Subscribe" msgstr "S'abonner" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109 msgid "Join" msgstr "Rejoindre" #. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:459 +#: OStatusPlugin.php:461 #, php-format msgid "Sent from %s via OStatus" msgstr "Envoyé depuis %s via OStatus" #. TRANS: Exception. -#: OStatusPlugin.php:531 +#: OStatusPlugin.php:533 msgid "Could not set up remote subscription." msgstr "Impossible de mettre en place l’abonnement distant." -#: OStatusPlugin.php:605 +#: OStatusPlugin.php:607 msgid "Unfollow" msgstr "Ne plus suivre" #. TRANS: Success message for unsubscribe from user attempt through OStatus. #. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. -#: OStatusPlugin.php:608 +#: OStatusPlugin.php:610 #, php-format msgid "%1$s stopped following %2$s." msgstr "%1$s a cessé de suivre %2$s." -#: OStatusPlugin.php:636 +#: OStatusPlugin.php:638 msgid "Could not set up remote group membership." msgstr "Impossible de mettre en place l’appartenance au groupe distant." #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: OStatusPlugin.php:658 -#, fuzzy, php-format +#: OStatusPlugin.php:660 +#, php-format msgid "%1$s has joined group %2$s." -msgstr "%1$s a cessé de suivre %2$s." +msgstr "%1$s a rejoint le groupe %2$s." #. TRANS: Exception. -#: OStatusPlugin.php:667 +#: OStatusPlugin.php:669 msgid "Failed joining remote group." msgstr "Échec lors de l’adhésion au groupe distant." -#: OStatusPlugin.php:707 +#: OStatusPlugin.php:709 msgid "Leave" msgstr "Sortir" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:710 +#: OStatusPlugin.php:712 #, php-format msgid "%1$s has left group %2$s." -msgstr "" +msgstr "%1$s a quitté le groupe %2$s." -#: OStatusPlugin.php:785 +#: OStatusPlugin.php:787 msgid "Disfavor" msgstr "Retirer des favoris" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:788 +#: OStatusPlugin.php:790 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." msgstr "%1$s a retiré l’avis %2$s de ses favoris." #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:864 +#: OStatusPlugin.php:866 msgid "Remote" msgstr "À distance" #. TRANS: Title for activity. -#: OStatusPlugin.php:904 +#: OStatusPlugin.php:906 msgid "Profile update" msgstr "Mise à jour du profil" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:907 +#: OStatusPlugin.php:909 #, php-format msgid "%s has updated their profile page." msgstr "%s a mis à jour sa page de profil." #. TRANS: Plugin description. -#: OStatusPlugin.php:952 +#: OStatusPlugin.php:954 msgid "" "Follow people across social networks that implement OStatus." @@ -118,20 +119,20 @@ msgstr "" "Suivez les personnes à travers les réseaux sociaux mettant en œuvre OStatus ." -#: classes/FeedSub.php:248 +#: classes/FeedSub.php:252 msgid "Attempting to start PuSH subscription for feed with no hub." msgstr "" "Tente de démarrer l’inscription PuSH à un flux d’information sans " "concentrateur." -#: classes/FeedSub.php:278 +#: classes/FeedSub.php:282 msgid "Attempting to end PuSH subscription for feed with no hub." msgstr "" "Tente d’arrêter l’inscription PuSH à un flux d’information sans " "concentrateur." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:188 +#: classes/Ostatus_profile.php:192 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." msgstr "" @@ -139,7 +140,7 @@ msgstr "" "profil définis pour « %s »." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:191 +#: classes/Ostatus_profile.php:195 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." msgstr "" @@ -148,13 +149,13 @@ msgstr "" #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. -#: classes/Ostatus_profile.php:281 +#: classes/Ostatus_profile.php:285 #, php-format msgid "Invalid actor passed to %1$s: %2$s." msgstr "Type d’acteur invalide passé à la méthode « %1$s » : « %2$s »." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:374 +#: classes/Ostatus_profile.php:378 msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." @@ -162,117 +163,117 @@ msgstr "" "Type invalide passé à la méthode « Ostatus_profile::notify ». Ce doit être " "une chaîne XML ou une entrée « Activity »." -#: classes/Ostatus_profile.php:404 +#: classes/Ostatus_profile.php:408 msgid "Unknown feed format." msgstr "Format de flux d’information inconnu." -#: classes/Ostatus_profile.php:427 +#: classes/Ostatus_profile.php:431 msgid "RSS feed without a channel." msgstr "Flux RSS sans canal." #. TRANS: Client exception. -#: classes/Ostatus_profile.php:472 +#: classes/Ostatus_profile.php:476 msgid "Can't handle that kind of post." msgstr "Impossible de gérer cette sorte de publication." #. TRANS: Client exception. %s is a source URL. -#: classes/Ostatus_profile.php:555 +#: classes/Ostatus_profile.php:559 #, php-format msgid "No content for notice %s." msgstr "Aucun contenu dans l’avis « %s »." #. TRANS: Shown when a notice is longer than supported and/or when attachments are present. -#: classes/Ostatus_profile.php:588 +#: classes/Ostatus_profile.php:592 msgid "Show more" msgstr "Voir davantage" #. TRANS: Exception. %s is a profile URL. -#: classes/Ostatus_profile.php:781 +#: classes/Ostatus_profile.php:785 #, php-format msgid "Could not reach profile page %s." msgstr "Impossible d’atteindre la page de profil « %s »." #. TRANS: Exception. -#: classes/Ostatus_profile.php:839 +#: classes/Ostatus_profile.php:843 #, php-format msgid "Could not find a feed URL for profile page %s." msgstr "" "Impossible de trouver une adresse URL de flux d’information pour la page de " "profil « %s »." -#: classes/Ostatus_profile.php:976 +#: classes/Ostatus_profile.php:980 msgid "Can't find enough profile information to make a feed." msgstr "" "Impossible de trouver assez d’informations de profil pour créer un flux " "d’information." -#: classes/Ostatus_profile.php:1035 +#: classes/Ostatus_profile.php:1039 #, php-format msgid "Invalid avatar URL %s." msgstr "Adresse URL d’avatar « %s » invalide." -#: classes/Ostatus_profile.php:1045 +#: classes/Ostatus_profile.php:1049 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" "Tente de mettre à jour l’avatar associé au profil distant non sauvegardé « %s " "»." -#: classes/Ostatus_profile.php:1053 +#: classes/Ostatus_profile.php:1057 #, php-format msgid "Unable to fetch avatar from %s." msgstr "Impossible de récupérer l’avatar depuis « %s »." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1275 +#: classes/Ostatus_profile.php:1279 msgid "Local user can't be referenced as remote." msgstr "L’utilisateur local ne peut être référencé comme distant." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1280 +#: classes/Ostatus_profile.php:1284 msgid "Local group can't be referenced as remote." msgstr "Le groupe local ne peut être référencé comme distant." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347 msgid "Can't save local profile." msgstr "Impossible de sauvegarder le profil local." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1351 +#: classes/Ostatus_profile.php:1355 msgid "Can't save OStatus profile." msgstr "Impossible de sauvegarder le profil OStatus." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642 msgid "Not a valid webfinger address." msgstr "Ce n’est pas une adresse « webfinger » valide." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1720 +#: classes/Ostatus_profile.php:1724 #, php-format msgid "Couldn't save profile for \"%s\"." msgstr "Impossible de sauvegarder le profil pour « %s »." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1739 +#: classes/Ostatus_profile.php:1743 #, php-format msgid "Couldn't save ostatus_profile for \"%s\"." msgstr "Impossible d’enregistrer le profil OStatus pour « %s »." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1747 +#: classes/Ostatus_profile.php:1751 #, php-format msgid "Couldn't find a valid profile for \"%s\"." msgstr "Impossible de trouver un profil valide pour « %s »." -#: classes/Ostatus_profile.php:1789 +#: classes/Ostatus_profile.php:1793 msgid "Could not store HTML content of long post as file." msgstr "" "Impossible de stocker le contenu HTML d’une longue publication en un fichier." #. TRANS: Client exception. %s is a HTTP status code. -#: classes/HubSub.php:208 +#: classes/HubSub.php:212 #, php-format msgid "Hub subscriber verification returned HTTP %s." msgstr "" @@ -280,7 +281,7 @@ msgstr "" "»." #. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. -#: classes/HubSub.php:355 +#: classes/HubSub.php:359 #, php-format msgid "Callback returned status: %1$s. Body: %2$s" msgstr "La routine de rappel a retourné le statut « %1$s ». Corps : %2$s" @@ -386,18 +387,18 @@ msgid "Feeds" msgstr "Flux d’informations" #. TRANS: Client exception. -#: actions/pushhub.php:66 +#: actions/pushhub.php:70 msgid "Publishing outside feeds not supported." msgstr "La publication des flux externes n’est pas supportée." #. TRANS: Client exception. %s is a mode. -#: actions/pushhub.php:69 +#: actions/pushhub.php:73 #, php-format msgid "Unrecognized mode \"%s\"." msgstr "Mode « %s » non reconnu." #. TRANS: Client exception. %s is a topic. -#: actions/pushhub.php:89 +#: actions/pushhub.php:93 #, php-format msgid "" "Unsupported hub.topic %s this hub only serves local user and group Atom " @@ -407,7 +408,7 @@ msgstr "" "que les flux Atom d’utilisateurs et groupes locaux." #. TRANS: Client exception. -#: actions/pushhub.php:95 +#: actions/pushhub.php:99 #, php-format msgid "Invalid hub.verify \"%s\". It must be sync or async." msgstr "" @@ -415,7 +416,7 @@ msgstr "" "« async »." #. TRANS: Client exception. -#: actions/pushhub.php:101 +#: actions/pushhub.php:105 #, php-format msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." msgstr "" @@ -423,7 +424,7 @@ msgstr "" "positif." #. TRANS: Client exception. -#: actions/pushhub.php:109 +#: actions/pushhub.php:113 #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "" @@ -431,26 +432,26 @@ msgstr "" "octets." #. TRANS: Client exception. -#: actions/pushhub.php:161 +#: actions/pushhub.php:165 #, php-format msgid "Invalid hub.topic \"%s\". User doesn't exist." msgstr "" "Le sujet de concentrateur « %s » est invalide. L’utilisateur n’existe pas." #. TRANS: Client exception. -#: actions/pushhub.php:170 +#: actions/pushhub.php:174 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." msgstr "Le sujet de concentrateur « %s » est invalide. Le groupe n’existe pas." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. -#: actions/pushhub.php:195 +#: actions/pushhub.php:199 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "URL invalide passée à la méthode « %1$s » : « %2$s »" -#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43 msgid "No such user." msgstr "Utilisateur inexistant." @@ -500,49 +501,49 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "Avis d’identifiant « %1$s » non publié par %2$s." #. TRANS: Field label. -#: actions/ostatusgroup.php:76 +#: actions/ostatusgroup.php:78 msgid "Join group" msgstr "Rejoindre le groupe" #. TRANS: Tooltip for field label "Join group". -#: actions/ostatusgroup.php:79 +#: actions/ostatusgroup.php:81 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" "Une adresse de groupe OStatus telle que « http://example.net/group/pseudonyme " "»." #. TRANS: Button text. -#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +#: actions/ostatusgroup.php:86 actions/ostatussub.php:75 msgctxt "BUTTON" msgid "Continue" msgstr "Continuer" -#: actions/ostatusgroup.php:103 +#: actions/ostatusgroup.php:105 msgid "You are already a member of this group." msgstr "Vous êtes déjà membre de ce groupe." #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:138 +#: actions/ostatusgroup.php:140 msgid "Already a member!" msgstr "Déjà membre !" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:149 +#: actions/ostatusgroup.php:151 msgid "Remote group join failed!" msgstr "L’adhésion au groupe distant a échoué !" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:153 +#: actions/ostatusgroup.php:155 msgid "Remote group join aborted!" msgstr "L’adhésion au groupe distant a été avortée !" #. TRANS: Page title for OStatus remote group join form -#: actions/ostatusgroup.php:165 +#: actions/ostatusgroup.php:167 msgid "Confirm joining remote group" msgstr "Confirmer l’adhésion au groupe distant" #. TRANS: Instructions. -#: actions/ostatusgroup.php:176 +#: actions/ostatusgroup.php:178 msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" @@ -580,7 +581,7 @@ msgstr "Vous avez été bloqué de ce groupe par l’administrateur." #: actions/groupsalmon.php:159 #, php-format msgid "Could not join remote user %1$s to group %2$s." -msgstr "Impossible de joindre l’utilisateur distant %1$s au groupe %2$s." +msgstr "Impossible d’inscrire l’utilisateur distant %1$s au groupe %2$s." #: actions/groupsalmon.php:171 msgid "Can't read profile to cancel group membership." @@ -593,12 +594,12 @@ msgid "Could not remove remote user %1$s from group %2$s." msgstr "Impossible de retirer l’utilisateur distant %1$s du groupe %2$s." #. TRANS: Field label for a field that takes an OStatus user address. -#: actions/ostatussub.php:66 +#: actions/ostatussub.php:68 msgid "Subscribe to" msgstr "S’abonner à" #. TRANS: Tooltip for field label "Subscribe to". -#: actions/ostatussub.php:69 +#: actions/ostatussub.php:71 msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" @@ -608,49 +609,49 @@ msgstr "" #. TRANS: Button text. #. TRANS: Tooltip for button "Join". -#: actions/ostatussub.php:110 +#: actions/ostatussub.php:112 msgctxt "BUTTON" msgid "Join this group" msgstr "Rejoindre ce groupe" #. TRANS: Button text. -#: actions/ostatussub.php:113 +#: actions/ostatussub.php:115 msgctxt "BUTTON" msgid "Confirm" msgstr "Confirmer" #. TRANS: Tooltip for button "Confirm". -#: actions/ostatussub.php:115 +#: actions/ostatussub.php:117 msgid "Subscribe to this user" msgstr "S’abonner à cet utilisateur" -#: actions/ostatussub.php:136 +#: actions/ostatussub.php:138 msgid "You are already subscribed to this user." msgstr "Vous êtes déjà abonné à cet utilisateur." -#: actions/ostatussub.php:165 +#: actions/ostatussub.php:167 msgid "Photo" msgstr "Photo" -#: actions/ostatussub.php:176 +#: actions/ostatussub.php:178 msgid "Nickname" msgstr "Pseudonyme" -#: actions/ostatussub.php:197 +#: actions/ostatussub.php:199 msgid "Location" msgstr "Emplacement" -#: actions/ostatussub.php:206 +#: actions/ostatussub.php:208 msgid "URL" msgstr "Adresse URL" -#: actions/ostatussub.php:218 +#: actions/ostatussub.php:220 msgid "Note" msgstr "Note" #. TRANS: Error text. -#: actions/ostatussub.php:254 actions/ostatussub.php:261 -#: actions/ostatussub.php:286 +#: actions/ostatussub.php:256 actions/ostatussub.php:263 +#: actions/ostatussub.php:288 msgid "" "Sorry, we could not reach that address. Please make sure that the OStatus " "address is like nickname@example.com or http://example.net/nickname." @@ -660,9 +661,9 @@ msgstr "" "forme pseudonyme@example.com ou http://example.net/pseudonyme." #. TRANS: Error text. -#: actions/ostatussub.php:265 actions/ostatussub.php:269 -#: actions/ostatussub.php:273 actions/ostatussub.php:277 -#: actions/ostatussub.php:281 +#: actions/ostatussub.php:267 actions/ostatussub.php:271 +#: actions/ostatussub.php:275 actions/ostatussub.php:279 +#: actions/ostatussub.php:283 msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." @@ -671,33 +672,33 @@ msgstr "" "cette adresse OStatus." #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:315 +#: actions/ostatussub.php:317 msgid "Already subscribed!" msgstr "Déjà abonné !" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:320 +#: actions/ostatussub.php:322 msgid "Remote subscription failed!" msgstr "Ĺ’abonnement distant a échoué !" -#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +#: actions/ostatussub.php:369 actions/ostatusinit.php:64 msgid "There was a problem with your session token. Try again, please." msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " "nouveau." #. TRANS: Form title. -#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +#: actions/ostatussub.php:397 actions/ostatusinit.php:83 msgid "Subscribe to user" msgstr "S’abonner à un utilisateur" #. TRANS: Page title for OStatus remote subscription form -#: actions/ostatussub.php:415 +#: actions/ostatussub.php:417 msgid "Confirm" msgstr "Confirmer" #. TRANS: Instructions. -#: actions/ostatussub.php:427 +#: actions/ostatussub.php:429 msgid "" "You can subscribe to users from other supported sites. Paste their address " "or profile URI below:" @@ -706,91 +707,91 @@ msgstr "" "Collez leur adresse ou l’URI de leur profil ci-dessous :" #. TRANS: Client error. -#: actions/ostatusinit.php:41 +#: actions/ostatusinit.php:42 msgid "You can use the local subscription!" msgstr "Vous pouvez utiliser l’abonnement local !" #. TRANS: Form legend. -#: actions/ostatusinit.php:97 +#: actions/ostatusinit.php:98 #, php-format msgid "Join group %s" msgstr "Rejoindre le groupe « %s »" #. TRANS: Button text. -#: actions/ostatusinit.php:99 +#: actions/ostatusinit.php:100 msgctxt "BUTTON" msgid "Join" msgstr "Rejoindre" #. TRANS: Form legend. -#: actions/ostatusinit.php:102 +#: actions/ostatusinit.php:103 #, php-format msgid "Subscribe to %s" msgstr "S’abonner à « %s »" #. TRANS: Button text. -#: actions/ostatusinit.php:104 +#: actions/ostatusinit.php:105 msgctxt "BUTTON" msgid "Subscribe" msgstr "S’abonner" #. TRANS: Field label. -#: actions/ostatusinit.php:117 +#: actions/ostatusinit.php:118 msgid "User nickname" msgstr "Pseudonyme de l’utilisateur" -#: actions/ostatusinit.php:118 +#: actions/ostatusinit.php:119 msgid "Nickname of the user you want to follow." msgstr "Pseudonyme de l’utilisateur que vous voulez suivre." #. TRANS: Field label. -#: actions/ostatusinit.php:123 +#: actions/ostatusinit.php:124 msgid "Profile Account" msgstr "Compte de profil" #. TRANS: Tooltip for field label "Profile Account". -#: actions/ostatusinit.php:125 +#: actions/ostatusinit.php:126 msgid "Your account id (e.g. user@identi.ca)." msgstr "Votre identifiant de compte (utilisateur@identi.ca, par exemple)." #. TRANS: Client error. -#: actions/ostatusinit.php:147 +#: actions/ostatusinit.php:148 msgid "Must provide a remote profile." msgstr "Vous devez fournir un profil distant." #. TRANS: Client error. -#: actions/ostatusinit.php:159 +#: actions/ostatusinit.php:160 msgid "Couldn't look up OStatus account profile." msgstr "Impossible de consulter le profil de compte OStatus." #. TRANS: Client error. -#: actions/ostatusinit.php:172 +#: actions/ostatusinit.php:173 msgid "Couldn't confirm remote profile address." msgstr "Impossible de confirmer l’adresse de profil distant." #. TRANS: Page title. -#: actions/ostatusinit.php:217 +#: actions/ostatusinit.php:218 msgid "OStatus Connect" msgstr "Connexion OStatus" -#: actions/pushcallback.php:48 +#: actions/pushcallback.php:50 msgid "Empty or invalid feed id." msgstr "Identifiant de flux vide ou invalide." #. TRANS: Server exception. %s is a feed ID. -#: actions/pushcallback.php:54 +#: actions/pushcallback.php:56 #, php-format msgid "Unknown PuSH feed id %s" msgstr "Identifiant de flux PuSH inconnu : « %s »" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:94 +#: actions/pushcallback.php:96 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Flux de sujet de concentrateur incorrect : « %s »" #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:99 +#: actions/pushcallback.php:101 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "" @@ -798,13 +799,13 @@ msgstr "" "»." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:106 +#: actions/pushcallback.php:108 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Demande d’abonnement inattendue pour le sujet invalide « %s »." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:111 +#: actions/pushcallback.php:113 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Demande de désabonnement inattendue pour le sujet invalide « %s »." diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 53935c04c3..bd3695257a 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -23,94 +23,94 @@ msgstr "" #. TRANS: Link description for link to subscribe to a remote user. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:227 OStatusPlugin.php:937 +#: OStatusPlugin.php:229 OStatusPlugin.php:939 msgid "Subscribe" msgstr "Subscriber" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109 msgid "Join" msgstr "Inscriber" #. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:459 +#: OStatusPlugin.php:461 #, php-format msgid "Sent from %s via OStatus" msgstr "Inviate de %s via OStatus" #. TRANS: Exception. -#: OStatusPlugin.php:531 +#: OStatusPlugin.php:533 msgid "Could not set up remote subscription." msgstr "Non poteva configurar le subscription remote." -#: OStatusPlugin.php:605 +#: OStatusPlugin.php:607 msgid "Unfollow" msgstr "Non plus sequer" #. TRANS: Success message for unsubscribe from user attempt through OStatus. #. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. -#: OStatusPlugin.php:608 +#: OStatusPlugin.php:610 #, php-format msgid "%1$s stopped following %2$s." msgstr "%1$s cessava de sequer %2$s." -#: OStatusPlugin.php:636 +#: OStatusPlugin.php:638 msgid "Could not set up remote group membership." msgstr "Non poteva configurar le membrato del gruppo remote." #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: OStatusPlugin.php:658 -#, fuzzy, php-format +#: OStatusPlugin.php:660 +#, php-format msgid "%1$s has joined group %2$s." -msgstr "%1$s cessava de sequer %2$s." +msgstr "%1$s se ha jungite al gruppo %2$s." #. TRANS: Exception. -#: OStatusPlugin.php:667 +#: OStatusPlugin.php:669 msgid "Failed joining remote group." msgstr "Falleva de facer se membro del gruppo remote." -#: OStatusPlugin.php:707 +#: OStatusPlugin.php:709 msgid "Leave" msgstr "Quitar" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:710 +#: OStatusPlugin.php:712 #, php-format msgid "%1$s has left group %2$s." -msgstr "" +msgstr "%1$s ha quitate le gruppo %2$s." -#: OStatusPlugin.php:785 +#: OStatusPlugin.php:787 msgid "Disfavor" msgstr "Disfavorir" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:788 +#: OStatusPlugin.php:790 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." msgstr "%1$s marcava le nota %2$s como non plus favorite." #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:864 +#: OStatusPlugin.php:866 msgid "Remote" msgstr "Remote" #. TRANS: Title for activity. -#: OStatusPlugin.php:904 +#: OStatusPlugin.php:906 msgid "Profile update" msgstr "Actualisation de profilo" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:907 +#: OStatusPlugin.php:909 #, php-format msgid "%s has updated their profile page." msgstr "%s ha actualisate su pagina de profilo." #. TRANS: Plugin description. -#: OStatusPlugin.php:952 +#: OStatusPlugin.php:954 msgid "" "Follow people across social networks that implement OStatus." @@ -118,23 +118,23 @@ msgstr "" "Sequer personas trans retes social que implementa OStatus." -#: classes/FeedSub.php:248 +#: classes/FeedSub.php:252 msgid "Attempting to start PuSH subscription for feed with no hub." msgstr "Tentativa de comenciar subscription PuSH pro syndication sin centro." -#: classes/FeedSub.php:278 +#: classes/FeedSub.php:282 msgid "Attempting to end PuSH subscription for feed with no hub." msgstr "Tentativa de terminar subscription PuSH pro syndication sin centro." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:188 +#: classes/Ostatus_profile.php:192 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." msgstr "" "Stato ostatus_profile invalide: IDs e de gruppo e de profilo definite pro %s." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:191 +#: classes/Ostatus_profile.php:195 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." msgstr "" @@ -142,13 +142,13 @@ msgstr "" #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. -#: classes/Ostatus_profile.php:281 +#: classes/Ostatus_profile.php:285 #, php-format msgid "Invalid actor passed to %1$s: %2$s." msgstr "Actor invalide passate a %1$s: %2$s." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:374 +#: classes/Ostatus_profile.php:378 msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." @@ -156,117 +156,117 @@ msgstr "" "Typo invalide passate a Ostatos_profile::notify. Illo debe esser catena XML " "o entrata Activity." -#: classes/Ostatus_profile.php:404 +#: classes/Ostatus_profile.php:408 msgid "Unknown feed format." msgstr "Formato de syndication incognite." -#: classes/Ostatus_profile.php:427 +#: classes/Ostatus_profile.php:431 msgid "RSS feed without a channel." msgstr "Syndication RSS sin canal." #. TRANS: Client exception. -#: classes/Ostatus_profile.php:472 +#: classes/Ostatus_profile.php:476 msgid "Can't handle that kind of post." msgstr "Non pote tractar iste typo de message." #. TRANS: Client exception. %s is a source URL. -#: classes/Ostatus_profile.php:555 +#: classes/Ostatus_profile.php:559 #, php-format msgid "No content for notice %s." msgstr "Nulle contento pro nota %s." #. TRANS: Shown when a notice is longer than supported and/or when attachments are present. -#: classes/Ostatus_profile.php:588 +#: classes/Ostatus_profile.php:592 msgid "Show more" msgstr "Monstrar plus" #. TRANS: Exception. %s is a profile URL. -#: classes/Ostatus_profile.php:781 +#: classes/Ostatus_profile.php:785 #, php-format msgid "Could not reach profile page %s." msgstr "Non poteva attinger pagina de profilo %s." #. TRANS: Exception. -#: classes/Ostatus_profile.php:839 +#: classes/Ostatus_profile.php:843 #, php-format msgid "Could not find a feed URL for profile page %s." msgstr "Non poteva trovar un URL de syndication pro pagina de profilo %s." -#: classes/Ostatus_profile.php:976 +#: classes/Ostatus_profile.php:980 msgid "Can't find enough profile information to make a feed." msgstr "" "Non pote trovar satis de information de profilo pro facer un syndication." -#: classes/Ostatus_profile.php:1035 +#: classes/Ostatus_profile.php:1039 #, php-format msgid "Invalid avatar URL %s." msgstr "URL de avatar %s invalide." -#: classes/Ostatus_profile.php:1045 +#: classes/Ostatus_profile.php:1049 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "Tentava actualisar avatar pro profilo remote non salveguardate %s." -#: classes/Ostatus_profile.php:1053 +#: classes/Ostatus_profile.php:1057 #, php-format msgid "Unable to fetch avatar from %s." msgstr "Incapace de obtener avatar ab %s." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1275 +#: classes/Ostatus_profile.php:1279 msgid "Local user can't be referenced as remote." msgstr "Usator local non pote esser referentiate como remote." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1280 +#: classes/Ostatus_profile.php:1284 msgid "Local group can't be referenced as remote." msgstr "Gruppo local non pote esser referentiate como remote." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347 msgid "Can't save local profile." msgstr "Non pote salveguardar profilo local." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1351 +#: classes/Ostatus_profile.php:1355 msgid "Can't save OStatus profile." msgstr "Non pote salveguardar profilo OStatus." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642 msgid "Not a valid webfinger address." msgstr "Adresse webfinger invalide." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1720 +#: classes/Ostatus_profile.php:1724 #, php-format msgid "Couldn't save profile for \"%s\"." msgstr "Non poteva salveguardar profilo pro \"%s\"." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1739 +#: classes/Ostatus_profile.php:1743 #, php-format msgid "Couldn't save ostatus_profile for \"%s\"." msgstr "Non poteva salveguardar osatus_profile pro %s." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1747 +#: classes/Ostatus_profile.php:1751 #, php-format msgid "Couldn't find a valid profile for \"%s\"." msgstr "Non poteva trovar un profilo valide pro \"%s\"." -#: classes/Ostatus_profile.php:1789 +#: classes/Ostatus_profile.php:1793 msgid "Could not store HTML content of long post as file." msgstr "Non poteva immagazinar contento HTML de longe message como file." #. TRANS: Client exception. %s is a HTTP status code. -#: classes/HubSub.php:208 +#: classes/HubSub.php:212 #, php-format msgid "Hub subscriber verification returned HTTP %s." msgstr "Verification de subscriptor de centro retornava HTTP %s." #. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. -#: classes/HubSub.php:355 +#: classes/HubSub.php:359 #, php-format msgid "Callback returned status: %1$s. Body: %2$s" msgstr "Appello de retorno retornava stato: %1$s. Corpore: %2$s" @@ -372,18 +372,18 @@ msgid "Feeds" msgstr "Syndicationes" #. TRANS: Client exception. -#: actions/pushhub.php:66 +#: actions/pushhub.php:70 msgid "Publishing outside feeds not supported." msgstr "Le publication de syndicationes externe non es supportate." #. TRANS: Client exception. %s is a mode. -#: actions/pushhub.php:69 +#: actions/pushhub.php:73 #, php-format msgid "Unrecognized mode \"%s\"." msgstr "Modo \"%s\" non recognoscite." #. TRANS: Client exception. %s is a topic. -#: actions/pushhub.php:89 +#: actions/pushhub.php:93 #, php-format msgid "" "Unsupported hub.topic %s this hub only serves local user and group Atom " @@ -393,44 +393,44 @@ msgstr "" "syndicationes Atom de usatores e gruppos local." #. TRANS: Client exception. -#: actions/pushhub.php:95 +#: actions/pushhub.php:99 #, php-format msgid "Invalid hub.verify \"%s\". It must be sync or async." msgstr "Invalide hub.verify \"%s\". Debe esser sync o async." #. TRANS: Client exception. -#: actions/pushhub.php:101 +#: actions/pushhub.php:105 #, php-format msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." msgstr "" "Invalide hub.lease \"%s\". Debe esser vacue o un numero integre positive." #. TRANS: Client exception. -#: actions/pushhub.php:109 +#: actions/pushhub.php:113 #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "Invalide hub.secret \"%s\". Debe pesar minus de 200 bytes." #. TRANS: Client exception. -#: actions/pushhub.php:161 +#: actions/pushhub.php:165 #, php-format msgid "Invalid hub.topic \"%s\". User doesn't exist." msgstr "Invalide hub.topic \"%s\". Usator non existe." #. TRANS: Client exception. -#: actions/pushhub.php:170 +#: actions/pushhub.php:174 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." msgstr "Invalide hub.topic \"%s\". Gruppo non existe." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. -#: actions/pushhub.php:195 +#: actions/pushhub.php:199 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Invalide URL passate pro %1$s: \"%2$s\"" -#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43 msgid "No such user." msgstr "Iste usator non existe." @@ -479,48 +479,48 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "Nota con ID %1$s non publicate per %2$s." #. TRANS: Field label. -#: actions/ostatusgroup.php:76 +#: actions/ostatusgroup.php:78 msgid "Join group" msgstr "Adherer al gruppo" #. TRANS: Tooltip for field label "Join group". -#: actions/ostatusgroup.php:79 +#: actions/ostatusgroup.php:81 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" "Un adresse de gruppo OStatus, como http://example.net/group/pseudonymo." #. TRANS: Button text. -#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +#: actions/ostatusgroup.php:86 actions/ostatussub.php:75 msgctxt "BUTTON" msgid "Continue" msgstr "Continuar" -#: actions/ostatusgroup.php:103 +#: actions/ostatusgroup.php:105 msgid "You are already a member of this group." msgstr "Tu es ja membro de iste gruppo." #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:138 +#: actions/ostatusgroup.php:140 msgid "Already a member!" msgstr "Ja membro!" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:149 +#: actions/ostatusgroup.php:151 msgid "Remote group join failed!" msgstr "Le adhesion al gruppo remote ha fallite!" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:153 +#: actions/ostatusgroup.php:155 msgid "Remote group join aborted!" msgstr "Le adhesion al gruppo remote ha essite abortate!" #. TRANS: Page title for OStatus remote group join form -#: actions/ostatusgroup.php:165 +#: actions/ostatusgroup.php:167 msgid "Confirm joining remote group" msgstr "Confirmar adhesion a gruppo remote" #. TRANS: Instructions. -#: actions/ostatusgroup.php:176 +#: actions/ostatusgroup.php:178 msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" @@ -569,12 +569,12 @@ msgid "Could not remove remote user %1$s from group %2$s." msgstr "Non poteva remover le usator remote %1$s del gruppo %2$s." #. TRANS: Field label for a field that takes an OStatus user address. -#: actions/ostatussub.php:66 +#: actions/ostatussub.php:68 msgid "Subscribe to" msgstr "Subscriber a" #. TRANS: Tooltip for field label "Subscribe to". -#: actions/ostatussub.php:69 +#: actions/ostatussub.php:71 msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" @@ -584,49 +584,49 @@ msgstr "" #. TRANS: Button text. #. TRANS: Tooltip for button "Join". -#: actions/ostatussub.php:110 +#: actions/ostatussub.php:112 msgctxt "BUTTON" msgid "Join this group" msgstr "Adherer a iste gruppo" #. TRANS: Button text. -#: actions/ostatussub.php:113 +#: actions/ostatussub.php:115 msgctxt "BUTTON" msgid "Confirm" msgstr "Confirmar" #. TRANS: Tooltip for button "Confirm". -#: actions/ostatussub.php:115 +#: actions/ostatussub.php:117 msgid "Subscribe to this user" msgstr "Subscriber a iste usator" -#: actions/ostatussub.php:136 +#: actions/ostatussub.php:138 msgid "You are already subscribed to this user." msgstr "Tu es ja subscribite a iste usator." -#: actions/ostatussub.php:165 +#: actions/ostatussub.php:167 msgid "Photo" msgstr "Photo" -#: actions/ostatussub.php:176 +#: actions/ostatussub.php:178 msgid "Nickname" msgstr "Pseudonymo" -#: actions/ostatussub.php:197 +#: actions/ostatussub.php:199 msgid "Location" msgstr "Loco" -#: actions/ostatussub.php:206 +#: actions/ostatussub.php:208 msgid "URL" msgstr "URL" -#: actions/ostatussub.php:218 +#: actions/ostatussub.php:220 msgid "Note" msgstr "Nota" #. TRANS: Error text. -#: actions/ostatussub.php:254 actions/ostatussub.php:261 -#: actions/ostatussub.php:286 +#: actions/ostatussub.php:256 actions/ostatussub.php:263 +#: actions/ostatussub.php:288 msgid "" "Sorry, we could not reach that address. Please make sure that the OStatus " "address is like nickname@example.com or http://example.net/nickname." @@ -636,9 +636,9 @@ msgstr "" "net/pseudonymo." #. TRANS: Error text. -#: actions/ostatussub.php:265 actions/ostatussub.php:269 -#: actions/ostatussub.php:273 actions/ostatussub.php:277 -#: actions/ostatussub.php:281 +#: actions/ostatussub.php:267 actions/ostatussub.php:271 +#: actions/ostatussub.php:275 actions/ostatussub.php:279 +#: actions/ostatussub.php:283 msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." @@ -647,31 +647,31 @@ msgstr "" "reproba iste adresse OStatus plus tarde." #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:315 +#: actions/ostatussub.php:317 msgid "Already subscribed!" msgstr "Ja subscribite!" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:320 +#: actions/ostatussub.php:322 msgid "Remote subscription failed!" msgstr "Subscription remote fallite!" -#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +#: actions/ostatussub.php:369 actions/ostatusinit.php:64 msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." #. TRANS: Form title. -#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +#: actions/ostatussub.php:397 actions/ostatusinit.php:83 msgid "Subscribe to user" msgstr "Subscriber a usator" #. TRANS: Page title for OStatus remote subscription form -#: actions/ostatussub.php:415 +#: actions/ostatussub.php:417 msgid "Confirm" msgstr "Confirmar" #. TRANS: Instructions. -#: actions/ostatussub.php:427 +#: actions/ostatussub.php:429 msgid "" "You can subscribe to users from other supported sites. Paste their address " "or profile URI below:" @@ -680,103 +680,103 @@ msgstr "" "URI de profilo hic infra:" #. TRANS: Client error. -#: actions/ostatusinit.php:41 +#: actions/ostatusinit.php:42 msgid "You can use the local subscription!" msgstr "Tu pote usar le subscription local!" #. TRANS: Form legend. -#: actions/ostatusinit.php:97 +#: actions/ostatusinit.php:98 #, php-format msgid "Join group %s" msgstr "Adherer al gruppo %s" #. TRANS: Button text. -#: actions/ostatusinit.php:99 +#: actions/ostatusinit.php:100 msgctxt "BUTTON" msgid "Join" msgstr "Inscriber" #. TRANS: Form legend. -#: actions/ostatusinit.php:102 +#: actions/ostatusinit.php:103 #, php-format msgid "Subscribe to %s" msgstr "Subscriber a %s" #. TRANS: Button text. -#: actions/ostatusinit.php:104 +#: actions/ostatusinit.php:105 msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriber" #. TRANS: Field label. -#: actions/ostatusinit.php:117 +#: actions/ostatusinit.php:118 msgid "User nickname" msgstr "Pseudonymo del usator" -#: actions/ostatusinit.php:118 +#: actions/ostatusinit.php:119 msgid "Nickname of the user you want to follow." msgstr "Le pseudonymo del usator que tu vole sequer." #. TRANS: Field label. -#: actions/ostatusinit.php:123 +#: actions/ostatusinit.php:124 msgid "Profile Account" msgstr "Conto de profilo" #. TRANS: Tooltip for field label "Profile Account". -#: actions/ostatusinit.php:125 +#: actions/ostatusinit.php:126 msgid "Your account id (e.g. user@identi.ca)." msgstr "Le ID de tu conto (p.ex. usator@identi.ca)." #. TRANS: Client error. -#: actions/ostatusinit.php:147 +#: actions/ostatusinit.php:148 msgid "Must provide a remote profile." msgstr "Debe fornir un profilo remote." #. TRANS: Client error. -#: actions/ostatusinit.php:159 +#: actions/ostatusinit.php:160 msgid "Couldn't look up OStatus account profile." msgstr "Non poteva cercar le profilo del conto OStatus." #. TRANS: Client error. -#: actions/ostatusinit.php:172 +#: actions/ostatusinit.php:173 msgid "Couldn't confirm remote profile address." msgstr "Non poteva confirmar le adresse del profilo remote." #. TRANS: Page title. -#: actions/ostatusinit.php:217 +#: actions/ostatusinit.php:218 msgid "OStatus Connect" msgstr "Connexion OStatus" -#: actions/pushcallback.php:48 +#: actions/pushcallback.php:50 msgid "Empty or invalid feed id." msgstr "ID de syndication vacue o invalide." #. TRANS: Server exception. %s is a feed ID. -#: actions/pushcallback.php:54 +#: actions/pushcallback.php:56 #, php-format msgid "Unknown PuSH feed id %s" msgstr "ID de syndication PuSH %s incognite" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:94 +#: actions/pushcallback.php:96 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Syndication hub.topic \"%s\" incorrecte." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:99 +#: actions/pushcallback.php:101 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Incorrecte hub.verify_token %1$s pro %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:106 +#: actions/pushcallback.php:108 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Requesta de subscription inexpectate pro %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:111 +#: actions/pushcallback.php:113 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Requesta de cancellation de subscription inexpectate pro %s." diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index fda59785e8..beb18ffd5d 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -23,94 +23,94 @@ msgstr "" #. TRANS: Link description for link to subscribe to a remote user. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:227 OStatusPlugin.php:937 +#: OStatusPlugin.php:229 OStatusPlugin.php:939 msgid "Subscribe" msgstr "Претплати се" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109 msgid "Join" msgstr "Придружи се" #. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:459 +#: OStatusPlugin.php:461 #, php-format msgid "Sent from %s via OStatus" msgstr "Испратено од %s преку OStatus" #. TRANS: Exception. -#: OStatusPlugin.php:531 +#: OStatusPlugin.php:533 msgid "Could not set up remote subscription." msgstr "Не можев да ја поставам далечинската претплата." -#: OStatusPlugin.php:605 +#: OStatusPlugin.php:607 msgid "Unfollow" msgstr "Престани со следење" #. TRANS: Success message for unsubscribe from user attempt through OStatus. #. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. -#: OStatusPlugin.php:608 +#: OStatusPlugin.php:610 #, php-format msgid "%1$s stopped following %2$s." msgstr "%1$s престана да го/ја следи %2$s." -#: OStatusPlugin.php:636 +#: OStatusPlugin.php:638 msgid "Could not set up remote group membership." msgstr "Не можев да го поставам членството во далечинската група." #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: OStatusPlugin.php:658 +#: OStatusPlugin.php:660 #, fuzzy, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s престана да го/ја следи %2$s." #. TRANS: Exception. -#: OStatusPlugin.php:667 +#: OStatusPlugin.php:669 msgid "Failed joining remote group." msgstr "Не успеав да Ве зачленам во далечинската група." -#: OStatusPlugin.php:707 +#: OStatusPlugin.php:709 msgid "Leave" msgstr "Напушти" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:710 +#: OStatusPlugin.php:712 #, php-format msgid "%1$s has left group %2$s." msgstr "" -#: OStatusPlugin.php:785 +#: OStatusPlugin.php:787 msgid "Disfavor" msgstr "Откажи бендисана" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:788 +#: OStatusPlugin.php:790 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." msgstr "%1$s повеќе не ја бендисува забелешката %2$s." #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:864 +#: OStatusPlugin.php:866 msgid "Remote" msgstr "Далечински" #. TRANS: Title for activity. -#: OStatusPlugin.php:904 +#: OStatusPlugin.php:906 msgid "Profile update" msgstr "Поднова на профил" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:907 +#: OStatusPlugin.php:909 #, php-format msgid "%s has updated their profile page." msgstr "%s ја поднови својата профилна страница." #. TRANS: Plugin description. -#: OStatusPlugin.php:952 +#: OStatusPlugin.php:954 msgid "" "Follow people across social networks that implement OStatus." @@ -118,17 +118,17 @@ msgstr "" "Следете луѓе низ разни друштвени мрежи што го применуваат OStatus." -#: classes/FeedSub.php:248 +#: classes/FeedSub.php:252 msgid "Attempting to start PuSH subscription for feed with no hub." msgstr "Се обидов да ја започнам PuSH-претплатата за канал без средиште." -#: classes/FeedSub.php:278 +#: classes/FeedSub.php:282 msgid "Attempting to end PuSH subscription for feed with no hub." msgstr "" "Се обидувам да ставам крај на PuSH-претплатата за емитување без средиште." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:188 +#: classes/Ostatus_profile.php:192 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." msgstr "" @@ -136,7 +136,7 @@ msgstr "" "наместени за %s." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:191 +#: classes/Ostatus_profile.php:195 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." msgstr "" @@ -145,13 +145,13 @@ msgstr "" #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. -#: classes/Ostatus_profile.php:281 +#: classes/Ostatus_profile.php:285 #, php-format msgid "Invalid actor passed to %1$s: %2$s." msgstr "На %1$s е пренесен неважечки учесник: %2$s." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:374 +#: classes/Ostatus_profile.php:378 msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." @@ -159,118 +159,118 @@ msgstr "" "На Ostatus_profile::notify е пренесен неважечки тип. Мора да биде XML-низа " "или ставка во Activity." -#: classes/Ostatus_profile.php:404 +#: classes/Ostatus_profile.php:408 msgid "Unknown feed format." msgstr "Непознат формат на каналско емитување." -#: classes/Ostatus_profile.php:427 +#: classes/Ostatus_profile.php:431 msgid "RSS feed without a channel." msgstr "RSS-емитување без канал." #. TRANS: Client exception. -#: classes/Ostatus_profile.php:472 +#: classes/Ostatus_profile.php:476 msgid "Can't handle that kind of post." msgstr "Не можам да работам со таква објава." #. TRANS: Client exception. %s is a source URL. -#: classes/Ostatus_profile.php:555 +#: classes/Ostatus_profile.php:559 #, php-format msgid "No content for notice %s." msgstr "Нема содржина за забелешката %s." #. TRANS: Shown when a notice is longer than supported and/or when attachments are present. -#: classes/Ostatus_profile.php:588 +#: classes/Ostatus_profile.php:592 msgid "Show more" msgstr "Повеќе" #. TRANS: Exception. %s is a profile URL. -#: classes/Ostatus_profile.php:781 +#: classes/Ostatus_profile.php:785 #, php-format msgid "Could not reach profile page %s." msgstr "Не можев да ја добијам профилната страница %s." #. TRANS: Exception. -#: classes/Ostatus_profile.php:839 +#: classes/Ostatus_profile.php:843 #, php-format msgid "Could not find a feed URL for profile page %s." msgstr "Не можев да пронајдам каналска URL-адреса за профилната страница %s." -#: classes/Ostatus_profile.php:976 +#: classes/Ostatus_profile.php:980 msgid "Can't find enough profile information to make a feed." msgstr "Не можев да најдам доволно профилни податоци за да направам канал." -#: classes/Ostatus_profile.php:1035 +#: classes/Ostatus_profile.php:1039 #, php-format msgid "Invalid avatar URL %s." msgstr "Неважечка URL-адреса за аватарот: %s." -#: classes/Ostatus_profile.php:1045 +#: classes/Ostatus_profile.php:1049 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" "Се обидов да го подновам аватарот за незачуваниот далечински профил %s." -#: classes/Ostatus_profile.php:1053 +#: classes/Ostatus_profile.php:1057 #, php-format msgid "Unable to fetch avatar from %s." msgstr "Не можам да го добијам аватарот од %s." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1275 +#: classes/Ostatus_profile.php:1279 msgid "Local user can't be referenced as remote." msgstr "Локалниот корисник не може да се наведе како далечински." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1280 +#: classes/Ostatus_profile.php:1284 msgid "Local group can't be referenced as remote." msgstr "Локалната група не може да се наведе како далечинска." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347 msgid "Can't save local profile." msgstr "Не можам да го зачувам локалниот профил." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1351 +#: classes/Ostatus_profile.php:1355 msgid "Can't save OStatus profile." msgstr "Не можам да го зачувам профилот од OStatus." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642 msgid "Not a valid webfinger address." msgstr "Ова не е важечка Webfinger-адреса" #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1720 +#: classes/Ostatus_profile.php:1724 #, php-format msgid "Couldn't save profile for \"%s\"." msgstr "Не можам да го зачувам профилот за „%s“." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1739 +#: classes/Ostatus_profile.php:1743 #, php-format msgid "Couldn't save ostatus_profile for \"%s\"." msgstr "Не можам да го зачувам ostatus_profile за „%s“." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1747 +#: classes/Ostatus_profile.php:1751 #, php-format msgid "Couldn't find a valid profile for \"%s\"." msgstr "Не можев да пронајдам важечки профил за „%s“." -#: classes/Ostatus_profile.php:1789 +#: classes/Ostatus_profile.php:1793 msgid "Could not store HTML content of long post as file." msgstr "" "Не можам да ја складирам HTML-содржината на долгата објава како податотека." #. TRANS: Client exception. %s is a HTTP status code. -#: classes/HubSub.php:208 +#: classes/HubSub.php:212 #, php-format msgid "Hub subscriber verification returned HTTP %s." msgstr "Потврдата на претплатникот на средиштето даде HTTP %s." #. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. -#: classes/HubSub.php:355 +#: classes/HubSub.php:359 #, php-format msgid "Callback returned status: %1$s. Body: %2$s" msgstr "Повратниот повик даде статус: %1$s. Содржина: %2$s" @@ -376,18 +376,18 @@ msgid "Feeds" msgstr "Канали" #. TRANS: Client exception. -#: actions/pushhub.php:66 +#: actions/pushhub.php:70 msgid "Publishing outside feeds not supported." msgstr "Објавувањето вон каналите не е поддржано." #. TRANS: Client exception. %s is a mode. -#: actions/pushhub.php:69 +#: actions/pushhub.php:73 #, php-format msgid "Unrecognized mode \"%s\"." msgstr "Непрепознат режим „%s“." #. TRANS: Client exception. %s is a topic. -#: actions/pushhub.php:89 +#: actions/pushhub.php:93 #, php-format msgid "" "Unsupported hub.topic %s this hub only serves local user and group Atom " @@ -397,43 +397,43 @@ msgstr "" "локални корисници и групи." #. TRANS: Client exception. -#: actions/pushhub.php:95 +#: actions/pushhub.php:99 #, php-format msgid "Invalid hub.verify \"%s\". It must be sync or async." msgstr "Неважечки hub.verify „%s“. Мора да биде sync или async." #. TRANS: Client exception. -#: actions/pushhub.php:101 +#: actions/pushhub.php:105 #, php-format msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." msgstr "Неважечки hub.lease „%s“. Мора да биде празно или позитивен цел број." #. TRANS: Client exception. -#: actions/pushhub.php:109 +#: actions/pushhub.php:113 #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "Неважечки hub.secret „%s“. Мора да биде под 200 бајти." #. TRANS: Client exception. -#: actions/pushhub.php:161 +#: actions/pushhub.php:165 #, php-format msgid "Invalid hub.topic \"%s\". User doesn't exist." msgstr "Неважеки hub.topic „%s“. Корисникот не постои." #. TRANS: Client exception. -#: actions/pushhub.php:170 +#: actions/pushhub.php:174 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." msgstr "Неважечки hub.topic „%s“. Групата не постои." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. -#: actions/pushhub.php:195 +#: actions/pushhub.php:199 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Добив неважечка URL-адреса за %1$s: „%2$s“" -#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43 msgid "No such user." msgstr "Нема таков корисник." @@ -482,48 +482,48 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "Забелешката со ID %1$s не е објавена од %2$s." #. TRANS: Field label. -#: actions/ostatusgroup.php:76 +#: actions/ostatusgroup.php:78 msgid "Join group" msgstr "Придружи се на групата" #. TRANS: Tooltip for field label "Join group". -#: actions/ostatusgroup.php:79 +#: actions/ostatusgroup.php:81 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" "Адреса на групата на OStatus, како на пр. http://primer.net/group/prekar." #. TRANS: Button text. -#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +#: actions/ostatusgroup.php:86 actions/ostatussub.php:75 msgctxt "BUTTON" msgid "Continue" msgstr "Продолжи" -#: actions/ostatusgroup.php:103 +#: actions/ostatusgroup.php:105 msgid "You are already a member of this group." msgstr "Веќе членувате во групава." #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:138 +#: actions/ostatusgroup.php:140 msgid "Already a member!" msgstr "Веќе членувате!" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:149 +#: actions/ostatusgroup.php:151 msgid "Remote group join failed!" msgstr "Придружувањето на далечинската група не успеа!" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:153 +#: actions/ostatusgroup.php:155 msgid "Remote group join aborted!" msgstr "Придружувањето на далечинската група е откажано!" #. TRANS: Page title for OStatus remote group join form -#: actions/ostatusgroup.php:165 +#: actions/ostatusgroup.php:167 msgid "Confirm joining remote group" msgstr "Потврди придружување кон далечинска група." #. TRANS: Instructions. -#: actions/ostatusgroup.php:176 +#: actions/ostatusgroup.php:178 msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" @@ -573,12 +573,12 @@ msgid "Could not remove remote user %1$s from group %2$s." msgstr "Не можев да го отстранам далечинскиот корисник %1$s од групата %2$s." #. TRANS: Field label for a field that takes an OStatus user address. -#: actions/ostatussub.php:66 +#: actions/ostatussub.php:68 msgid "Subscribe to" msgstr "Претплати се" #. TRANS: Tooltip for field label "Subscribe to". -#: actions/ostatussub.php:69 +#: actions/ostatussub.php:71 msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" @@ -588,49 +588,49 @@ msgstr "" #. TRANS: Button text. #. TRANS: Tooltip for button "Join". -#: actions/ostatussub.php:110 +#: actions/ostatussub.php:112 msgctxt "BUTTON" msgid "Join this group" msgstr "Зачлени се во групава" #. TRANS: Button text. -#: actions/ostatussub.php:113 +#: actions/ostatussub.php:115 msgctxt "BUTTON" msgid "Confirm" msgstr "Потврди" #. TRANS: Tooltip for button "Confirm". -#: actions/ostatussub.php:115 +#: actions/ostatussub.php:117 msgid "Subscribe to this user" msgstr "Претплати се на корисников" -#: actions/ostatussub.php:136 +#: actions/ostatussub.php:138 msgid "You are already subscribed to this user." msgstr "Веќе сте претплатени на овој корисник." -#: actions/ostatussub.php:165 +#: actions/ostatussub.php:167 msgid "Photo" msgstr "Слика" -#: actions/ostatussub.php:176 +#: actions/ostatussub.php:178 msgid "Nickname" msgstr "Прекар" -#: actions/ostatussub.php:197 +#: actions/ostatussub.php:199 msgid "Location" msgstr "Место" -#: actions/ostatussub.php:206 +#: actions/ostatussub.php:208 msgid "URL" msgstr "URL-адереса" -#: actions/ostatussub.php:218 +#: actions/ostatussub.php:220 msgid "Note" msgstr "Белешка" #. TRANS: Error text. -#: actions/ostatussub.php:254 actions/ostatussub.php:261 -#: actions/ostatussub.php:286 +#: actions/ostatussub.php:256 actions/ostatussub.php:263 +#: actions/ostatussub.php:288 msgid "" "Sorry, we could not reach that address. Please make sure that the OStatus " "address is like nickname@example.com or http://example.net/nickname." @@ -639,9 +639,9 @@ msgstr "" "OStatus е од типот prekar@primer.com или http://primer.net/prekar." #. TRANS: Error text. -#: actions/ostatussub.php:265 actions/ostatussub.php:269 -#: actions/ostatussub.php:273 actions/ostatussub.php:277 -#: actions/ostatussub.php:281 +#: actions/ostatussub.php:267 actions/ostatussub.php:271 +#: actions/ostatussub.php:275 actions/ostatussub.php:279 +#: actions/ostatussub.php:283 msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." @@ -650,31 +650,31 @@ msgstr "" "адреса подоцна." #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:315 +#: actions/ostatussub.php:317 msgid "Already subscribed!" msgstr "Веќе сте претплатени!" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:320 +#: actions/ostatussub.php:322 msgid "Remote subscription failed!" msgstr "Далечинската претплата не успеа!" -#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +#: actions/ostatussub.php:369 actions/ostatusinit.php:64 msgid "There was a problem with your session token. Try again, please." msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се повторно." #. TRANS: Form title. -#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +#: actions/ostatussub.php:397 actions/ostatusinit.php:83 msgid "Subscribe to user" msgstr "Претплати се на корисник" #. TRANS: Page title for OStatus remote subscription form -#: actions/ostatussub.php:415 +#: actions/ostatussub.php:417 msgid "Confirm" msgstr "Потврди" #. TRANS: Instructions. -#: actions/ostatussub.php:427 +#: actions/ostatussub.php:429 msgid "" "You can subscribe to users from other supported sites. Paste their address " "or profile URI below:" @@ -683,103 +683,103 @@ msgstr "" "Ископирајте ја нивната адреса или профилно URI подолу:" #. TRANS: Client error. -#: actions/ostatusinit.php:41 +#: actions/ostatusinit.php:42 msgid "You can use the local subscription!" msgstr "Можете да ја користите локалната претплата!" #. TRANS: Form legend. -#: actions/ostatusinit.php:97 +#: actions/ostatusinit.php:98 #, php-format msgid "Join group %s" msgstr "Зачлени се во групата %s" #. TRANS: Button text. -#: actions/ostatusinit.php:99 +#: actions/ostatusinit.php:100 msgctxt "BUTTON" msgid "Join" msgstr "Зачлени се" #. TRANS: Form legend. -#: actions/ostatusinit.php:102 +#: actions/ostatusinit.php:103 #, php-format msgid "Subscribe to %s" msgstr "Претплати се на %s" #. TRANS: Button text. -#: actions/ostatusinit.php:104 +#: actions/ostatusinit.php:105 msgctxt "BUTTON" msgid "Subscribe" msgstr "Претплати се" #. TRANS: Field label. -#: actions/ostatusinit.php:117 +#: actions/ostatusinit.php:118 msgid "User nickname" msgstr "Прекар на корисникот" -#: actions/ostatusinit.php:118 +#: actions/ostatusinit.php:119 msgid "Nickname of the user you want to follow." msgstr "Прекарот на корисникот што сакате да го следите." #. TRANS: Field label. -#: actions/ostatusinit.php:123 +#: actions/ostatusinit.php:124 msgid "Profile Account" msgstr "Профилна сметка" #. TRANS: Tooltip for field label "Profile Account". -#: actions/ostatusinit.php:125 +#: actions/ostatusinit.php:126 msgid "Your account id (e.g. user@identi.ca)." msgstr "Вашата назнака (ID) на сметката (на пр. korisnik@identi.ca)." #. TRANS: Client error. -#: actions/ostatusinit.php:147 +#: actions/ostatusinit.php:148 msgid "Must provide a remote profile." msgstr "Мора да наведете далечински профил." #. TRANS: Client error. -#: actions/ostatusinit.php:159 +#: actions/ostatusinit.php:160 msgid "Couldn't look up OStatus account profile." msgstr "Не можев да го проверам профилот на OStatus-сметката." #. TRANS: Client error. -#: actions/ostatusinit.php:172 +#: actions/ostatusinit.php:173 msgid "Couldn't confirm remote profile address." msgstr "Не можев да ја потврдам адресата на далечинскиот профил." #. TRANS: Page title. -#: actions/ostatusinit.php:217 +#: actions/ostatusinit.php:218 msgid "OStatus Connect" msgstr "OStatus - Поврзување" -#: actions/pushcallback.php:48 +#: actions/pushcallback.php:50 msgid "Empty or invalid feed id." msgstr "Празен или неважечки ID за канал" #. TRANS: Server exception. %s is a feed ID. -#: actions/pushcallback.php:54 +#: actions/pushcallback.php:56 #, php-format msgid "Unknown PuSH feed id %s" msgstr "Непознат ID %s за PuSH-канал" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:94 +#: actions/pushcallback.php:96 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Лош hub.topic-канал „%s“." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:99 +#: actions/pushcallback.php:101 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Лош hub.verify_token %1$s за %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:106 +#: actions/pushcallback.php:108 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Неочекувано барање за претплата за %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:111 +#: actions/pushcallback.php:113 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Неочекувано барање за отпишување од претплата за %s." diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 6fec3ea2a2..172edcd1ea 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:12+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-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -24,39 +24,39 @@ msgstr "" #. TRANS: Link description for link to subscribe to a remote user. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:227 OStatusPlugin.php:937 +#: OStatusPlugin.php:229 OStatusPlugin.php:939 msgid "Subscribe" msgstr "Abonneren" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109 msgid "Join" msgstr "Toetreden" #. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:459 +#: OStatusPlugin.php:461 #, php-format msgid "Sent from %s via OStatus" msgstr "Verzonden vanaf %s via OStatus" #. TRANS: Exception. -#: OStatusPlugin.php:531 +#: OStatusPlugin.php:533 msgid "Could not set up remote subscription." msgstr "" "Het was niet mogelijk het abonnement via een andere dienst in te stellen." -#: OStatusPlugin.php:605 +#: OStatusPlugin.php:607 msgid "Unfollow" msgstr "Niet langer volgen" #. TRANS: Success message for unsubscribe from user attempt through OStatus. #. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. -#: OStatusPlugin.php:608 +#: OStatusPlugin.php:610 #, php-format msgid "%1$s stopped following %2$s." msgstr "%1$s volgt %2$s niet langer." -#: OStatusPlugin.php:636 +#: OStatusPlugin.php:638 msgid "Could not set up remote group membership." msgstr "" "Het was niet mogelijk het groepslidmaatschap via een andere dienst in te " @@ -64,58 +64,58 @@ msgstr "" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: OStatusPlugin.php:658 -#, fuzzy, php-format +#: OStatusPlugin.php:660 +#, php-format msgid "%1$s has joined group %2$s." -msgstr "%1$s volgt %2$s niet langer." +msgstr "%1$s is lid geworden van de groep %2$s." #. TRANS: Exception. -#: OStatusPlugin.php:667 +#: OStatusPlugin.php:669 msgid "Failed joining remote group." msgstr "" "Het was niet mogelijk toe te streden to de groep van een andere dienst." -#: OStatusPlugin.php:707 +#: OStatusPlugin.php:709 msgid "Leave" msgstr "Verlaten" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:710 +#: OStatusPlugin.php:712 #, php-format msgid "%1$s has left group %2$s." -msgstr "" +msgstr "%1$s heeft de groep %2$s verlaten" -#: OStatusPlugin.php:785 +#: OStatusPlugin.php:787 msgid "Disfavor" msgstr "Uit favorieten verwijderen" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:788 +#: OStatusPlugin.php:790 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." msgstr "%1$s heeft de mededeling %2$s als favoriet verwijderd." #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:864 +#: OStatusPlugin.php:866 msgid "Remote" msgstr "Via andere dienst" #. TRANS: Title for activity. -#: OStatusPlugin.php:904 +#: OStatusPlugin.php:906 msgid "Profile update" msgstr "Profielupdate" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:907 +#: OStatusPlugin.php:909 #, php-format msgid "%s has updated their profile page." msgstr "Het profiel van %s is bijgewerkt." #. TRANS: Plugin description. -#: OStatusPlugin.php:952 +#: OStatusPlugin.php:954 msgid "" "Follow people across social networks that implement OStatus." @@ -123,18 +123,18 @@ msgstr "" "Mensen volgen over sociale netwerken die gebruik maken van OStatus." -#: classes/FeedSub.php:248 +#: classes/FeedSub.php:252 msgid "Attempting to start PuSH subscription for feed with no hub." msgstr "" "Aan het proberen een PuSH-abonnement te krijgen op een feed zonder hub." -#: classes/FeedSub.php:278 +#: classes/FeedSub.php:282 msgid "Attempting to end PuSH subscription for feed with no hub." msgstr "" "Aan het proberen een PuSH-abonnement te verwijderen voor een feed zonder hub." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:188 +#: classes/Ostatus_profile.php:192 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." msgstr "" @@ -142,7 +142,7 @@ msgstr "" "voor %s is ingesteld." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:191 +#: classes/Ostatus_profile.php:195 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." msgstr "" @@ -151,13 +151,13 @@ msgstr "" #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. -#: classes/Ostatus_profile.php:281 +#: classes/Ostatus_profile.php:285 #, php-format msgid "Invalid actor passed to %1$s: %2$s." msgstr "Ongeldige actor doorgegeven aan %1$s: %2$s." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:374 +#: classes/Ostatus_profile.php:378 msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." @@ -165,125 +165,125 @@ msgstr "" "Ongeldig type doorgegeven aan Ostatus_profile::notify. Het moet een XML-" "string of Activity zijn." -#: classes/Ostatus_profile.php:404 +#: classes/Ostatus_profile.php:408 msgid "Unknown feed format." msgstr "Onbekend feedformaat" -#: classes/Ostatus_profile.php:427 +#: classes/Ostatus_profile.php:431 msgid "RSS feed without a channel." msgstr "RSS-feed zonder kanaal." #. TRANS: Client exception. -#: classes/Ostatus_profile.php:472 +#: classes/Ostatus_profile.php:476 msgid "Can't handle that kind of post." msgstr "Dat type post kan niet verwerkt worden." #. TRANS: Client exception. %s is a source URL. -#: classes/Ostatus_profile.php:555 +#: classes/Ostatus_profile.php:559 #, php-format msgid "No content for notice %s." msgstr "Geen inhoud voor mededeling %s." #. TRANS: Shown when a notice is longer than supported and/or when attachments are present. -#: classes/Ostatus_profile.php:588 +#: classes/Ostatus_profile.php:592 msgid "Show more" msgstr "Meer weergeven" #. TRANS: Exception. %s is a profile URL. -#: classes/Ostatus_profile.php:781 +#: classes/Ostatus_profile.php:785 #, php-format msgid "Could not reach profile page %s." msgstr "Het was niet mogelijk de profielpagina %s te bereiken." #. TRANS: Exception. -#: classes/Ostatus_profile.php:839 +#: classes/Ostatus_profile.php:843 #, php-format msgid "Could not find a feed URL for profile page %s." msgstr "Het was niet mogelijk de feed-URL voor de profielpagina %s te vinden." -#: classes/Ostatus_profile.php:976 +#: classes/Ostatus_profile.php:980 msgid "Can't find enough profile information to make a feed." msgstr "" "Het was niet mogelijk voldoende profielinformatie te vinden om een feed te " "maken." -#: classes/Ostatus_profile.php:1035 +#: classes/Ostatus_profile.php:1039 #, php-format msgid "Invalid avatar URL %s." msgstr "Ongeldige avatar-URL %s." -#: classes/Ostatus_profile.php:1045 +#: classes/Ostatus_profile.php:1049 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" "Geprobeerd om een avatar bij te werken voor het niet opgeslagen profiel %s." -#: classes/Ostatus_profile.php:1053 +#: classes/Ostatus_profile.php:1057 #, php-format msgid "Unable to fetch avatar from %s." msgstr "Het was niet mogelijk de avatar op te halen van %s." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1275 +#: classes/Ostatus_profile.php:1279 msgid "Local user can't be referenced as remote." msgstr "" "Naar een lokale gebruiker kan niet verwezen worden alsof die zich bij een " "andere dienst bevindt." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1280 +#: classes/Ostatus_profile.php:1284 msgid "Local group can't be referenced as remote." msgstr "" "Naar een lokale groep kan niet verwezen worden alsof die zich bij een andere " "dienst bevindt." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347 msgid "Can't save local profile." msgstr "Het was niet mogelijk het lokale profiel op te slaan." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1351 +#: classes/Ostatus_profile.php:1355 msgid "Can't save OStatus profile." msgstr "Het was niet mogelijk het Ostatusprofiel op te slaan." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642 msgid "Not a valid webfinger address." msgstr "Geen geldig webfingeradres." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1720 +#: classes/Ostatus_profile.php:1724 #, php-format msgid "Couldn't save profile for \"%s\"." msgstr "Het was niet mogelijk het profiel voor \"%s\" op te slaan." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1739 +#: classes/Ostatus_profile.php:1743 #, php-format msgid "Couldn't save ostatus_profile for \"%s\"." msgstr "Het was niet mogelijk het ostatus_profile voor \"%s\" op te slaan." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1747 +#: classes/Ostatus_profile.php:1751 #, php-format msgid "Couldn't find a valid profile for \"%s\"." msgstr "Er is geen geldig profiel voor \"%s\" gevonden." -#: classes/Ostatus_profile.php:1789 +#: classes/Ostatus_profile.php:1793 msgid "Could not store HTML content of long post as file." msgstr "" "Het was niet mogelijk de HTML-inhoud van het lange bericht als bestand op te " "slaan." #. TRANS: Client exception. %s is a HTTP status code. -#: classes/HubSub.php:208 +#: classes/HubSub.php:212 #, php-format msgid "Hub subscriber verification returned HTTP %s." msgstr "De controle voor de hubabonnee heeft een HTTP %s teruggegeven." #. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. -#: classes/HubSub.php:355 +#: classes/HubSub.php:359 #, php-format msgid "Callback returned status: %1$s. Body: %2$s" msgstr "De callback heeft de status %1$s teruggegeven. Inhoud: %2$s." @@ -390,18 +390,18 @@ msgid "Feeds" msgstr "Feeds" #. TRANS: Client exception. -#: actions/pushhub.php:66 +#: actions/pushhub.php:70 msgid "Publishing outside feeds not supported." msgstr "Publiceren buiten feeds om wordt niet ondersteund." #. TRANS: Client exception. %s is a mode. -#: actions/pushhub.php:69 +#: actions/pushhub.php:73 #, php-format msgid "Unrecognized mode \"%s\"." msgstr "Niet herkende modus \"%s\"." #. TRANS: Client exception. %s is a topic. -#: actions/pushhub.php:89 +#: actions/pushhub.php:93 #, php-format msgid "" "Unsupported hub.topic %s this hub only serves local user and group Atom " @@ -411,14 +411,14 @@ msgstr "" "lokale gebruikers en groepen." #. TRANS: Client exception. -#: actions/pushhub.php:95 +#: actions/pushhub.php:99 #, php-format msgid "Invalid hub.verify \"%s\". It must be sync or async." msgstr "" "Ongeldige waarde voor hub.verify \"%s\". Het moet \"sync\" of \"async\" zijn." #. TRANS: Client exception. -#: actions/pushhub.php:101 +#: actions/pushhub.php:105 #, php-format msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." msgstr "" @@ -426,32 +426,32 @@ msgstr "" "positief geheel getal." #. TRANS: Client exception. -#: actions/pushhub.php:109 +#: actions/pushhub.php:113 #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "" "Ongeldig hub.secret \"%s\". Het moet minder dan tweehonderd bytes bevatten." #. TRANS: Client exception. -#: actions/pushhub.php:161 +#: actions/pushhub.php:165 #, php-format msgid "Invalid hub.topic \"%s\". User doesn't exist." msgstr "Ongeldig hub.topic \"%s\". De gebruiker bestaat niet." #. TRANS: Client exception. -#: actions/pushhub.php:170 +#: actions/pushhub.php:174 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." msgstr "Ongeldig hub.topic \"%s\". De groep bestaat niet." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. -#: actions/pushhub.php:195 +#: actions/pushhub.php:199 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Er is een ongeldige URL doorgegeven voor %1$s: \"%2$s\"" -#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43 msgid "No such user." msgstr "Onbekende gebruiker." @@ -502,49 +502,49 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "De mededeling met ID %1$s is niet geplaatst foor %2$s." #. TRANS: Field label. -#: actions/ostatusgroup.php:76 +#: actions/ostatusgroup.php:78 msgid "Join group" msgstr "Lid worden van groep" #. TRANS: Tooltip for field label "Join group". -#: actions/ostatusgroup.php:79 +#: actions/ostatusgroup.php:81 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" "Het adres voor de OStatusgroep. Bijvoorbeeld; http://example.net/group/" "nickname." #. TRANS: Button text. -#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +#: actions/ostatusgroup.php:86 actions/ostatussub.php:75 msgctxt "BUTTON" msgid "Continue" msgstr "Doorgaan" -#: actions/ostatusgroup.php:103 +#: actions/ostatusgroup.php:105 msgid "You are already a member of this group." msgstr "U bent al lid van deze groep." #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:138 +#: actions/ostatusgroup.php:140 msgid "Already a member!" msgstr "U bent al lid!" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:149 +#: actions/ostatusgroup.php:151 msgid "Remote group join failed!" msgstr "Het verlaten van de groep bij een andere dienst is mislukt." #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:153 +#: actions/ostatusgroup.php:155 msgid "Remote group join aborted!" msgstr "Het lid worden van de groep bij een andere dienst is afgebroken." #. TRANS: Page title for OStatus remote group join form -#: actions/ostatusgroup.php:165 +#: actions/ostatusgroup.php:167 msgid "Confirm joining remote group" msgstr "Lid worden van groep bij andere dienst" #. TRANS: Instructions. -#: actions/ostatusgroup.php:176 +#: actions/ostatusgroup.php:178 msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" @@ -600,12 +600,12 @@ msgstr "" "te verwijderen." #. TRANS: Field label for a field that takes an OStatus user address. -#: actions/ostatussub.php:66 +#: actions/ostatussub.php:68 msgid "Subscribe to" msgstr "Abonneren op" #. TRANS: Tooltip for field label "Subscribe to". -#: actions/ostatussub.php:69 +#: actions/ostatussub.php:71 msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" @@ -615,49 +615,49 @@ msgstr "" #. TRANS: Button text. #. TRANS: Tooltip for button "Join". -#: actions/ostatussub.php:110 +#: actions/ostatussub.php:112 msgctxt "BUTTON" msgid "Join this group" msgstr "Lid worden van deze groep" #. TRANS: Button text. -#: actions/ostatussub.php:113 +#: actions/ostatussub.php:115 msgctxt "BUTTON" msgid "Confirm" msgstr "Bevestigen" #. TRANS: Tooltip for button "Confirm". -#: actions/ostatussub.php:115 +#: actions/ostatussub.php:117 msgid "Subscribe to this user" msgstr "Abonneren op deze gebruiker" -#: actions/ostatussub.php:136 +#: actions/ostatussub.php:138 msgid "You are already subscribed to this user." msgstr "U bent al geabonneerd op deze gebruiker." -#: actions/ostatussub.php:165 +#: actions/ostatussub.php:167 msgid "Photo" msgstr "Foto" -#: actions/ostatussub.php:176 +#: actions/ostatussub.php:178 msgid "Nickname" msgstr "Gebruikersnaam" -#: actions/ostatussub.php:197 +#: actions/ostatussub.php:199 msgid "Location" msgstr "Locatie" -#: actions/ostatussub.php:206 +#: actions/ostatussub.php:208 msgid "URL" msgstr "URL" -#: actions/ostatussub.php:218 +#: actions/ostatussub.php:220 msgid "Note" msgstr "Opmerking" #. TRANS: Error text. -#: actions/ostatussub.php:254 actions/ostatussub.php:261 -#: actions/ostatussub.php:286 +#: actions/ostatussub.php:256 actions/ostatussub.php:263 +#: actions/ostatussub.php:288 msgid "" "Sorry, we could not reach that address. Please make sure that the OStatus " "address is like nickname@example.com or http://example.net/nickname." @@ -666,9 +666,9 @@ msgstr "" "van gebruiker@example.com of http://example.net/gebruiker." #. TRANS: Error text. -#: actions/ostatussub.php:265 actions/ostatussub.php:269 -#: actions/ostatussub.php:273 actions/ostatussub.php:277 -#: actions/ostatussub.php:281 +#: actions/ostatussub.php:267 actions/ostatussub.php:271 +#: actions/ostatussub.php:275 actions/ostatussub.php:279 +#: actions/ostatussub.php:283 msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." @@ -676,33 +676,33 @@ msgstr "" "Die feed was niet te bereiken. Probeer dat OStatusadres later nog een keer." #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:315 +#: actions/ostatussub.php:317 msgid "Already subscribed!" msgstr "U bent al gebonneerd!" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:320 +#: actions/ostatussub.php:322 msgid "Remote subscription failed!" msgstr "Abonneren via een andere dienst is mislukt!" -#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +#: actions/ostatussub.php:369 actions/ostatusinit.php:64 msgid "There was a problem with your session token. Try again, please." msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " "alstublieft." #. TRANS: Form title. -#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +#: actions/ostatussub.php:397 actions/ostatusinit.php:83 msgid "Subscribe to user" msgstr "Abonneren op gebruiker" #. TRANS: Page title for OStatus remote subscription form -#: actions/ostatussub.php:415 +#: actions/ostatussub.php:417 msgid "Confirm" msgstr "Bevestigen" #. TRANS: Instructions. -#: actions/ostatussub.php:427 +#: actions/ostatussub.php:429 msgid "" "You can subscribe to users from other supported sites. Paste their address " "or profile URI below:" @@ -711,104 +711,104 @@ msgstr "" "of profiel-URI hieronder:" #. TRANS: Client error. -#: actions/ostatusinit.php:41 +#: actions/ostatusinit.php:42 msgid "You can use the local subscription!" msgstr "U kunt het lokale abonnement gebruiken!" #. TRANS: Form legend. -#: actions/ostatusinit.php:97 +#: actions/ostatusinit.php:98 #, php-format msgid "Join group %s" msgstr "Lid worden van de groep %s" #. TRANS: Button text. -#: actions/ostatusinit.php:99 +#: actions/ostatusinit.php:100 msgctxt "BUTTON" msgid "Join" msgstr "Toetreden" #. TRANS: Form legend. -#: actions/ostatusinit.php:102 +#: actions/ostatusinit.php:103 #, php-format msgid "Subscribe to %s" msgstr "Abonneren op %s" #. TRANS: Button text. -#: actions/ostatusinit.php:104 +#: actions/ostatusinit.php:105 msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonneren" #. TRANS: Field label. -#: actions/ostatusinit.php:117 +#: actions/ostatusinit.php:118 msgid "User nickname" msgstr "Gebruikersnaam" -#: actions/ostatusinit.php:118 +#: actions/ostatusinit.php:119 msgid "Nickname of the user you want to follow." msgstr "Gebruikersnaam van de gebruiker waarop u wilt abonneren." #. TRANS: Field label. -#: actions/ostatusinit.php:123 +#: actions/ostatusinit.php:124 msgid "Profile Account" msgstr "Gebruikersprofiel" #. TRANS: Tooltip for field label "Profile Account". -#: actions/ostatusinit.php:125 +#: actions/ostatusinit.php:126 msgid "Your account id (e.g. user@identi.ca)." msgstr "Uw gebruikers-ID (bv. gebruiker@identi.ca)." #. TRANS: Client error. -#: actions/ostatusinit.php:147 +#: actions/ostatusinit.php:148 msgid "Must provide a remote profile." msgstr "Er moet een profiel bij een andere dienst opgegeven worden." #. TRANS: Client error. -#: actions/ostatusinit.php:159 +#: actions/ostatusinit.php:160 msgid "Couldn't look up OStatus account profile." msgstr "Het was niet mogelijk het OStatusgebruikersprofiel te vinden." #. TRANS: Client error. -#: actions/ostatusinit.php:172 +#: actions/ostatusinit.php:173 msgid "Couldn't confirm remote profile address." msgstr "" "Het was niet mogelijk het profieladres bij de andere dienst te bevestigen." #. TRANS: Page title. -#: actions/ostatusinit.php:217 +#: actions/ostatusinit.php:218 msgid "OStatus Connect" msgstr "OStatuskoppeling" -#: actions/pushcallback.php:48 +#: actions/pushcallback.php:50 msgid "Empty or invalid feed id." msgstr "Het feed-ID is leeg of ongeldig." #. TRANS: Server exception. %s is a feed ID. -#: actions/pushcallback.php:54 +#: actions/pushcallback.php:56 #, php-format msgid "Unknown PuSH feed id %s" msgstr "Het PuSH feed-ID %s is onbekend" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:94 +#: actions/pushcallback.php:96 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Ongeldige hub.topic feed \"%s\"." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:99 +#: actions/pushcallback.php:101 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Ongeldig hub.verify_token %1$s voor %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:106 +#: actions/pushcallback.php:108 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Onverwacht abonneringsverzoek voor %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:111 +#: actions/pushcallback.php:113 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Onverwacht verzoek om abonnement op te hebben voor %s." diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 3312c5e60b..01144504aa 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" -"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -24,94 +24,94 @@ msgstr "" #. TRANS: Link description for link to subscribe to a remote user. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:227 OStatusPlugin.php:937 +#: OStatusPlugin.php:229 OStatusPlugin.php:939 msgid "Subscribe" msgstr "Підписатись" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109 msgid "Join" msgstr "Приєднатися" #. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:459 +#: OStatusPlugin.php:461 #, php-format msgid "Sent from %s via OStatus" msgstr "Надіслано з %s через OStatus" #. TRANS: Exception. -#: OStatusPlugin.php:531 +#: OStatusPlugin.php:533 msgid "Could not set up remote subscription." msgstr "Не вдалося створити віддалену підписку." -#: OStatusPlugin.php:605 +#: OStatusPlugin.php:607 msgid "Unfollow" msgstr "Не читати" #. TRANS: Success message for unsubscribe from user attempt through OStatus. #. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. -#: OStatusPlugin.php:608 +#: OStatusPlugin.php:610 #, php-format msgid "%1$s stopped following %2$s." msgstr "%1$s припинив читати ваші дописи %2$s." -#: OStatusPlugin.php:636 +#: OStatusPlugin.php:638 msgid "Could not set up remote group membership." msgstr "Не вдалося приєднатися до віддаленої спільноти." #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: OStatusPlugin.php:658 -#, fuzzy, php-format +#: OStatusPlugin.php:660 +#, php-format msgid "%1$s has joined group %2$s." -msgstr "%1$s припинив читати ваші дописи %2$s." +msgstr "%1$s приєднався до спільноти %2$s." #. TRANS: Exception. -#: OStatusPlugin.php:667 +#: OStatusPlugin.php:669 msgid "Failed joining remote group." msgstr "Помилка приєднання до віддаленої спільноти." -#: OStatusPlugin.php:707 +#: OStatusPlugin.php:709 msgid "Leave" msgstr "Залишити" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:710 +#: OStatusPlugin.php:712 #, php-format msgid "%1$s has left group %2$s." -msgstr "" +msgstr "%1$s залишив спільноту %2$s." -#: OStatusPlugin.php:785 +#: OStatusPlugin.php:787 msgid "Disfavor" msgstr "Не обраний" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:788 +#: OStatusPlugin.php:790 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." msgstr "%1$s позначив допис %2$s, як такий, що більше не є обраним." #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:864 +#: OStatusPlugin.php:866 msgid "Remote" msgstr "Віддалено" #. TRANS: Title for activity. -#: OStatusPlugin.php:904 +#: OStatusPlugin.php:906 msgid "Profile update" msgstr "Оновлення профілю" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:907 +#: OStatusPlugin.php:909 #, php-format msgid "%s has updated their profile page." msgstr "%s оновив сторінку свого профілю." #. TRANS: Plugin description. -#: OStatusPlugin.php:952 +#: OStatusPlugin.php:954 msgid "" "Follow people across social networks that implement OStatus." @@ -119,19 +119,19 @@ msgstr "" "Додає можливість слідкувати за дописами людей з інших мереж, які підтримують " "протокол OStatus." -#: classes/FeedSub.php:248 +#: classes/FeedSub.php:252 msgid "Attempting to start PuSH subscription for feed with no hub." msgstr "" "Спроба підписатися за допомогою PuSH до веб-стрічки, котра не має вузла." -#: classes/FeedSub.php:278 +#: classes/FeedSub.php:282 msgid "Attempting to end PuSH subscription for feed with no hub." msgstr "" "Спроба скасувати підписку за допомогою PuSH до веб-стрічки, котра не має " "вузла." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:188 +#: classes/Ostatus_profile.php:192 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." msgstr "" @@ -139,7 +139,7 @@ msgstr "" "ідентифікатори встановлено для %s." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:191 +#: classes/Ostatus_profile.php:195 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." msgstr "" @@ -148,13 +148,13 @@ msgstr "" #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. -#: classes/Ostatus_profile.php:281 +#: classes/Ostatus_profile.php:285 #, php-format msgid "Invalid actor passed to %1$s: %2$s." msgstr "До %1$s передано невірний об’єкт: %2$s." #. TRANS: Server exception. -#: classes/Ostatus_profile.php:374 +#: classes/Ostatus_profile.php:378 msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." @@ -162,117 +162,117 @@ msgstr "" "До параметру Ostatus_profile::notify передано невірний тип. Це має бути або " "рядок у форматі XML, або запис активності." -#: classes/Ostatus_profile.php:404 +#: classes/Ostatus_profile.php:408 msgid "Unknown feed format." msgstr "Невідомий формат веб-стрічки." -#: classes/Ostatus_profile.php:427 +#: classes/Ostatus_profile.php:431 msgid "RSS feed without a channel." msgstr "RSS-стрічка не має каналу." #. TRANS: Client exception. -#: classes/Ostatus_profile.php:472 +#: classes/Ostatus_profile.php:476 msgid "Can't handle that kind of post." msgstr "Не вдається обробити такий тип допису." #. TRANS: Client exception. %s is a source URL. -#: classes/Ostatus_profile.php:555 +#: classes/Ostatus_profile.php:559 #, php-format msgid "No content for notice %s." msgstr "Допис %s не має змісту." #. TRANS: Shown when a notice is longer than supported and/or when attachments are present. -#: classes/Ostatus_profile.php:588 +#: classes/Ostatus_profile.php:592 msgid "Show more" msgstr "Дивитись далі" #. TRANS: Exception. %s is a profile URL. -#: classes/Ostatus_profile.php:781 +#: classes/Ostatus_profile.php:785 #, php-format msgid "Could not reach profile page %s." msgstr "Не вдалося досягти сторінки профілю %s." #. TRANS: Exception. -#: classes/Ostatus_profile.php:839 +#: classes/Ostatus_profile.php:843 #, php-format msgid "Could not find a feed URL for profile page %s." msgstr "Не вдалося знайти URL веб-стрічки для сторінки профілю %s." -#: classes/Ostatus_profile.php:976 +#: classes/Ostatus_profile.php:980 msgid "Can't find enough profile information to make a feed." msgstr "" "Не можу знайти достатньо інформації про профіль, аби сформувати веб-стрічку." -#: classes/Ostatus_profile.php:1035 +#: classes/Ostatus_profile.php:1039 #, php-format msgid "Invalid avatar URL %s." msgstr "Невірна URL-адреса аватари %s." -#: classes/Ostatus_profile.php:1045 +#: classes/Ostatus_profile.php:1049 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "Намагаюся оновити аватару для не збереженого віддаленого профілю %s." -#: classes/Ostatus_profile.php:1053 +#: classes/Ostatus_profile.php:1057 #, php-format msgid "Unable to fetch avatar from %s." msgstr "Неможливо завантажити аватару з %s." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1275 +#: classes/Ostatus_profile.php:1279 msgid "Local user can't be referenced as remote." msgstr "Місцевий користувач не може бути зазначеним у якості віддаленого." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1280 +#: classes/Ostatus_profile.php:1284 msgid "Local group can't be referenced as remote." msgstr "Локальну спільноту не можна зазначити у якості віддаленої." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347 msgid "Can't save local profile." msgstr "Не вдається зберегти місцевий профіль." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1351 +#: classes/Ostatus_profile.php:1355 msgid "Can't save OStatus profile." msgstr "Не вдається зберегти профіль OStatus." #. TRANS: Exception. -#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642 msgid "Not a valid webfinger address." msgstr "Це недійсна адреса для протоколу WebFinger." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1720 +#: classes/Ostatus_profile.php:1724 #, php-format msgid "Couldn't save profile for \"%s\"." msgstr "Не можу зберегти профіль для «%s»." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1739 +#: classes/Ostatus_profile.php:1743 #, php-format msgid "Couldn't save ostatus_profile for \"%s\"." msgstr "Не можу зберегти профіль OStatus для «%s»." #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1747 +#: classes/Ostatus_profile.php:1751 #, php-format msgid "Couldn't find a valid profile for \"%s\"." msgstr "не можу знайти відповідний й профіль для «%s»." -#: classes/Ostatus_profile.php:1789 +#: classes/Ostatus_profile.php:1793 msgid "Could not store HTML content of long post as file." msgstr "Не можу зберегти HTML місткого допису у якості файлу." #. TRANS: Client exception. %s is a HTTP status code. -#: classes/HubSub.php:208 +#: classes/HubSub.php:212 #, php-format msgid "Hub subscriber verification returned HTTP %s." msgstr "Перевірка вузла підписки завершилася зі статусом HTTP %s." #. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. -#: classes/HubSub.php:355 +#: classes/HubSub.php:359 #, php-format msgid "Callback returned status: %1$s. Body: %2$s" msgstr "Зворотній виклик повернуто зі статусом: %1$s. Зміст: %2$s" @@ -378,18 +378,18 @@ msgid "Feeds" msgstr "Веб-стрічки" #. TRANS: Client exception. -#: actions/pushhub.php:66 +#: actions/pushhub.php:70 msgid "Publishing outside feeds not supported." msgstr "Публікація змісту зовнішніх веб-стрічок не підтримується." #. TRANS: Client exception. %s is a mode. -#: actions/pushhub.php:69 +#: actions/pushhub.php:73 #, php-format msgid "Unrecognized mode \"%s\"." msgstr "Невизначений режим «%s»." #. TRANS: Client exception. %s is a topic. -#: actions/pushhub.php:89 +#: actions/pushhub.php:93 #, php-format msgid "" "Unsupported hub.topic %s this hub only serves local user and group Atom " @@ -399,13 +399,13 @@ msgstr "" "користувачами та групою веб-стрічок у форматі Atom." #. TRANS: Client exception. -#: actions/pushhub.php:95 +#: actions/pushhub.php:99 #, php-format msgid "Invalid hub.verify \"%s\". It must be sync or async." msgstr "hub.verify «%s» невірний. Він має бути синхронним або ж асинхронним." #. TRANS: Client exception. -#: actions/pushhub.php:101 +#: actions/pushhub.php:105 #, php-format msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." msgstr "" @@ -413,31 +413,31 @@ msgstr "" "число." #. TRANS: Client exception. -#: actions/pushhub.php:109 +#: actions/pushhub.php:113 #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "hub.secret «%s» невірний. 200 байтів — не більше." #. TRANS: Client exception. -#: actions/pushhub.php:161 +#: actions/pushhub.php:165 #, php-format msgid "Invalid hub.topic \"%s\". User doesn't exist." msgstr "hub.topic «%s» невірний. Користувача не існує." #. TRANS: Client exception. -#: actions/pushhub.php:170 +#: actions/pushhub.php:174 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." msgstr "hub.topic «%s» невірний. Спільноти не існує." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. -#: actions/pushhub.php:195 +#: actions/pushhub.php:199 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Для %1$s передано невірний URL: «%2$s»" -#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43 msgid "No such user." msgstr "Такого користувача немає." @@ -489,49 +489,49 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "Допис з ідентифікатором %1$s було надіслано не %2$s." #. TRANS: Field label. -#: actions/ostatusgroup.php:76 +#: actions/ostatusgroup.php:78 msgid "Join group" msgstr "Долучитися до спільноти" #. TRANS: Tooltip for field label "Join group". -#: actions/ostatusgroup.php:79 +#: actions/ostatusgroup.php:81 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" "Адреса спільноти згідно протоколу OStatus, наприклад http://example.net/" "group/nickname." #. TRANS: Button text. -#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +#: actions/ostatusgroup.php:86 actions/ostatussub.php:75 msgctxt "BUTTON" msgid "Continue" msgstr "Продовжити" -#: actions/ostatusgroup.php:103 +#: actions/ostatusgroup.php:105 msgid "You are already a member of this group." msgstr "Ви вже є учасником цієї спільноти." #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:138 +#: actions/ostatusgroup.php:140 msgid "Already a member!" msgstr "Ви вже учасник!" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:149 +#: actions/ostatusgroup.php:151 msgid "Remote group join failed!" msgstr "Приєднатися до віддаленої спільноти не вдалося!" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:153 +#: actions/ostatusgroup.php:155 msgid "Remote group join aborted!" msgstr "Приєднання до віддаленої спільноти перервано!" #. TRANS: Page title for OStatus remote group join form -#: actions/ostatusgroup.php:165 +#: actions/ostatusgroup.php:167 msgid "Confirm joining remote group" msgstr "Підтвердження приєднання до віддаленої спільноти" #. TRANS: Instructions. -#: actions/ostatusgroup.php:176 +#: actions/ostatusgroup.php:178 msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" @@ -583,12 +583,12 @@ msgid "Could not remove remote user %1$s from group %2$s." msgstr "Не вдалось видалити віддаленого користувача %1$s зі спільноти %2$s." #. TRANS: Field label for a field that takes an OStatus user address. -#: actions/ostatussub.php:66 +#: actions/ostatussub.php:68 msgid "Subscribe to" msgstr "Підписатися" #. TRANS: Tooltip for field label "Subscribe to". -#: actions/ostatussub.php:69 +#: actions/ostatussub.php:71 msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" @@ -598,49 +598,49 @@ msgstr "" #. TRANS: Button text. #. TRANS: Tooltip for button "Join". -#: actions/ostatussub.php:110 +#: actions/ostatussub.php:112 msgctxt "BUTTON" msgid "Join this group" msgstr "Приєднатися до спільноти" #. TRANS: Button text. -#: actions/ostatussub.php:113 +#: actions/ostatussub.php:115 msgctxt "BUTTON" msgid "Confirm" msgstr "Підтвердити" #. TRANS: Tooltip for button "Confirm". -#: actions/ostatussub.php:115 +#: actions/ostatussub.php:117 msgid "Subscribe to this user" msgstr "Підписатись до цього користувача" -#: actions/ostatussub.php:136 +#: actions/ostatussub.php:138 msgid "You are already subscribed to this user." msgstr "Ви вже підписані до цього користувача." -#: actions/ostatussub.php:165 +#: actions/ostatussub.php:167 msgid "Photo" msgstr "Фото" -#: actions/ostatussub.php:176 +#: actions/ostatussub.php:178 msgid "Nickname" msgstr "Псевдонім" -#: actions/ostatussub.php:197 +#: actions/ostatussub.php:199 msgid "Location" msgstr "Розташування" -#: actions/ostatussub.php:206 +#: actions/ostatussub.php:208 msgid "URL" msgstr "URL-адреса" -#: actions/ostatussub.php:218 +#: actions/ostatussub.php:220 msgid "Note" msgstr "Примітка" #. TRANS: Error text. -#: actions/ostatussub.php:254 actions/ostatussub.php:261 -#: actions/ostatussub.php:286 +#: actions/ostatussub.php:256 actions/ostatussub.php:263 +#: actions/ostatussub.php:288 msgid "" "Sorry, we could not reach that address. Please make sure that the OStatus " "address is like nickname@example.com or http://example.net/nickname." @@ -650,9 +650,9 @@ msgstr "" "nickname@example.com або ж http://example.net/nickname." #. TRANS: Error text. -#: actions/ostatussub.php:265 actions/ostatussub.php:269 -#: actions/ostatussub.php:273 actions/ostatussub.php:277 -#: actions/ostatussub.php:281 +#: actions/ostatussub.php:267 actions/ostatussub.php:271 +#: actions/ostatussub.php:275 actions/ostatussub.php:279 +#: actions/ostatussub.php:283 msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." @@ -661,31 +661,31 @@ msgstr "" "дану адресу ще раз пізніше." #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:315 +#: actions/ostatussub.php:317 msgid "Already subscribed!" msgstr "Вже підписаний!" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:320 +#: actions/ostatussub.php:322 msgid "Remote subscription failed!" msgstr "Підписатися віддалено не вдалося!" -#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +#: actions/ostatussub.php:369 actions/ostatusinit.php:64 msgid "There was a problem with your session token. Try again, please." msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." #. TRANS: Form title. -#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +#: actions/ostatussub.php:397 actions/ostatusinit.php:83 msgid "Subscribe to user" msgstr "Підписатися до користувача" #. TRANS: Page title for OStatus remote subscription form -#: actions/ostatussub.php:415 +#: actions/ostatussub.php:417 msgid "Confirm" msgstr "Підтвердити" #. TRANS: Instructions. -#: actions/ostatussub.php:427 +#: actions/ostatussub.php:429 msgid "" "You can subscribe to users from other supported sites. Paste their address " "or profile URI below:" @@ -694,103 +694,103 @@ msgstr "" "Просто вставте їхні адреси або URI профілів тут:" #. TRANS: Client error. -#: actions/ostatusinit.php:41 +#: actions/ostatusinit.php:42 msgid "You can use the local subscription!" msgstr "Ви можете користуватись локальними підписками!" #. TRANS: Form legend. -#: actions/ostatusinit.php:97 +#: actions/ostatusinit.php:98 #, php-format msgid "Join group %s" msgstr "Приєднатися до спільноти %s" #. TRANS: Button text. -#: actions/ostatusinit.php:99 +#: actions/ostatusinit.php:100 msgctxt "BUTTON" msgid "Join" msgstr "Приєднатися" #. TRANS: Form legend. -#: actions/ostatusinit.php:102 +#: actions/ostatusinit.php:103 #, php-format msgid "Subscribe to %s" msgstr "Підписатися до %s" #. TRANS: Button text. -#: actions/ostatusinit.php:104 +#: actions/ostatusinit.php:105 msgctxt "BUTTON" msgid "Subscribe" msgstr "Підписатись" #. TRANS: Field label. -#: actions/ostatusinit.php:117 +#: actions/ostatusinit.php:118 msgid "User nickname" msgstr "Ім’я користувача" -#: actions/ostatusinit.php:118 +#: actions/ostatusinit.php:119 msgid "Nickname of the user you want to follow." msgstr "Ім’я користувача, дописи якого ви хотіли б читати." #. TRANS: Field label. -#: actions/ostatusinit.php:123 +#: actions/ostatusinit.php:124 msgid "Profile Account" msgstr "Профіль акаунту" #. TRANS: Tooltip for field label "Profile Account". -#: actions/ostatusinit.php:125 +#: actions/ostatusinit.php:126 msgid "Your account id (e.g. user@identi.ca)." msgstr "Ідентифікатор вашого акаунту (щось на зразок user@identi.ca)" #. TRANS: Client error. -#: actions/ostatusinit.php:147 +#: actions/ostatusinit.php:148 msgid "Must provide a remote profile." msgstr "Мусите зазначити віддалений профіль." #. TRANS: Client error. -#: actions/ostatusinit.php:159 +#: actions/ostatusinit.php:160 msgid "Couldn't look up OStatus account profile." msgstr "Не вдалося знайти профіль акаунту за протоколом OStatus." #. TRANS: Client error. -#: actions/ostatusinit.php:172 +#: actions/ostatusinit.php:173 msgid "Couldn't confirm remote profile address." msgstr "Не вдалося підтвердити адресу віддаленого профілю." #. TRANS: Page title. -#: actions/ostatusinit.php:217 +#: actions/ostatusinit.php:218 msgid "OStatus Connect" msgstr "З’єднання OStatus" -#: actions/pushcallback.php:48 +#: actions/pushcallback.php:50 msgid "Empty or invalid feed id." msgstr "Порожній або недійсний ідентифікатор веб-стрічки." #. TRANS: Server exception. %s is a feed ID. -#: actions/pushcallback.php:54 +#: actions/pushcallback.php:56 #, php-format msgid "Unknown PuSH feed id %s" msgstr "Веб-стрічка за протоколом PuSH має невідомий ідентифікатор %s" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:94 +#: actions/pushcallback.php:96 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "hub.topic веб-стрічки «%s» неправильний." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:99 +#: actions/pushcallback.php:101 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "hub.verify_token %1$s для %2$s неправильний." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:106 +#: actions/pushcallback.php:108 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Несподіваний запит підписки для %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:111 +#: actions/pushcallback.php:113 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Несподіваний запит щодо скасування підписки для %s." diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 1d4e2737b3..62487428a5 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenExternalLinkTarget/locale/id/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/id/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..19d9f4c8b7 --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/id/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:52+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Membuka pranala luar (misal dengan rel=external) di jendela atau tab baru." diff --git a/plugins/OpenExternalLinkTarget/locale/pt_BR/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt_BR/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..285207074a --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/pt_BR/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:52+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-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Abre links externos (por exemplo, com rel=external) em uma nova janela ou " +"aba." diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..0e32025171 --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:07:52+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "在新窗口或标签打开外部链接(如使用 rel=external)。" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index a6dced4e26..8ef57965f1 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,96 +16,96 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: openidsettings.php:59 openidadminpanel.php:65 +#: openidsettings.php:58 openidadminpanel.php:65 msgid "OpenID settings" msgstr "" -#: openidsettings.php:70 +#: openidsettings.php:69 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: openidsettings.php:101 +#: openidsettings.php:100 msgid "Add OpenID" msgstr "" -#: openidsettings.php:104 +#: openidsettings.php:103 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:109 openidlogin.php:159 +#: openidsettings.php:108 openidlogin.php:161 msgid "OpenID URL" msgstr "" -#: openidsettings.php:119 +#: openidsettings.php:118 msgid "Add" msgstr "" -#: openidsettings.php:131 +#: openidsettings.php:130 msgid "Remove OpenID" msgstr "" -#: openidsettings.php:136 +#: openidsettings.php:135 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" -#: openidsettings.php:151 +#: openidsettings.php:150 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" -#: openidsettings.php:174 openidsettings.php:215 +#: openidsettings.php:173 openidsettings.php:214 msgid "Remove" msgstr "" -#: openidsettings.php:188 +#: openidsettings.php:187 msgid "OpenID Trusted Sites" msgstr "" -#: openidsettings.php:191 +#: openidsettings.php:190 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." msgstr "" #. TRANS: Message given when there is a problem with the user's session token. -#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: openidsettings.php:240 +#: openidsettings.php:239 msgid "Can't add new providers." msgstr "" -#: openidsettings.php:253 +#: openidsettings.php:252 msgid "Something weird happened." msgstr "" -#: openidsettings.php:277 +#: openidsettings.php:276 msgid "No such OpenID trustroot." msgstr "" -#: openidsettings.php:281 +#: openidsettings.php:280 msgid "Trustroots removed" msgstr "" -#: openidsettings.php:304 +#: openidsettings.php:303 msgid "No such OpenID." msgstr "" -#: openidsettings.php:309 +#: openidsettings.php:308 msgid "That OpenID does not belong to you." msgstr "" -#: openidsettings.php:313 +#: openidsettings.php:312 msgid "OpenID removed." msgstr "" @@ -304,34 +304,34 @@ msgid "Use OpenID to login to the site." msgstr "" #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:118 +#: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." msgstr "" #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:139 +#: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "" #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:35 openidlogin.php:31 +#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "" #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:46 +#: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "" #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:55 +#: finishopenidlogin.php:57 msgid "An unknown error has occured." msgstr "" #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:71 +#: finishopenidlogin.php:73 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -340,128 +340,128 @@ msgid "" msgstr "" #. TRANS: Title -#: finishopenidlogin.php:78 +#: finishopenidlogin.php:80 msgid "OpenID Account Setup" msgstr "" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:110 msgid "Create new account" msgstr "" -#: finishopenidlogin.php:110 +#: finishopenidlogin.php:112 msgid "Create a new user with this nickname." msgstr "" -#: finishopenidlogin.php:113 +#: finishopenidlogin.php:115 msgid "New nickname" msgstr "" -#: finishopenidlogin.php:115 +#: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:140 +#: finishopenidlogin.php:142 msgctxt "BUTTON" msgid "Create" msgstr "" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:146 +#: finishopenidlogin.php:148 msgid "Connect existing account" msgstr "" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:149 +#: finishopenidlogin.php:151 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:153 +#: finishopenidlogin.php:155 msgid "Existing nickname" msgstr "" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:157 +#: finishopenidlogin.php:159 msgid "Password" msgstr "" #. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:161 +#: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" msgstr "" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:174 finishaddopenid.php:90 +#: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "" #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:178 finishaddopenid.php:95 +#: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "" -#: finishopenidlogin.php:198 finishaddopenid.php:111 +#: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:250 finishopenidlogin.php:260 +#: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:268 +#: finishopenidlogin.php:270 msgid "Not a valid invitation code." msgstr "" #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. -#: finishopenidlogin.php:279 +#: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:287 msgid "Nickname not allowed." msgstr "" #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:291 +#: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." msgstr "" #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:299 finishopenidlogin.php:386 +#: finishopenidlogin.php:301 finishopenidlogin.php:388 msgid "Stored OpenID not found." msgstr "" #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:309 +#: finishopenidlogin.php:311 msgid "Creating new account for OpenID that already has a user." msgstr "" #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:374 +#: finishopenidlogin.php:376 msgid "Invalid username or password." msgstr "" #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:394 +#: finishopenidlogin.php:396 msgid "Error connecting user to OpenID." msgstr "" #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:80 +#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " @@ -470,76 +470,76 @@ msgstr "" #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:86 +#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "" #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:120 finishaddopenid.php:187 +#: openidlogin.php:122 finishaddopenid.php:187 msgid "OpenID Login" msgstr "" #. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:138 +#: openidlogin.php:140 msgid "OpenID login" msgstr "" -#: openidlogin.php:146 +#: openidlogin.php:148 msgid "OpenID provider" msgstr "" -#: openidlogin.php:154 +#: openidlogin.php:156 msgid "Enter your username." msgstr "" -#: openidlogin.php:155 +#: openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." msgstr "" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:162 +#: openidlogin.php:164 msgid "Your OpenID URL" msgstr "" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:167 +#: openidlogin.php:169 msgid "Remember me" msgstr "" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:169 +#: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" msgstr "" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:174 +#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "" -#: openidtrust.php:51 +#: openidtrust.php:52 msgid "OpenID Identity Verification" msgstr "" -#: openidtrust.php:69 +#: openidtrust.php:70 msgid "" "This page should only be reached during OpenID processing, not directly." msgstr "" -#: openidtrust.php:117 +#: openidtrust.php:118 #, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your " "identity and login without creating a new password." msgstr "" -#: openidtrust.php:135 +#: openidtrust.php:136 msgid "Continue" msgstr "" -#: openidtrust.php:136 +#: openidtrust.php:137 msgid "Cancel" msgstr "" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 51a8d0f8d3..a5fad3a9d9 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,34 +10,34 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: openidsettings.php:59 openidadminpanel.php:65 +#: openidsettings.php:58 openidadminpanel.php:65 msgid "OpenID settings" msgstr "OpenID-Einstellungen" -#: openidsettings.php:70 +#: openidsettings.php:69 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: openidsettings.php:101 +#: openidsettings.php:100 msgid "Add OpenID" msgstr "Füge OpenID hinzu" -#: openidsettings.php:104 +#: openidsettings.php:103 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -46,19 +46,19 @@ msgstr "" "nachfolgenden Feld ein und klicke auf „Hinzufügen“." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:109 openidlogin.php:159 +#: openidsettings.php:108 openidlogin.php:161 msgid "OpenID URL" msgstr "OpenID URL" -#: openidsettings.php:119 +#: openidsettings.php:118 msgid "Add" msgstr "Hinzufügen" -#: openidsettings.php:131 +#: openidsettings.php:130 msgid "Remove OpenID" msgstr "Entfernen der OpenID" -#: openidsettings.php:136 +#: openidsettings.php:135 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -66,7 +66,7 @@ msgstr "" "Das Entfernen der einzigen OpenID würde das Einloggen unmöglich machen! " "Falls du sie entfernen musst, füge zuerst eine andere hinzu." -#: openidsettings.php:151 +#: openidsettings.php:150 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -74,15 +74,15 @@ msgstr "" "Du kannst eine OpenID von deinem Konto entfernen, indem du auf den Button " "„Entfernen“ klickst." -#: openidsettings.php:174 openidsettings.php:215 +#: openidsettings.php:173 openidsettings.php:214 msgid "Remove" msgstr "Entfernen" -#: openidsettings.php:188 +#: openidsettings.php:187 msgid "OpenID Trusted Sites" msgstr "" -#: openidsettings.php:191 +#: openidsettings.php:190 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." @@ -92,35 +92,35 @@ msgstr "" "den Zugriff auf deine OpenID zu verweigern." #. TRANS: Message given when there is a problem with the user's session token. -#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." -#: openidsettings.php:240 +#: openidsettings.php:239 msgid "Can't add new providers." msgstr "Kann keine neuen Provider hinzufügen" -#: openidsettings.php:253 +#: openidsettings.php:252 msgid "Something weird happened." msgstr "Etwas Seltsames ist passiert." -#: openidsettings.php:277 +#: openidsettings.php:276 msgid "No such OpenID trustroot." msgstr "Keine solche OpenID trustroot." -#: openidsettings.php:281 +#: openidsettings.php:280 msgid "Trustroots removed" msgstr "Trustroots entfernt" -#: openidsettings.php:304 +#: openidsettings.php:303 msgid "No such OpenID." msgstr "Keine solche OpenID." -#: openidsettings.php:309 +#: openidsettings.php:308 msgid "That OpenID does not belong to you." msgstr "Diese OpenID gehört dir nicht." -#: openidsettings.php:313 +#: openidsettings.php:312 msgid "OpenID removed." msgstr "OpenID entfernt." @@ -321,34 +321,34 @@ msgstr "" "der Seite" #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:118 +#: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." msgstr "" #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:139 +#: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "" #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:35 openidlogin.php:31 +#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "Bereits angemeldet." #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:46 +#: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "" #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:55 +#: finishopenidlogin.php:57 msgid "An unknown error has occured." msgstr "" #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:71 +#: finishopenidlogin.php:73 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -357,128 +357,128 @@ msgid "" msgstr "" #. TRANS: Title -#: finishopenidlogin.php:78 +#: finishopenidlogin.php:80 msgid "OpenID Account Setup" msgstr "" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:110 msgid "Create new account" msgstr "Neues Benutzerkonto erstellen" -#: finishopenidlogin.php:110 +#: finishopenidlogin.php:112 msgid "Create a new user with this nickname." msgstr "" -#: finishopenidlogin.php:113 +#: finishopenidlogin.php:115 msgid "New nickname" msgstr "" -#: finishopenidlogin.php:115 +#: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:140 +#: finishopenidlogin.php:142 msgctxt "BUTTON" msgid "Create" msgstr "Erstellen" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:146 +#: finishopenidlogin.php:148 msgid "Connect existing account" msgstr "" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:149 +#: finishopenidlogin.php:151 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:153 +#: finishopenidlogin.php:155 msgid "Existing nickname" msgstr "" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:157 +#: finishopenidlogin.php:159 msgid "Password" msgstr "Passwort" #. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:161 +#: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" msgstr "" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:174 finishaddopenid.php:90 +#: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "" #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:178 finishaddopenid.php:95 +#: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "" -#: finishopenidlogin.php:198 finishaddopenid.php:111 +#: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:250 finishopenidlogin.php:260 +#: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:268 +#: finishopenidlogin.php:270 msgid "Not a valid invitation code." msgstr "" #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. -#: finishopenidlogin.php:279 +#: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:287 msgid "Nickname not allowed." msgstr "" #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:291 +#: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." msgstr "" #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:299 finishopenidlogin.php:386 +#: finishopenidlogin.php:301 finishopenidlogin.php:388 msgid "Stored OpenID not found." msgstr "" #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:309 +#: finishopenidlogin.php:311 msgid "Creating new account for OpenID that already has a user." msgstr "" #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:374 +#: finishopenidlogin.php:376 msgid "Invalid username or password." msgstr "" #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:394 +#: finishopenidlogin.php:396 msgid "Error connecting user to OpenID." msgstr "" #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:80 +#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " @@ -487,76 +487,76 @@ msgstr "" #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:86 +#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "" #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:120 finishaddopenid.php:187 +#: openidlogin.php:122 finishaddopenid.php:187 msgid "OpenID Login" msgstr "" #. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:138 +#: openidlogin.php:140 msgid "OpenID login" msgstr "" -#: openidlogin.php:146 +#: openidlogin.php:148 msgid "OpenID provider" msgstr "" -#: openidlogin.php:154 +#: openidlogin.php:156 msgid "Enter your username." msgstr "Gib deinen Benutzernamen ein." -#: openidlogin.php:155 +#: openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." msgstr "" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:162 +#: openidlogin.php:164 msgid "Your OpenID URL" msgstr "Ihre OpenID URL" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:167 +#: openidlogin.php:169 msgid "Remember me" msgstr "Anmeldedaten merken" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:169 +#: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" msgstr "" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:174 +#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "Anmelden" -#: openidtrust.php:51 +#: openidtrust.php:52 msgid "OpenID Identity Verification" msgstr "" -#: openidtrust.php:69 +#: openidtrust.php:70 msgid "" "This page should only be reached during OpenID processing, not directly." msgstr "" -#: openidtrust.php:117 +#: openidtrust.php:118 #, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your " "identity and login without creating a new password." msgstr "" -#: openidtrust.php:135 +#: openidtrust.php:136 msgid "Continue" msgstr "Weiter" -#: openidtrust.php:136 +#: openidtrust.php:137 msgid "Cancel" msgstr "Abbrechen" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 603cfb0cdd..1785ecb4a0 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: openidsettings.php:59 openidadminpanel.php:65 +#: openidsettings.php:58 openidadminpanel.php:65 msgid "OpenID settings" msgstr "Paramètres OpenID" -#: openidsettings.php:70 +#: openidsettings.php:69 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -35,11 +35,11 @@ msgstr "" "avec le même compte utilisateur. Gérez à partir d’ici les identifiants " "OpenID associés à votre compte ici." -#: openidsettings.php:101 +#: openidsettings.php:100 msgid "Add OpenID" msgstr "Ajouter OpenID" -#: openidsettings.php:104 +#: openidsettings.php:103 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -48,19 +48,19 @@ msgstr "" "case ci-dessous et cliquez sur « Ajouter »." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:109 openidlogin.php:159 +#: openidsettings.php:108 openidlogin.php:161 msgid "OpenID URL" msgstr "Adresse URL OpenID" -#: openidsettings.php:119 +#: openidsettings.php:118 msgid "Add" msgstr "Ajouter" -#: openidsettings.php:131 +#: openidsettings.php:130 msgid "Remove OpenID" msgstr "Retirer OpenID" -#: openidsettings.php:136 +#: openidsettings.php:135 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -69,7 +69,7 @@ msgstr "" "connecter ! Si vous avez besoin de l’enlever, ajouter d’abord un autre " "compte OpenID." -#: openidsettings.php:151 +#: openidsettings.php:150 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -77,15 +77,15 @@ msgstr "" "Vous pouvez retirer un compte OpenID de votre compte en cliquant le bouton « " "Retirer »" -#: openidsettings.php:174 openidsettings.php:215 +#: openidsettings.php:173 openidsettings.php:214 msgid "Remove" msgstr "Retirer" -#: openidsettings.php:188 +#: openidsettings.php:187 msgid "OpenID Trusted Sites" msgstr "Sites de confiance OpenID" -#: openidsettings.php:191 +#: openidsettings.php:190 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." @@ -95,37 +95,37 @@ msgstr "" "d’accéder à votre compte OpenID." #. TRANS: Message given when there is a problem with the user's session token. -#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 msgid "There was a problem with your session token. Try again, please." msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " "nouveau." -#: openidsettings.php:240 +#: openidsettings.php:239 msgid "Can't add new providers." msgstr "Impossible d’ajouter de nouveaux fournisseurs." -#: openidsettings.php:253 +#: openidsettings.php:252 msgid "Something weird happened." msgstr "Quelque chose de bizarre s’est passé." -#: openidsettings.php:277 +#: openidsettings.php:276 msgid "No such OpenID trustroot." msgstr "Racine de confiance OpenID inexistante." -#: openidsettings.php:281 +#: openidsettings.php:280 msgid "Trustroots removed" msgstr "Racines de confiance retirées" -#: openidsettings.php:304 +#: openidsettings.php:303 msgid "No such OpenID." msgstr "Compte OpenID inexistant." -#: openidsettings.php:309 +#: openidsettings.php:308 msgid "That OpenID does not belong to you." msgstr "Ce compte OpenID ne vous appartient pas." -#: openidsettings.php:313 +#: openidsettings.php:312 msgid "OpenID removed." msgstr "Compte OpenID retiré." @@ -347,34 +347,34 @@ msgstr "" "Utiliser OpenID pour se connecter au site." #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:118 +#: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." msgstr "Vous n’êtes pas autorisé à utiliser l’identité « %s »." #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:139 +#: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "Juste un fournisseur OpenID. Rien à voir ici, passez votre chemin..." #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:35 openidlogin.php:31 +#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "Déjà connecté." #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:46 +#: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:55 +#: finishopenidlogin.php:57 msgid "An unknown error has occured." msgstr "Une erreur inconnue s’est produite." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:71 +#: finishopenidlogin.php:73 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -387,39 +387,39 @@ msgstr "" "en avez un." #. TRANS: Title -#: finishopenidlogin.php:78 +#: finishopenidlogin.php:80 msgid "OpenID Account Setup" msgstr "Configuration du compte OpenID" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:110 msgid "Create new account" msgstr "Créer un nouveau compte" -#: finishopenidlogin.php:110 +#: finishopenidlogin.php:112 msgid "Create a new user with this nickname." msgstr "Créer un nouvel utilisateur avec ce pseudonyme." -#: finishopenidlogin.php:113 +#: finishopenidlogin.php:115 msgid "New nickname" msgstr "Nouveau pseudonyme" -#: finishopenidlogin.php:115 +#: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:140 +#: finishopenidlogin.php:142 msgctxt "BUTTON" msgid "Create" msgstr "Créer" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:146 +#: finishopenidlogin.php:148 msgid "Connect existing account" msgstr "Se connecter à un compte existant" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:149 +#: finishopenidlogin.php:151 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -428,35 +428,35 @@ msgstr "" "et mot de passe pour l’associer à votre compte OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:153 +#: finishopenidlogin.php:155 msgid "Existing nickname" msgstr "Pseudonyme existant" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:157 +#: finishopenidlogin.php:159 msgid "Password" msgstr "Mot de passe" #. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:161 +#: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" msgstr "Connexion" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:174 finishaddopenid.php:90 +#: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "Authentification OpenID annulée." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:178 finishaddopenid.php:95 +#: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "L’authentification OpenID a échoué : %s" -#: finishopenidlogin.php:198 finishaddopenid.php:111 +#: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "" @@ -465,56 +465,56 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:250 finishopenidlogin.php:260 +#: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." msgstr "Inscription non autorisée." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:268 +#: finishopenidlogin.php:270 msgid "Not a valid invitation code." msgstr "Le code d’invitation n’est pas valide." #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. -#: finishopenidlogin.php:279 +#: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Les pseudonymes ne peuvent contenir que des lettres minuscules et des " "chiffres, sans espaces." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:287 msgid "Nickname not allowed." msgstr "Pseudonyme non autorisé." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:291 +#: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:299 finishopenidlogin.php:386 +#: finishopenidlogin.php:301 finishopenidlogin.php:388 msgid "Stored OpenID not found." msgstr "OpenID stocké non trouvé." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:309 +#: finishopenidlogin.php:311 msgid "Creating new account for OpenID that already has a user." msgstr "Créer un nouveau compte pour OpenID qui a déjà un utilisateur." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:374 +#: finishopenidlogin.php:376 msgid "Invalid username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:394 +#: finishopenidlogin.php:396 msgid "Error connecting user to OpenID." msgstr "Erreur de connexion de l’utilisateur à OpenID." #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:80 +#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " @@ -525,69 +525,69 @@ msgstr "" #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:86 +#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Connexion avec un compte [OpenID](%%doc.openid%%)." #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:120 finishaddopenid.php:187 +#: openidlogin.php:122 finishaddopenid.php:187 msgid "OpenID Login" msgstr "Connexion OpenID" #. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:138 +#: openidlogin.php:140 msgid "OpenID login" msgstr "Connexion OpenID" -#: openidlogin.php:146 +#: openidlogin.php:148 msgid "OpenID provider" msgstr "Fournisseur OpenID" -#: openidlogin.php:154 +#: openidlogin.php:156 msgid "Enter your username." msgstr "Entrez votre nom d’utilisateur." -#: openidlogin.php:155 +#: openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." msgstr "Vous serez envoyé sur le site du fournisseur pour l’authentification." #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:162 +#: openidlogin.php:164 msgid "Your OpenID URL" msgstr "Votre URL OpenID" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:167 +#: openidlogin.php:169 msgid "Remember me" msgstr "Se souvenir de moi" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:169 +#: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Me connecter automatiquement à l’avenir ; déconseillé sur les ordinateurs " "publics ou partagés !" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:174 +#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "Connexion" -#: openidtrust.php:51 +#: openidtrust.php:52 msgid "OpenID Identity Verification" msgstr "Vérification d’identité OpenID" -#: openidtrust.php:69 +#: openidtrust.php:70 msgid "" "This page should only be reached during OpenID processing, not directly." msgstr "" "Cette page ne devrait être atteinte que durant un traitement OpenID, pas " "directement." -#: openidtrust.php:117 +#: openidtrust.php:118 #, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your " @@ -597,11 +597,11 @@ msgstr "" "Continuer » pour vérifier votre identité et connectez-vous sans créer un " "nouveau mot de passe." -#: openidtrust.php:135 +#: openidtrust.php:136 msgid "Continue" msgstr "Continuer" -#: openidtrust.php:136 +#: openidtrust.php:137 msgid "Cancel" msgstr "Annuler" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 10a7380360..01d28a70e6 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: openidsettings.php:59 openidadminpanel.php:65 +#: openidsettings.php:58 openidadminpanel.php:65 msgid "OpenID settings" msgstr "Configuration OpenID" -#: openidsettings.php:70 +#: openidsettings.php:69 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -34,11 +34,11 @@ msgstr "" "[OpenID](%%doc.openid%%) permitte authenticar te a multe sitos con le mesme " "conto de usator. Tu pote gerer hic tu OpenIDs associate." -#: openidsettings.php:101 +#: openidsettings.php:100 msgid "Add OpenID" msgstr "Adder OpenID" -#: openidsettings.php:104 +#: openidsettings.php:103 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -47,19 +47,19 @@ msgstr "" "clicca \"Adder\"." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:109 openidlogin.php:159 +#: openidsettings.php:108 openidlogin.php:161 msgid "OpenID URL" msgstr "URL OpenID" -#: openidsettings.php:119 +#: openidsettings.php:118 msgid "Add" msgstr "Adder" -#: openidsettings.php:131 +#: openidsettings.php:130 msgid "Remove OpenID" msgstr "Remover OpenID" -#: openidsettings.php:136 +#: openidsettings.php:135 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -67,22 +67,22 @@ msgstr "" "Le remotion de tu sol OpenID renderea le apertura de session impossibile! Si " "tu debe remover lo, adde primo un altere OpenID." -#: openidsettings.php:151 +#: openidsettings.php:150 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" "Tu pote remover un OpenID de tu conto per cliccar le button \"Remover\"." -#: openidsettings.php:174 openidsettings.php:215 +#: openidsettings.php:173 openidsettings.php:214 msgid "Remove" msgstr "Remover" -#: openidsettings.php:188 +#: openidsettings.php:187 msgid "OpenID Trusted Sites" msgstr "Sitos OpenID de confidentia" -#: openidsettings.php:191 +#: openidsettings.php:190 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." @@ -92,35 +92,35 @@ msgstr "" "accesso a tu OpenID." #. TRANS: Message given when there is a problem with the user's session token. -#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." -#: openidsettings.php:240 +#: openidsettings.php:239 msgid "Can't add new providers." msgstr "Non pote adder nove fornitores." -#: openidsettings.php:253 +#: openidsettings.php:252 msgid "Something weird happened." msgstr "Qualcosa de bizarre occurreva." -#: openidsettings.php:277 +#: openidsettings.php:276 msgid "No such OpenID trustroot." msgstr "Iste \"trustroot\" de OpenID non existe." -#: openidsettings.php:281 +#: openidsettings.php:280 msgid "Trustroots removed" msgstr "\"Trustroots\" removite" -#: openidsettings.php:304 +#: openidsettings.php:303 msgid "No such OpenID." msgstr "Iste OpenID non existe." -#: openidsettings.php:309 +#: openidsettings.php:308 msgid "That OpenID does not belong to you." msgstr "Iste OpenID non appertine a te." -#: openidsettings.php:313 +#: openidsettings.php:312 msgid "OpenID removed." msgstr "OpenID removite." @@ -338,35 +338,35 @@ msgstr "" "Usar OpenID pro aperir session al sito." #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:118 +#: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." msgstr "Tu non es autorisate a usar le identitate %s." #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:139 +#: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "" "Solmente un fornitor de OpenID. Nihil a vider hic, per favor continua..." #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:35 openidlogin.php:31 +#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "Tu es jam authenticate." #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:46 +#: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:55 +#: finishopenidlogin.php:57 msgid "An unknown error has occured." msgstr "Un error incognite ha occurrite." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:71 +#: finishopenidlogin.php:73 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -378,39 +378,39 @@ msgstr "" "connecter con tu conto existente, si tu ha un." #. TRANS: Title -#: finishopenidlogin.php:78 +#: finishopenidlogin.php:80 msgid "OpenID Account Setup" msgstr "Configuration de conto OpenID" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:110 msgid "Create new account" msgstr "Crear nove conto" -#: finishopenidlogin.php:110 +#: finishopenidlogin.php:112 msgid "Create a new user with this nickname." msgstr "Crear un nove usator con iste pseudonymo." -#: finishopenidlogin.php:113 +#: finishopenidlogin.php:115 msgid "New nickname" msgstr "Nove pseudonymo" -#: finishopenidlogin.php:115 +#: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 minusculas o numeros, sin punctuation o spatios" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:140 +#: finishopenidlogin.php:142 msgctxt "BUTTON" msgid "Create" msgstr "Crear" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:146 +#: finishopenidlogin.php:148 msgid "Connect existing account" msgstr "Connecter conto existente" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:149 +#: finishopenidlogin.php:151 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -419,35 +419,35 @@ msgstr "" "pro connecter lo a tu OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:153 +#: finishopenidlogin.php:155 msgid "Existing nickname" msgstr "Pseudonymo existente" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:157 +#: finishopenidlogin.php:159 msgid "Password" msgstr "Contrasigno" #. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:161 +#: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" msgstr "Connecter" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:174 finishaddopenid.php:90 +#: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "Authentication OpenID cancellate." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:178 finishaddopenid.php:95 +#: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "Le authentication OpenID ha fallite: %s" -#: finishopenidlogin.php:198 finishaddopenid.php:111 +#: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "" @@ -456,54 +456,54 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:250 finishopenidlogin.php:260 +#: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." msgstr "Creation de conto non permittite." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:268 +#: finishopenidlogin.php:270 msgid "Not a valid invitation code." msgstr "Le codice de invitation es invalide." #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. -#: finishopenidlogin.php:279 +#: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:287 msgid "Nickname not allowed." msgstr "Pseudonymo non permittite." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:291 +#: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:299 finishopenidlogin.php:386 +#: finishopenidlogin.php:301 finishopenidlogin.php:388 msgid "Stored OpenID not found." msgstr "Le OpenID immagazinate non esseva trovate." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:309 +#: finishopenidlogin.php:311 msgid "Creating new account for OpenID that already has a user." msgstr "Tentativa de crear un nove conto pro un OpenID que ha jam un usator." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:374 +#: finishopenidlogin.php:376 msgid "Invalid username or password." msgstr "Nomine de usator o contrasigno invalide." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:394 +#: finishopenidlogin.php:396 msgid "Error connecting user to OpenID." msgstr "Error durante le connexion del usator a OpenID." #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:80 +#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " @@ -514,69 +514,69 @@ msgstr "" #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:86 +#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Aperir session con un conto [OpenID](%%doc.openid%%)." #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:120 finishaddopenid.php:187 +#: openidlogin.php:122 finishaddopenid.php:187 msgid "OpenID Login" msgstr "Apertura de session via OpenID" #. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:138 +#: openidlogin.php:140 msgid "OpenID login" msgstr "Apertura de session via OpenID" -#: openidlogin.php:146 +#: openidlogin.php:148 msgid "OpenID provider" msgstr "Fornitor de OpenID" -#: openidlogin.php:154 +#: openidlogin.php:156 msgid "Enter your username." msgstr "Entra tu nomine de usator." -#: openidlogin.php:155 +#: openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." msgstr "Tu essera inviate al sito del fornitor pro authentication." #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:162 +#: openidlogin.php:164 msgid "Your OpenID URL" msgstr "Tu URL de OpenID" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:167 +#: openidlogin.php:169 msgid "Remember me" msgstr "Memorar me" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:169 +#: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Aperir session automaticamente in le futuro; non pro computatores usate in " "commun!" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:174 +#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "Aperir session" -#: openidtrust.php:51 +#: openidtrust.php:52 msgid "OpenID Identity Verification" msgstr "Verification de identitate via OpenID" -#: openidtrust.php:69 +#: openidtrust.php:70 msgid "" "This page should only be reached during OpenID processing, not directly." msgstr "" "Iste pagina debe esser attingite solmente durante le tractamento de un " "OpenID, non directemente." -#: openidtrust.php:117 +#: openidtrust.php:118 #, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your " @@ -585,11 +585,11 @@ msgstr "" "%s ha demandate de verificar tu identitate. Clicca super Continuar pro " "verificar tu identitate e aperir session sin crear un nove contrasigno." -#: openidtrust.php:135 +#: openidtrust.php:136 msgid "Continue" msgstr "Continuar" -#: openidtrust.php:136 +#: openidtrust.php:137 msgid "Cancel" msgstr "Cancellar" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index b682038d5e..dc68a58211 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: openidsettings.php:59 openidadminpanel.php:65 +#: openidsettings.php:58 openidadminpanel.php:65 msgid "OpenID settings" msgstr "Нагодувања за OpenID" -#: openidsettings.php:70 +#: openidsettings.php:69 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -35,11 +35,11 @@ msgstr "" "мреж. места со една иста сметка. Од ова место можете да раководите со Вашите " "OpenID-ја." -#: openidsettings.php:101 +#: openidsettings.php:100 msgid "Add OpenID" msgstr "Додај OpenID" -#: openidsettings.php:104 +#: openidsettings.php:103 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -48,19 +48,19 @@ msgstr "" "полето подолу и кликнете на „Додај“." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:109 openidlogin.php:159 +#: openidsettings.php:108 openidlogin.php:161 msgid "OpenID URL" msgstr "URL на OpenID" -#: openidsettings.php:119 +#: openidsettings.php:118 msgid "Add" msgstr "Додај" -#: openidsettings.php:131 +#: openidsettings.php:130 msgid "Remove OpenID" msgstr "Отстрани OpenID" -#: openidsettings.php:136 +#: openidsettings.php:135 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -68,21 +68,21 @@ msgstr "" "Ако го отстраните Вашиот единствен OpenID, тогаш нема да можете да се " "најавите! Ако треба да го отстраните, тогаш најпрвин додадете друг OpenID." -#: openidsettings.php:151 +#: openidsettings.php:150 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "Отстранувањето на OpenID од сметката се врши преку копчето „Отстрани“." -#: openidsettings.php:174 openidsettings.php:215 +#: openidsettings.php:173 openidsettings.php:214 msgid "Remove" msgstr "Отстрани" -#: openidsettings.php:188 +#: openidsettings.php:187 msgid "OpenID Trusted Sites" msgstr "Мреж. места од доверба на OpenID" -#: openidsettings.php:191 +#: openidsettings.php:190 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." @@ -92,35 +92,35 @@ msgstr "" "OpenID, тогаш отстранете го од списоков." #. TRANS: Message given when there is a problem with the user's session token. -#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 msgid "There was a problem with your session token. Try again, please." msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се подоцна." -#: openidsettings.php:240 +#: openidsettings.php:239 msgid "Can't add new providers." msgstr "Не можам да додадам нови услужители." -#: openidsettings.php:253 +#: openidsettings.php:252 msgid "Something weird happened." msgstr "Се случи нешто чудно." -#: openidsettings.php:277 +#: openidsettings.php:276 msgid "No such OpenID trustroot." msgstr "Нема таков довербен извор (trustroot) за OpenID" -#: openidsettings.php:281 +#: openidsettings.php:280 msgid "Trustroots removed" msgstr "Довербените извори (trustroots) се отстранети" -#: openidsettings.php:304 +#: openidsettings.php:303 msgid "No such OpenID." msgstr "Нема таков OpenID." -#: openidsettings.php:309 +#: openidsettings.php:308 msgid "That OpenID does not belong to you." msgstr "Тој OpenID не Ви припаѓа Вам." -#: openidsettings.php:313 +#: openidsettings.php:312 msgid "OpenID removed." msgstr "OpenID е отстранет." @@ -334,35 +334,35 @@ msgid "Use OpenID to login to the site." msgstr "Користете OpenID за најава." #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:118 +#: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." msgstr "Не сте овластени да го користите идентитетот %s." #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:139 +#: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "" "Ова е просто услужник за OpenID. Нема ништо интересно, продолжете понатаму..." #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:35 openidlogin.php:31 +#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "Веќе сте најавени." #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:46 +#: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "Не можете да се регистрирате ако не се согласувате со лиценцата." #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:55 +#: finishopenidlogin.php:57 msgid "An unknown error has occured." msgstr "Се појави непозната грешка." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:71 +#: finishopenidlogin.php:73 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -374,39 +374,39 @@ msgstr "" "се поврзете со Вашата постоечка сметка (ако ја имате)." #. TRANS: Title -#: finishopenidlogin.php:78 +#: finishopenidlogin.php:80 msgid "OpenID Account Setup" msgstr "Поставување на OpenID-сметка" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:110 msgid "Create new account" msgstr "Создај нова сметка" -#: finishopenidlogin.php:110 +#: finishopenidlogin.php:112 msgid "Create a new user with this nickname." msgstr "Создај нов корисник со овој прекар." -#: finishopenidlogin.php:113 +#: finishopenidlogin.php:115 msgid "New nickname" msgstr "Нов прекар" -#: finishopenidlogin.php:115 +#: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:140 +#: finishopenidlogin.php:142 msgctxt "BUTTON" msgid "Create" msgstr "Создај" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:146 +#: finishopenidlogin.php:148 msgid "Connect existing account" msgstr "Поврзи постоечка сметка" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:149 +#: finishopenidlogin.php:151 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -415,35 +415,35 @@ msgstr "" "поврзете со Вашиот OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:153 +#: finishopenidlogin.php:155 msgid "Existing nickname" msgstr "Постоечки прекар" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:157 +#: finishopenidlogin.php:159 msgid "Password" msgstr "Лозинка" #. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:161 +#: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" msgstr "Поврзи се" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:174 finishaddopenid.php:90 +#: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "Потврдувањето на OpenID е откажано." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:178 finishaddopenid.php:95 +#: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "Потврдувањето на OpenID не успеа: %s" -#: finishopenidlogin.php:198 finishaddopenid.php:111 +#: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "" @@ -452,54 +452,54 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:250 finishopenidlogin.php:260 +#: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." msgstr "Регистрацијата не е дозволена." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:268 +#: finishopenidlogin.php:270 msgid "Not a valid invitation code." msgstr "Ова не е важечки код за покана." #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. -#: finishopenidlogin.php:279 +#: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:287 msgid "Nickname not allowed." msgstr "Прекарот не е дозволен." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:291 +#: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." msgstr "Прекарот е зафатен. Одберете друг." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:299 finishopenidlogin.php:386 +#: finishopenidlogin.php:301 finishopenidlogin.php:388 msgid "Stored OpenID not found." msgstr "Складираниот OpenID не е пронајден." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:309 +#: finishopenidlogin.php:311 msgid "Creating new account for OpenID that already has a user." msgstr "Создавање на сметка за OpenID што веќе има корисник." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:374 +#: finishopenidlogin.php:376 msgid "Invalid username or password." msgstr "Неважечко корисничко име или лозинка." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:394 +#: finishopenidlogin.php:396 msgid "Error connecting user to OpenID." msgstr "Грешка при поврзувањето на корисникот со OpenID." #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:80 +#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " @@ -510,68 +510,68 @@ msgstr "" #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:86 +#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Најава со сметка на [OpenID](%%doc.openid%%)." #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:120 finishaddopenid.php:187 +#: openidlogin.php:122 finishaddopenid.php:187 msgid "OpenID Login" msgstr "OpenID-Најава" #. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:138 +#: openidlogin.php:140 msgid "OpenID login" msgstr "Најава со OpenID" -#: openidlogin.php:146 +#: openidlogin.php:148 msgid "OpenID provider" msgstr "Услужител за OpenID" -#: openidlogin.php:154 +#: openidlogin.php:156 msgid "Enter your username." msgstr "Внесете го Вашето корисничко име." -#: openidlogin.php:155 +#: openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." msgstr "Ќе бидете префрлени на мреж. место на услужникот за потврда." #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:162 +#: openidlogin.php:164 msgid "Your OpenID URL" msgstr "URL-адреса на Вашиот OpenID" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:167 +#: openidlogin.php:169 msgid "Remember me" msgstr "Запомни ме" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:169 +#: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Отсега врши автоматска најава. Не треба да се користи за јавни сметачи!" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:174 +#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "Најава" -#: openidtrust.php:51 +#: openidtrust.php:52 msgid "OpenID Identity Verification" msgstr "OpenID - потврда на идентитет" -#: openidtrust.php:69 +#: openidtrust.php:70 msgid "" "This page should only be reached during OpenID processing, not directly." msgstr "" "До оваа страница треба да се доаѓа само во текот на постапката на OpenID, а " "не директно." -#: openidtrust.php:117 +#: openidtrust.php:118 #, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your " @@ -580,11 +580,11 @@ msgstr "" "%s побара да го потврдите Вашиот идентитет. Кликнете на „Продолжи“ за да " "потврдите и да се најавите без да треба да ставате нова лозинка." -#: openidtrust.php:135 +#: openidtrust.php:136 msgid "Continue" msgstr "Продолжи" -#: openidtrust.php:136 +#: openidtrust.php:137 msgid "Cancel" msgstr "Откажи" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 8a5bcc5e19..6286a98fc1 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,25 +10,25 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-openid\n" -#: openidsettings.php:59 openidadminpanel.php:65 +#: openidsettings.php:58 openidadminpanel.php:65 msgid "OpenID settings" msgstr "OpenID-instellingen" -#: openidsettings.php:70 +#: openidsettings.php:69 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -37,11 +37,11 @@ msgstr "" "Met [OpenID](%%doc.openid%%) kunt u aanmelden bij veel websites met dezelfde " "gebruiker. U kunt hier uw gekoppelde OpenID's beheren." -#: openidsettings.php:101 +#: openidsettings.php:100 msgid "Add OpenID" msgstr "OpenID toevoegen" -#: openidsettings.php:104 +#: openidsettings.php:103 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -50,19 +50,19 @@ msgstr "" "en klik op \"Toevoegen\"." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:109 openidlogin.php:159 +#: openidsettings.php:108 openidlogin.php:161 msgid "OpenID URL" msgstr "OpenID-URL" -#: openidsettings.php:119 +#: openidsettings.php:118 msgid "Add" msgstr "Toevoegen" -#: openidsettings.php:131 +#: openidsettings.php:130 msgid "Remove OpenID" msgstr "OpenID verwijderen" -#: openidsettings.php:136 +#: openidsettings.php:135 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -70,7 +70,7 @@ msgstr "" "Door uw enige OpenID te verwijderen zou het niet meer mogelijk zijn om aan " "te melden. Als u het wilt verwijderen, voeg dan eerst een andere OpenID toe." -#: openidsettings.php:151 +#: openidsettings.php:150 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -78,15 +78,15 @@ msgstr "" "U kunt een OpenID van uw gebruiker verwijderen door te klikken op de knop " "\"Verwijderen\"." -#: openidsettings.php:174 openidsettings.php:215 +#: openidsettings.php:173 openidsettings.php:214 msgid "Remove" msgstr "Verwijderen" -#: openidsettings.php:188 +#: openidsettings.php:187 msgid "OpenID Trusted Sites" msgstr "Vertrouwde OpenID-sites" -#: openidsettings.php:191 +#: openidsettings.php:190 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." @@ -96,35 +96,35 @@ msgstr "" "heeft tot uw OpenID." #. TRANS: Message given when there is a problem with the user's session token. -#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 msgid "There was a problem with your session token. Try again, please." msgstr "Er was een probleem met uw sessietoken. Probeer het opnieuw." -#: openidsettings.php:240 +#: openidsettings.php:239 msgid "Can't add new providers." msgstr "Het niet is mogelijk nieuwe providers toe te voegen." -#: openidsettings.php:253 +#: openidsettings.php:252 msgid "Something weird happened." msgstr "Er is iets vreemds gebeurd." -#: openidsettings.php:277 +#: openidsettings.php:276 msgid "No such OpenID trustroot." msgstr "Die OpenID trustroot bestaat niet." -#: openidsettings.php:281 +#: openidsettings.php:280 msgid "Trustroots removed" msgstr "De trustroots zijn verwijderd" -#: openidsettings.php:304 +#: openidsettings.php:303 msgid "No such OpenID." msgstr "De OpenID bestaat niet." -#: openidsettings.php:309 +#: openidsettings.php:308 msgid "That OpenID does not belong to you." msgstr "Die OpenID is niet van u." -#: openidsettings.php:313 +#: openidsettings.php:312 msgid "OpenID removed." msgstr "OpenID verwijderd." @@ -342,34 +342,34 @@ msgstr "" "site." #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:118 +#: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." msgstr "U mag de identiteit %s niet gebruiken." #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:139 +#: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "Gewoon een OpenID-provider. Niets te zien hier..." #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:35 openidlogin.php:31 +#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "U bent al aangemeld." #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:46 +#: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "U kunt niet registreren als u niet akkoord gaat met de licentie." #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:55 +#: finishopenidlogin.php:57 msgid "An unknown error has occured." msgstr "Er is een onbekende fout opgetreden." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:71 +#: finishopenidlogin.php:73 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -381,39 +381,39 @@ msgstr "" "koppelen met uw bestaande gebruiker als u die al hebt." #. TRANS: Title -#: finishopenidlogin.php:78 +#: finishopenidlogin.php:80 msgid "OpenID Account Setup" msgstr "Instellingen OpenID" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:110 msgid "Create new account" msgstr "Nieuwe gebruiker aanmaken" -#: finishopenidlogin.php:110 +#: finishopenidlogin.php:112 msgid "Create a new user with this nickname." msgstr "Nieuwe gebruiker met deze naam aanmaken." -#: finishopenidlogin.php:113 +#: finishopenidlogin.php:115 msgid "New nickname" msgstr "Nieuwe gebruiker" -#: finishopenidlogin.php:115 +#: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kleine letters of getallen; geen leestekens of spaties" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:140 +#: finishopenidlogin.php:142 msgctxt "BUTTON" msgid "Create" msgstr "Aanmaken" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:146 +#: finishopenidlogin.php:148 msgid "Connect existing account" msgstr "Koppelen met bestaande gebruiker" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:149 +#: finishopenidlogin.php:151 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -422,35 +422,35 @@ msgstr "" "wachtwoord om de gebruiker te koppelen met uw OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:153 +#: finishopenidlogin.php:155 msgid "Existing nickname" msgstr "Bestaande gebruiker" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:157 +#: finishopenidlogin.php:159 msgid "Password" msgstr "Wachtwoord" #. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:161 +#: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" msgstr "Koppelen" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:174 finishaddopenid.php:90 +#: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "De authenticatie via OpenID is afgebroken." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:178 finishaddopenid.php:95 +#: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "De authenticatie via OpenID is mislukt: %s" -#: finishopenidlogin.php:198 finishaddopenid.php:111 +#: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "" @@ -458,56 +458,56 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:250 finishopenidlogin.php:260 +#: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." msgstr "Registreren is niet mogelijk." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:268 +#: finishopenidlogin.php:270 msgid "Not a valid invitation code." msgstr "De uitnodigingscode is niet geldig." #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. -#: finishopenidlogin.php:279 +#: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "De gebruikersnaam mag alleen uit kleine letters en cijfers bestaan, en geen " "spaties bevatten." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:287 msgid "Nickname not allowed." msgstr "Deze gebruikersnaam is niet toegestaan." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:291 +#: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." msgstr "Deze gebruikersnaam wordt al gebruikt. Kies een andere." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:299 finishopenidlogin.php:386 +#: finishopenidlogin.php:301 finishopenidlogin.php:388 msgid "Stored OpenID not found." msgstr "Het opgeslagen OpenID is niet aangetroffen." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:309 +#: finishopenidlogin.php:311 msgid "Creating new account for OpenID that already has a user." msgstr "Poging tot aanmaken van een OpenID-account dat al een gebruiker heeft." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:374 +#: finishopenidlogin.php:376 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:394 +#: finishopenidlogin.php:396 msgid "Error connecting user to OpenID." msgstr "Fout bij het koppelen met OpenID." #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:80 +#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " @@ -518,68 +518,68 @@ msgstr "" #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:86 +#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Aanmelden met een [OpenID](%%doc.openid%%)-gebruiker." #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:120 finishaddopenid.php:187 +#: openidlogin.php:122 finishaddopenid.php:187 msgid "OpenID Login" msgstr "Aanmelden via OpenID" #. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:138 +#: openidlogin.php:140 msgid "OpenID login" msgstr "Aanmelden via OpenID" -#: openidlogin.php:146 +#: openidlogin.php:148 msgid "OpenID provider" msgstr "OpenID-provider" -#: openidlogin.php:154 +#: openidlogin.php:156 msgid "Enter your username." msgstr "Voer uw gebruikersnaam in" -#: openidlogin.php:155 +#: openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." msgstr "U wordt naar de site van de provider omgeleid om aan te melden." #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:162 +#: openidlogin.php:164 msgid "Your OpenID URL" msgstr "Uw OpenID-URL" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:167 +#: openidlogin.php:169 msgid "Remember me" msgstr "Aanmeldgegevens onthouden" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:169 +#: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" msgstr "" "In het vervolg automatisch aanmelden. Niet gebruiken op gedeelde computers!" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:174 +#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "Aanmelden" -#: openidtrust.php:51 +#: openidtrust.php:52 msgid "OpenID Identity Verification" msgstr "OpenID-identiteitscontrole" -#: openidtrust.php:69 +#: openidtrust.php:70 msgid "" "This page should only be reached during OpenID processing, not directly." msgstr "" "Deze pagina hoort alleen bezocht te worden tijdens het verwerken van een " "OpenID, en niet direct." -#: openidtrust.php:117 +#: openidtrust.php:118 #, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your " @@ -589,11 +589,11 @@ msgstr "" "indentiteit te controleren en aan te melden zonder een wachtwoord te hoeven " "invoeren." -#: openidtrust.php:135 +#: openidtrust.php:136 msgid "Continue" msgstr "Doorgaan" -#: openidtrust.php:136 +#: openidtrust.php:137 msgid "Cancel" msgstr "Annuleren" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 439c4f54c2..e7fdc2fc9b 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: openidsettings.php:59 openidadminpanel.php:65 +#: openidsettings.php:58 openidadminpanel.php:65 msgid "OpenID settings" msgstr "Mga katakdaan ng OpenID" -#: openidsettings.php:70 +#: openidsettings.php:69 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -35,11 +35,11 @@ msgstr "" "sityong may katulad na akawnt ng tagagamit. Pamahalaan ang iyong kaugnay na " "mga OpenID mula rito." -#: openidsettings.php:101 +#: openidsettings.php:100 msgid "Add OpenID" msgstr "Idagdag ang OpenID" -#: openidsettings.php:104 +#: openidsettings.php:103 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -48,19 +48,19 @@ msgstr "" "nasa ibaba at pindutin ang \"Idagdag\"." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:109 openidlogin.php:159 +#: openidsettings.php:108 openidlogin.php:161 msgid "OpenID URL" msgstr "URL ng OpenID" -#: openidsettings.php:119 +#: openidsettings.php:118 msgid "Add" msgstr "Idagdag" -#: openidsettings.php:131 +#: openidsettings.php:130 msgid "Remove OpenID" msgstr "Tanggalin ang OpenID" -#: openidsettings.php:136 +#: openidsettings.php:135 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -68,7 +68,7 @@ msgstr "" "Ang pagtatanggal ng iyong OpenID lamang ay makasasanhi ng imposibleng " "paglagda! Kung kailangan mong tanggalin ito, magdagdag ng ibang OpenID muna." -#: openidsettings.php:151 +#: openidsettings.php:150 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -76,15 +76,15 @@ msgstr "" "Matatanggap mo ang isang OpenID mula sa akawnt mo sa pamamagitan ng " "pagpindot sa pindutang may tatak na \"Tanggalin\"." -#: openidsettings.php:174 openidsettings.php:215 +#: openidsettings.php:173 openidsettings.php:214 msgid "Remove" msgstr "Tanggalin" -#: openidsettings.php:188 +#: openidsettings.php:187 msgid "OpenID Trusted Sites" msgstr "Pinagkakatiwalaang mga Sityo ng OpenID" -#: openidsettings.php:191 +#: openidsettings.php:190 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." @@ -94,35 +94,35 @@ msgstr "" "ito upang tanggihan ang pagpunta nito sa iyong OpenID." #. TRANS: Message given when there is a problem with the user's session token. -#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 msgid "There was a problem with your session token. Try again, please." msgstr "May suliranin sa iyong token na pangsesyon. Paki subukan uli." -#: openidsettings.php:240 +#: openidsettings.php:239 msgid "Can't add new providers." msgstr "Hindi makapagdaragdag ng bagong mga tagapagbigay." -#: openidsettings.php:253 +#: openidsettings.php:252 msgid "Something weird happened." msgstr "May nangyaring kakaiba." -#: openidsettings.php:277 +#: openidsettings.php:276 msgid "No such OpenID trustroot." msgstr "Walng ganyang pinagkakatiwalaang ugat ng OpenID." -#: openidsettings.php:281 +#: openidsettings.php:280 msgid "Trustroots removed" msgstr "Tinanggal ang mga pinagkakatiwalaang ugat" -#: openidsettings.php:304 +#: openidsettings.php:303 msgid "No such OpenID." msgstr "Walang ganyang OpenID." -#: openidsettings.php:309 +#: openidsettings.php:308 msgid "That OpenID does not belong to you." msgstr "Hindi mo pag-aari ang OpenID na iyan." -#: openidsettings.php:313 +#: openidsettings.php:312 msgid "OpenID removed." msgstr "Tinanggal ang OpenID." @@ -347,35 +347,35 @@ msgstr "" "Gamitin ang OpenID upang lumagda sa sityo." #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:118 +#: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." msgstr "Wala kang pahintulot na gamitin ang katauhang %s." #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:139 +#: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "" "Isa lamang na tagapagbigay ng OpenID. Walang makikita rito, magpatuloy..." #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:35 openidlogin.php:31 +#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "Nakalagda na." #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:46 +#: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "Hindi ka makakapagpatala kung hindi ka sasang-ayon sa lisensiya." #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:55 +#: finishopenidlogin.php:57 msgid "An unknown error has occured." msgstr "Naganap ang isang hindi nalalamang kamalian." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:71 +#: finishopenidlogin.php:73 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -388,40 +388,40 @@ msgstr "" "akawnt, kung mayroon ka." #. TRANS: Title -#: finishopenidlogin.php:78 +#: finishopenidlogin.php:80 msgid "OpenID Account Setup" msgstr "Pagkakaayos ng Akawnt na OpenID" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:110 msgid "Create new account" msgstr "Likhain ang bagong akawnt" -#: finishopenidlogin.php:110 +#: finishopenidlogin.php:112 msgid "Create a new user with this nickname." msgstr "Lumikha ng isang bagong tagagamit na may ganitong palayaw." -#: finishopenidlogin.php:113 +#: finishopenidlogin.php:115 msgid "New nickname" msgstr "Bagong palayaw" -#: finishopenidlogin.php:115 +#: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1 hanggang 64 maliliit na mga titik o mga bilang, walang bantas o mga patlang" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:140 +#: finishopenidlogin.php:142 msgctxt "BUTTON" msgid "Create" msgstr "Likhain" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:146 +#: finishopenidlogin.php:148 msgid "Connect existing account" msgstr "Iugnay ang umiiral na akawnt" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:149 +#: finishopenidlogin.php:151 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -430,35 +430,35 @@ msgstr "" "tagagamit at hudyat upang iugnay ito sa iyong OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:153 +#: finishopenidlogin.php:155 msgid "Existing nickname" msgstr "Umiiral na palayaw" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:157 +#: finishopenidlogin.php:159 msgid "Password" msgstr "Hudyat" #. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:161 +#: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" msgstr "Umugnay" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:174 finishaddopenid.php:90 +#: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "Kinansela ang pagpapatunay ng OpenID." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:178 finishaddopenid.php:95 +#: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "Nabigo ang pagpapatunay ng OpenID: %s" -#: finishopenidlogin.php:198 finishaddopenid.php:111 +#: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "" @@ -467,57 +467,57 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:250 finishopenidlogin.php:260 +#: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." msgstr "Hindi pinayagan ang pagpapatala." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:268 +#: finishopenidlogin.php:270 msgid "Not a valid invitation code." msgstr "Hindi isang tanggap na kodigo ng paanyaya." #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. -#: finishopenidlogin.php:279 +#: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Ang palayaw ay dapat lamang na may maliliit ng mga titik at mga bilang at " "walang mga patlang." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:287 msgid "Nickname not allowed." msgstr "Hindi pinayagan ang palayaw." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:291 +#: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." msgstr "Ginagamit na ang palayaw. Sumubok ng iba." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:299 finishopenidlogin.php:386 +#: finishopenidlogin.php:301 finishopenidlogin.php:388 msgid "Stored OpenID not found." msgstr "Hindi natagpuan ang nakalagak na OpenID." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:309 +#: finishopenidlogin.php:311 msgid "Creating new account for OpenID that already has a user." msgstr "" "Nililikha ang bagong akawnt para sa OpenID na mayroon nang isang tagagamit." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:374 +#: finishopenidlogin.php:376 msgid "Invalid username or password." msgstr "Hindi tanggap na pangalan ng tagagamit o hudyat." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:394 +#: finishopenidlogin.php:396 msgid "Error connecting user to OpenID." msgstr "May kamalian sa pag-ugnay ng tagagamit sa OpenID." #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:80 +#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " @@ -528,68 +528,68 @@ msgstr "" #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:86 +#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Lumagda sa pamamagitan ng isang akawnt ng [OpenID](%%doc.openid%%)." #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:120 finishaddopenid.php:187 +#: openidlogin.php:122 finishaddopenid.php:187 msgid "OpenID Login" msgstr "Panglagdang OpenID" #. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:138 +#: openidlogin.php:140 msgid "OpenID login" msgstr "Panglagdang OpenID" -#: openidlogin.php:146 +#: openidlogin.php:148 msgid "OpenID provider" msgstr "Tagapagbigay ng OpenID" -#: openidlogin.php:154 +#: openidlogin.php:156 msgid "Enter your username." msgstr "Ipasok ang iyong pangalan ng tagagamit." -#: openidlogin.php:155 +#: openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." msgstr "Ipapadala ka sa sityo ng tagapagbigay para sa pagpapatunay." #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:162 +#: openidlogin.php:164 msgid "Your OpenID URL" msgstr "Ang iyong URL ng OpenID" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:167 +#: openidlogin.php:169 msgid "Remember me" msgstr "Tandaan ako" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:169 +#: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Kusang lumagda sa hinaharap; hindi para sa pinagsasaluhang mga kompyuter!" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:174 +#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "Lumagda" -#: openidtrust.php:51 +#: openidtrust.php:52 msgid "OpenID Identity Verification" msgstr "Pagpapatunay sa Katauhan ng OpenID" -#: openidtrust.php:69 +#: openidtrust.php:70 msgid "" "This page should only be reached during OpenID processing, not directly." msgstr "" "Ang pahinang ito ay dapat lamang na maabot habang pinoproseso ang OpenID, " "hindi tuwiran." -#: openidtrust.php:117 +#: openidtrust.php:118 #, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your " @@ -599,11 +599,11 @@ msgstr "" "upang tiyakin ang iyong katauhan at lumagdang hindi lumilikha ng isang " "bagong hudyat." -#: openidtrust.php:135 +#: openidtrust.php:136 msgid "Continue" msgstr "Magpatuloy" -#: openidtrust.php:136 +#: openidtrust.php:137 msgid "Cancel" msgstr "Huwag ituloy" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index f5550f5de7..63f2c13041 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\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" -#: openidsettings.php:59 openidadminpanel.php:65 +#: openidsettings.php:58 openidadminpanel.php:65 msgid "OpenID settings" msgstr "Налаштування OpenID" -#: openidsettings.php:70 +#: openidsettings.php:69 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -36,11 +36,11 @@ msgstr "" "використовуючи той самий лоґін і пароль. Тут можна впорядкувати ваші OpenID-" "акаунти." -#: openidsettings.php:101 +#: openidsettings.php:100 msgid "Add OpenID" msgstr "Додати OpenID" -#: openidsettings.php:104 +#: openidsettings.php:103 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -49,19 +49,19 @@ msgstr "" "натисніть «Додати»." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:109 openidlogin.php:159 +#: openidsettings.php:108 openidlogin.php:161 msgid "OpenID URL" msgstr "URL-адреса OpenID" -#: openidsettings.php:119 +#: openidsettings.php:118 msgid "Add" msgstr "Додати" -#: openidsettings.php:131 +#: openidsettings.php:130 msgid "Remove OpenID" msgstr "Видалити OpenID" -#: openidsettings.php:136 +#: openidsettings.php:135 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -70,21 +70,21 @@ msgstr "" "вхід у майбутньому! Якщо вам потрібно видалити ваш єдиний OpenID, то спершу " "додайте інший." -#: openidsettings.php:151 +#: openidsettings.php:150 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "Ви можете видалити ваш OpenID просто натиснувши кнопку «Видалити»." -#: openidsettings.php:174 openidsettings.php:215 +#: openidsettings.php:173 openidsettings.php:214 msgid "Remove" msgstr "Видалити" -#: openidsettings.php:188 +#: openidsettings.php:187 msgid "OpenID Trusted Sites" msgstr "Довірені сайти OpenID" -#: openidsettings.php:191 +#: openidsettings.php:190 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." @@ -94,36 +94,36 @@ msgstr "" "на вхід." #. TRANS: Message given when there is a problem with the user's session token. -#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 msgid "There was a problem with your session token. Try again, please." msgstr "" "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." -#: openidsettings.php:240 +#: openidsettings.php:239 msgid "Can't add new providers." msgstr "Не вдається додати нового OpenID-провайдера." -#: openidsettings.php:253 +#: openidsettings.php:252 msgid "Something weird happened." msgstr "Сталося щось незрозуміле." -#: openidsettings.php:277 +#: openidsettings.php:276 msgid "No such OpenID trustroot." msgstr "Серед довірених такого OpenID немає." -#: openidsettings.php:281 +#: openidsettings.php:280 msgid "Trustroots removed" msgstr "Довірені OpenID видалено" -#: openidsettings.php:304 +#: openidsettings.php:303 msgid "No such OpenID." msgstr "Немає такого OpenID." -#: openidsettings.php:309 +#: openidsettings.php:308 msgid "That OpenID does not belong to you." msgstr "Даний OpenID належить не вам." -#: openidsettings.php:313 +#: openidsettings.php:312 msgid "OpenID removed." msgstr "OpenID видалено." @@ -340,7 +340,7 @@ msgstr "" "Використання OpenID для входу на сайт." #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). -#: openidserver.php:118 +#: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." msgstr "" @@ -348,28 +348,28 @@ msgstr "" "ідентичності на %s." #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). -#: openidserver.php:139 +#: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "Просто OpenID-провайдер. Нічого належного чомусь не видно..." #. TRANS: Client error message trying to log on with OpenID while already logged on. -#: finishopenidlogin.php:35 openidlogin.php:31 +#: finishopenidlogin.php:37 openidlogin.php:33 msgid "Already logged in." msgstr "Тепер ви увійшли." #. TRANS: Message given if user does not agree with the site's license. -#: finishopenidlogin.php:46 +#: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "Ви не зможете зареєструватися, якщо не погодитесь з умовами ліцензії." #. TRANS: Messag given on an unknown error. -#: finishopenidlogin.php:55 +#: finishopenidlogin.php:57 msgid "An unknown error has occured." msgstr "Виникла якась незрозуміла помилка." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#: finishopenidlogin.php:71 +#: finishopenidlogin.php:73 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -381,40 +381,40 @@ msgstr "" "використати такий, що вже існує." #. TRANS: Title -#: finishopenidlogin.php:78 +#: finishopenidlogin.php:80 msgid "OpenID Account Setup" msgstr "Створення акаунту OpenID" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:110 msgid "Create new account" msgstr "Створити новий акаунт" -#: finishopenidlogin.php:110 +#: finishopenidlogin.php:112 msgid "Create a new user with this nickname." msgstr "Створити нового користувача з цим нікнеймом." -#: finishopenidlogin.php:113 +#: finishopenidlogin.php:115 msgid "New nickname" msgstr "Новий нікнейм" -#: finishopenidlogin.php:115 +#: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. -#: finishopenidlogin.php:140 +#: finishopenidlogin.php:142 msgctxt "BUTTON" msgid "Create" msgstr "Створити" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:146 +#: finishopenidlogin.php:148 msgid "Connect existing account" msgstr "Приєднати акаунт, який вже існує" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:149 +#: finishopenidlogin.php:151 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -423,91 +423,91 @@ msgstr "" "приєднати їх до вашого OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:153 +#: finishopenidlogin.php:155 msgid "Existing nickname" msgstr "Нікнейм, який вже існує" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:157 +#: finishopenidlogin.php:159 msgid "Password" msgstr "Пароль" #. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. -#: finishopenidlogin.php:161 +#: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" msgstr "Під’єднати" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. -#: finishopenidlogin.php:174 finishaddopenid.php:90 +#: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "Автентифікацію за OpenID скасовано." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#: finishopenidlogin.php:178 finishaddopenid.php:95 +#: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "Автентифікуватись за OpenID не вдалося: %s" -#: finishopenidlogin.php:198 finishaddopenid.php:111 +#: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "Автентифікацію за OpenID перервано: ви не можете увійти на цей сайт." #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:250 finishopenidlogin.php:260 +#: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:268 +#: finishopenidlogin.php:270 msgid "Not a valid invitation code." msgstr "Це не дійсний код запрошення." #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. -#: finishopenidlogin.php:279 +#: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Ім’я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " "інтервалів." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:287 msgid "Nickname not allowed." msgstr "Нікнейм не допускається." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:291 +#: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." msgstr "Цей нікнейм вже використовується. Спробуйте інший." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:299 finishopenidlogin.php:386 +#: finishopenidlogin.php:301 finishopenidlogin.php:388 msgid "Stored OpenID not found." msgstr "Збережений OpenID не знайдено." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:309 +#: finishopenidlogin.php:311 msgid "Creating new account for OpenID that already has a user." msgstr "Створення нового акаунту для OpenID користувачем, який вже існує." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:374 +#: finishopenidlogin.php:376 msgid "Invalid username or password." msgstr "Невірне ім’я або пароль." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:394 +#: finishopenidlogin.php:396 msgid "Error connecting user to OpenID." msgstr "Помилка при підключенні користувача до OpenID." #. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:80 +#: openidlogin.php:82 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " @@ -518,68 +518,68 @@ msgstr "" #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". -#: openidlogin.php:86 +#: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Увійти з [OpenID](%%doc.openid%%)." #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. -#: openidlogin.php:120 finishaddopenid.php:187 +#: openidlogin.php:122 finishaddopenid.php:187 msgid "OpenID Login" msgstr "Вхід з OpenID" #. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:138 +#: openidlogin.php:140 msgid "OpenID login" msgstr "Вхід з OpenID" -#: openidlogin.php:146 +#: openidlogin.php:148 msgid "OpenID provider" msgstr "OpenID-провайдер" -#: openidlogin.php:154 +#: openidlogin.php:156 msgid "Enter your username." msgstr "Введіть ім’я користувача." -#: openidlogin.php:155 +#: openidlogin.php:157 msgid "You will be sent to the provider's site for authentication." msgstr "Вас буде перенаправлено на веб-сторінку провайдера для автентифікації." #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:162 +#: openidlogin.php:164 msgid "Your OpenID URL" msgstr "URL вашого OpenID" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. -#: openidlogin.php:167 +#: openidlogin.php:169 msgid "Remember me" msgstr "Пам’ятати мене" #. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:169 +#: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Автоматично входити у майбутньому; не для комп’ютерів загального " "користування!" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. -#: openidlogin.php:174 +#: openidlogin.php:176 msgctxt "BUTTON" msgid "Login" msgstr "Увійти" -#: openidtrust.php:51 +#: openidtrust.php:52 msgid "OpenID Identity Verification" msgstr "Перевірка ідентичності OpenID" -#: openidtrust.php:69 +#: openidtrust.php:70 msgid "" "This page should only be reached during OpenID processing, not directly." msgstr "" "Ви потрапляєте на цю сторінку лише при обробці запитів OpenID, не напряму." -#: openidtrust.php:117 +#: openidtrust.php:118 #, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your " @@ -588,11 +588,11 @@ msgstr "" "%s запрошує вас пройти перевірку на ідентичність. Натисніть «Продовжити», щоб " "перевірити вашу особу та увійти, не створюючи нового паролю." -#: openidtrust.php:135 +#: openidtrust.php:136 msgid "Continue" msgstr "Продовжити" -#: openidtrust.php:136 +#: openidtrust.php:137 msgid "Cancel" msgstr "Скасувати" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index f9491cc4bf..c1d76f1589 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..999bf064cf --- /dev/null +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - PiwikAnalytics to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:13+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Menggunakan perangkat lunak analisis web terbuka Piwik." diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..1e8a37fba7 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - PiwikAnalytics to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:13+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-03 20:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Utiliza o software de análise web de código aberto Piwik." diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 7824f950c6..0ca588157f 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..0f645284cd --- /dev/null +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - PostDebug to Finnish (Suomi) +# Expored from translatewiki.net +# +# Author: Nike +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:13+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-03 20:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "Virheenjäljitystyökalu joka tallentaa POST-pyyntöjen tiedot" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..c103836c91 --- /dev/null +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - PostDebug to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:14+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "Peralatan debugging untuk mencatat detail permintaan di POST." diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..c63f6057df --- /dev/null +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - PostDebug to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:14+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-03 20:57:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "" +"Ferramenta de depuração para registrar detalhes de solicitação em POST." diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index c6f4eaaafa..ee8a46576e 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index b2e9145b95..ae6aea3aeb 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 0fda09212c..b0c85aa630 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 1efda827ab..cf7d002505 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 725e64e427..6c66ccfca1 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 8825867760..dde5480bdb 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index f66b6deee6..a825d77f08 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..499b4d6704 --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:17+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ReverseUsernameAuthenticationPlugin.php:67 +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"Pengaya Reverse Username Authentication memungkinkan StatusNet untuk " +"menangani otentikasi dengan mengecek bila sandi yang diberikan sama seperti " +"nama pengguna jika dibaca terbalik." diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index 60234e3c4f..15ae7af660 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index ed180fa444..cfd7d800c1 100644 --- a/plugins/ShareNotice/locale/ShareNotice.pot +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..a9a5331345 --- /dev/null +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - ShareNotice to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:20+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "« %s »" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Partager sur Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Partager sur %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Partager sur Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Cette extension permet de partager des avis sur Twitter, Facebook et " +"d’autres plate-formes." diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index 27eda38ff9..113f14c2ff 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..252327b6b0 --- /dev/null +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - SimpleUrl to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:21+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:12+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Menggunakan layanan pemendek URL %1$s." diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 7e3fba6338..83e71e7853 100644 --- a/plugins/Sitemap/locale/Sitemap.pot +++ b/plugins/Sitemap/locale/Sitemap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po new file mode 100644 index 0000000000..66a40b2a4c --- /dev/null +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -0,0 +1,91 @@ +# Translation of StatusNet - Sitemap to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sitemap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-sitemap\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Title for sitemap. +#: sitemapadminpanel.php:53 +msgid "Sitemap" +msgstr "Plan du site" + +#. TRANS: Instructions for sitemap. +#: sitemapadminpanel.php:64 +msgid "Sitemap settings for this StatusNet site" +msgstr "Paramètres de plan du site pour ce site StatusNet" + +#. TRANS: Field label. +#: sitemapadminpanel.php:167 +msgid "Google key" +msgstr "Clé Google" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:169 +msgid "Google Webmaster Tools verification key." +msgstr "Clé de vérification pour les outils Google Webmaster." + +#. TRANS: Field label. +#: sitemapadminpanel.php:175 +msgid "Yahoo key" +msgstr "Clé Yahoo" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:177 +msgid "Yahoo! Site Explorer verification key." +msgstr "Clé de vérification pour l’explorateur de site Yahoo!" + +#. TRANS: Field label. +#: sitemapadminpanel.php:183 +msgid "Bing key" +msgstr "Clé Bing" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:185 +msgid "Bing Webmaster Tools verification key." +msgstr "Clé de vérification pour les outils Bing Webmaster." + +#. TRANS: Submit button text to save sitemap settings. +#: sitemapadminpanel.php:200 +msgctxt "BUTTON" +msgid "Save" +msgstr "Sauvegarder" + +#. TRANS: Submit button title to save sitemap settings. +#: sitemapadminpanel.php:204 +msgid "Save sitemap settings." +msgstr "Sauvegarder les paramètres de plan du site." + +#. TRANS: Menu item title/tooltip +#: SitemapPlugin.php:211 +msgid "Sitemap configuration" +msgstr "Configuration du plan du site" + +#. TRANS: Menu item for site administration +#: SitemapPlugin.php:213 +msgctxt "MENU" +msgid "Sitemap" +msgstr "Plan du site" + +#. TRANS: Plugin description. +#: SitemapPlugin.php:238 +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" +"Cette extension permet de créer des plans du site pour Bing, Yahoo! et " +"Google." diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po new file mode 100644 index 0000000000..7861af97fd --- /dev/null +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -0,0 +1,91 @@ +# Translation of StatusNet - Sitemap to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sitemap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-sitemap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for sitemap. +#: sitemapadminpanel.php:53 +msgid "Sitemap" +msgstr "Mappa de sito" + +#. TRANS: Instructions for sitemap. +#: sitemapadminpanel.php:64 +msgid "Sitemap settings for this StatusNet site" +msgstr "Configuration de mappa de sito pro iste sito StatusNet" + +#. TRANS: Field label. +#: sitemapadminpanel.php:167 +msgid "Google key" +msgstr "Clave Google" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:169 +msgid "Google Webmaster Tools verification key." +msgstr "Clave de verification de Google Webmaster Tools." + +#. TRANS: Field label. +#: sitemapadminpanel.php:175 +msgid "Yahoo key" +msgstr "Clave Yahoo" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:177 +msgid "Yahoo! Site Explorer verification key." +msgstr "Clave de verification de Yahoo Site Explorer." + +#. TRANS: Field label. +#: sitemapadminpanel.php:183 +msgid "Bing key" +msgstr "Clave Bing" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:185 +msgid "Bing Webmaster Tools verification key." +msgstr "Clave de verification de Bing Webmaster Tools." + +#. TRANS: Submit button text to save sitemap settings. +#: sitemapadminpanel.php:200 +msgctxt "BUTTON" +msgid "Save" +msgstr "Salveguardar" + +#. TRANS: Submit button title to save sitemap settings. +#: sitemapadminpanel.php:204 +msgid "Save sitemap settings." +msgstr "Salveguardar configuration de mappa de sito." + +#. TRANS: Menu item title/tooltip +#: SitemapPlugin.php:211 +msgid "Sitemap configuration" +msgstr "Configuration de mappa de sito" + +#. TRANS: Menu item for site administration +#: SitemapPlugin.php:213 +msgctxt "MENU" +msgid "Sitemap" +msgstr "Mappa de sito" + +#. TRANS: Plugin description. +#: SitemapPlugin.php:238 +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" +"Iste plug-in permitte le creation de mappas de sito pro Bing, Yahoo! e " +"Google." diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po new file mode 100644 index 0000000000..4e08579a8e --- /dev/null +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -0,0 +1,91 @@ +# Translation of StatusNet - Sitemap to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sitemap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-sitemap\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Title for sitemap. +#: sitemapadminpanel.php:53 +msgid "Sitemap" +msgstr "План на мреж. место" + +#. TRANS: Instructions for sitemap. +#: sitemapadminpanel.php:64 +msgid "Sitemap settings for this StatusNet site" +msgstr "Нагодувања за планот на ова StatusNet-мрежно место" + +#. TRANS: Field label. +#: sitemapadminpanel.php:167 +msgid "Google key" +msgstr "Google-клуч" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:169 +msgid "Google Webmaster Tools verification key." +msgstr "Потврден клуч за Управните алатки на Google." + +#. TRANS: Field label. +#: sitemapadminpanel.php:175 +msgid "Yahoo key" +msgstr "Yahoo-клуч" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:177 +msgid "Yahoo! Site Explorer verification key." +msgstr "Потврден клуч за Yahoo! Site Explorer." + +#. TRANS: Field label. +#: sitemapadminpanel.php:183 +msgid "Bing key" +msgstr "Bing-клуч" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:185 +msgid "Bing Webmaster Tools verification key." +msgstr "Потврден клуч за Управните алатки на Bing." + +#. TRANS: Submit button text to save sitemap settings. +#: sitemapadminpanel.php:200 +msgctxt "BUTTON" +msgid "Save" +msgstr "Зачувај" + +#. TRANS: Submit button title to save sitemap settings. +#: sitemapadminpanel.php:204 +msgid "Save sitemap settings." +msgstr "Зачувај нагодувања за план." + +#. TRANS: Menu item title/tooltip +#: SitemapPlugin.php:211 +msgid "Sitemap configuration" +msgstr "Поставки за план" + +#. TRANS: Menu item for site administration +#: SitemapPlugin.php:213 +msgctxt "MENU" +msgid "Sitemap" +msgstr "План на мреж. место" + +#. TRANS: Plugin description. +#: SitemapPlugin.php:238 +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" +"Овој приклучок овозможува создавање на планови на мреж. места на Bing, " +"Yahoo! и Google." diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po new file mode 100644 index 0000000000..d469fd0537 --- /dev/null +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -0,0 +1,91 @@ +# Translation of StatusNet - Sitemap to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sitemap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:22+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-04 23:13:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-sitemap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for sitemap. +#: sitemapadminpanel.php:53 +msgid "Sitemap" +msgstr "Sitemap" + +#. TRANS: Instructions for sitemap. +#: sitemapadminpanel.php:64 +msgid "Sitemap settings for this StatusNet site" +msgstr "Sitemapinstellingen voor deze StatusNetwebsite" + +#. TRANS: Field label. +#: sitemapadminpanel.php:167 +msgid "Google key" +msgstr "Googlesleutel" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:169 +msgid "Google Webmaster Tools verification key." +msgstr "Verificatiesleutel voor Google Webmaster Tools." + +#. TRANS: Field label. +#: sitemapadminpanel.php:175 +msgid "Yahoo key" +msgstr "Yahoosleutel" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:177 +msgid "Yahoo! Site Explorer verification key." +msgstr "Verificatiesleutel voor Yahoo! Site Explorer." + +#. TRANS: Field label. +#: sitemapadminpanel.php:183 +msgid "Bing key" +msgstr "Bingsleutel" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:185 +msgid "Bing Webmaster Tools verification key." +msgstr "Verificatiesleutel voor Bing Webmaster Tools." + +#. TRANS: Submit button text to save sitemap settings. +#: sitemapadminpanel.php:200 +msgctxt "BUTTON" +msgid "Save" +msgstr "Opslaan" + +#. TRANS: Submit button title to save sitemap settings. +#: sitemapadminpanel.php:204 +msgid "Save sitemap settings." +msgstr "Instellingen voor sitemap opslaan." + +#. TRANS: Menu item title/tooltip +#: SitemapPlugin.php:211 +msgid "Sitemap configuration" +msgstr "Instellingen voor sitemap" + +#. TRANS: Menu item for site administration +#: SitemapPlugin.php:213 +msgctxt "MENU" +msgid "Sitemap" +msgstr "Sitemap" + +#. TRANS: Plugin description. +#: SitemapPlugin.php:238 +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" +"Deze plugin maakt het mogelijk sitemaps aan te maken voor Bing, Yahoo! en " +"Google." diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po new file mode 100644 index 0000000000..3952dc50d5 --- /dev/null +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -0,0 +1,91 @@ +# Translation of StatusNet - Sitemap to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sitemap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-sitemap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for sitemap. +#: sitemapadminpanel.php:53 +msgid "Sitemap" +msgstr "Mapa ng sityo" + +#. TRANS: Instructions for sitemap. +#: sitemapadminpanel.php:64 +msgid "Sitemap settings for this StatusNet site" +msgstr "Mga katakdaan ng mapa ng sityo para sa sityong ito ng StatusNet" + +#. TRANS: Field label. +#: sitemapadminpanel.php:167 +msgid "Google key" +msgstr "Susi ng Google" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:169 +msgid "Google Webmaster Tools verification key." +msgstr "Susing pantiyak ng mga Kasangkapan ng Maestro ng Web ng Google." + +#. TRANS: Field label. +#: sitemapadminpanel.php:175 +msgid "Yahoo key" +msgstr "Susi ng Yahoo" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:177 +msgid "Yahoo! Site Explorer verification key." +msgstr "Susing pantiyak ng Panggalugad ng Sityo ng Yahoo!" + +#. TRANS: Field label. +#: sitemapadminpanel.php:183 +msgid "Bing key" +msgstr "Susi ng Bing" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:185 +msgid "Bing Webmaster Tools verification key." +msgstr "Susing pantiyak ng mga Kasangkapan ng Maestro ng Web ng Bing." + +#. TRANS: Submit button text to save sitemap settings. +#: sitemapadminpanel.php:200 +msgctxt "BUTTON" +msgid "Save" +msgstr "Sagipin" + +#. TRANS: Submit button title to save sitemap settings. +#: sitemapadminpanel.php:204 +msgid "Save sitemap settings." +msgstr "Sagipin ang mga katakdaan ng mapa ng sityo." + +#. TRANS: Menu item title/tooltip +#: SitemapPlugin.php:211 +msgid "Sitemap configuration" +msgstr "Pagkakaayos ng mapa ng sityo" + +#. TRANS: Menu item for site administration +#: SitemapPlugin.php:213 +msgctxt "MENU" +msgid "Sitemap" +msgstr "Mapa ng sityo" + +#. TRANS: Plugin description. +#: SitemapPlugin.php:238 +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" +"Nagpapahintulot ang pampasak na ito ng paglikha ng mga mapa ng sityo para sa " +"Bing, Yahoo! at Google." diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po new file mode 100644 index 0000000000..ec7d365a2c --- /dev/null +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -0,0 +1,91 @@ +# Translation of StatusNet - Sitemap to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sitemap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:13:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-sitemap\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" + +#. TRANS: Title for sitemap. +#: sitemapadminpanel.php:53 +msgid "Sitemap" +msgstr "Карта сайту" + +#. TRANS: Instructions for sitemap. +#: sitemapadminpanel.php:64 +msgid "Sitemap settings for this StatusNet site" +msgstr "Налаштування карти сайту на даному сайті StatusNet" + +#. TRANS: Field label. +#: sitemapadminpanel.php:167 +msgid "Google key" +msgstr "Ключ Google" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:169 +msgid "Google Webmaster Tools verification key." +msgstr "Ключ підтвердження Google Webmaster Tools" + +#. TRANS: Field label. +#: sitemapadminpanel.php:175 +msgid "Yahoo key" +msgstr "Ключ Yahoo" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:177 +msgid "Yahoo! Site Explorer verification key." +msgstr "Ключ підтвердження Yahoo! Site Explorer" + +#. TRANS: Field label. +#: sitemapadminpanel.php:183 +msgid "Bing key" +msgstr "Ключ Bing" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:185 +msgid "Bing Webmaster Tools verification key." +msgstr "Ключ підтвердження Bing Webmaster Tools" + +#. TRANS: Submit button text to save sitemap settings. +#: sitemapadminpanel.php:200 +msgctxt "BUTTON" +msgid "Save" +msgstr "Зберегти" + +#. TRANS: Submit button title to save sitemap settings. +#: sitemapadminpanel.php:204 +msgid "Save sitemap settings." +msgstr "Зберегти налаштування карти сайту." + +#. TRANS: Menu item title/tooltip +#: SitemapPlugin.php:211 +msgid "Sitemap configuration" +msgstr "Конфігурація карти сайту" + +#. TRANS: Menu item for site administration +#: SitemapPlugin.php:213 +msgctxt "MENU" +msgid "Sitemap" +msgstr "Карта сайту" + +#. TRANS: Plugin description. +#: SitemapPlugin.php:238 +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" +"Цей додаток дозволяє створювати карти сайту для Bing, Yahoo! та Google." diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index 7d4a541c63..d129de3e40 100644 --- a/plugins/SlicedFavorites/locale/SlicedFavorites.pot +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..670da77d92 --- /dev/null +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - SlicedFavorites to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:58:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Affiche des listes d’avis populaires pour des sous-ensembles définis " +"d’utilisateurs." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Tranche préférée inconnue." diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..ec30a42e63 --- /dev/null +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - SlicedFavorites to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:22+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:58:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Menampilkan garis waktu pemberitahuan populer untuk sekumpulan pengguna yang " +"ditentukan." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Pembagian favorit tidak diketahui." diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index b374dc587c..cac794802b 100644 --- a/plugins/SphinxSearch/locale/SphinxSearch.pot +++ b/plugins/SphinxSearch/locale/SphinxSearch.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po new file mode 100644 index 0000000000..98f421c774 --- /dev/null +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - SphinxSearch to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SphinxSearch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Server exception. +#: SphinxSearchPlugin.php:87 +msgid "Sphinx PHP extension must be installed." +msgstr "L’extension PHP Sphinx doit être installée." + +#. TRANS: Plugin description. +#: SphinxSearchPlugin.php:118 +msgid "Plugin for Sphinx search backend." +msgstr "Extension pour le moteur de recherche Sphinx." + +#. TRANS: Server exception thrown when a database name cannot be identified. +#: sphinxsearch.php:96 +msgid "Sphinx search could not identify database name." +msgstr "" +"La recherche Sphinx n’a pas pu identifier le nom de la base de données." diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po new file mode 100644 index 0000000000..b07a0f0ef8 --- /dev/null +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -0,0 +1,37 @@ +# Translation of StatusNet - SphinxSearch to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SphinxSearch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#: SphinxSearchPlugin.php:87 +msgid "Sphinx PHP extension must be installed." +msgstr "Le extension PHP Sphinx debe esser installate." + +#. TRANS: Plugin description. +#: SphinxSearchPlugin.php:118 +msgid "Plugin for Sphinx search backend." +msgstr "Plug-in pro back-end de recerca Sphinx." + +#. TRANS: Server exception thrown when a database name cannot be identified. +#: sphinxsearch.php:96 +msgid "Sphinx search could not identify database name." +msgstr "Le recerca Sphinx non poteva identificar le nomine del base de datos." diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po new file mode 100644 index 0000000000..3a0dbd620f --- /dev/null +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -0,0 +1,37 @@ +# Translation of StatusNet - SphinxSearch to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SphinxSearch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Server exception. +#: SphinxSearchPlugin.php:87 +msgid "Sphinx PHP extension must be installed." +msgstr "Мора да се инсталира PHP-додатокот Sphinx" + +#. TRANS: Plugin description. +#: SphinxSearchPlugin.php:118 +msgid "Plugin for Sphinx search backend." +msgstr "Приклучок за пребарување со Sphinx." + +#. TRANS: Server exception thrown when a database name cannot be identified. +#: sphinxsearch.php:96 +msgid "Sphinx search could not identify database name." +msgstr "Пребарувањето со Sphinx не можеше да го утврди името на базата." diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po new file mode 100644 index 0000000000..d12baabe49 --- /dev/null +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - SphinxSearch to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SphinxSearch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:23+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-04 23:12:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-sphinxsearch\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#: SphinxSearchPlugin.php:87 +msgid "Sphinx PHP extension must be installed." +msgstr "De PHP-extensie Sphinx moet geïnstalleerd. zijn." + +#. TRANS: Plugin description. +#: SphinxSearchPlugin.php:118 +msgid "Plugin for Sphinx search backend." +msgstr "Plug-in voor een Sphinxbackend." + +#. TRANS: Server exception thrown when a database name cannot be identified. +#: sphinxsearch.php:96 +msgid "Sphinx search could not identify database name." +msgstr "" +"Het was voor Sphinx search niet mogelijk een database te identificeren." diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po new file mode 100644 index 0000000000..62a35bf2c1 --- /dev/null +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - SphinxSearch to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SphinxSearch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#: SphinxSearchPlugin.php:87 +msgid "Sphinx PHP extension must be installed." +msgstr "Dapat na iluklok ang dugtong na PHP ng Sphinx." + +#. TRANS: Plugin description. +#: SphinxSearchPlugin.php:118 +msgid "Plugin for Sphinx search backend." +msgstr "Pamasak para sa wakas ng likuran ng panghanap ng Sphinx." + +#. TRANS: Server exception thrown when a database name cannot be identified. +#: sphinxsearch.php:96 +msgid "Sphinx search could not identify database name." +msgstr "" +"Hindi makilala ng panghanap ng Sphinx ang pangalan ng kalipunan ng dato." diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po new file mode 100644 index 0000000000..db526fb32d --- /dev/null +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - SphinxSearch to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SphinxSearch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:23+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:12:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-sphinxsearch\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" + +#. TRANS: Server exception. +#: SphinxSearchPlugin.php:87 +msgid "Sphinx PHP extension must be installed." +msgstr "Розширення Sphinx PHP повинно бути встановлено." + +#. TRANS: Plugin description. +#: SphinxSearchPlugin.php:118 +msgid "Plugin for Sphinx search backend." +msgstr "Додаток для пошуку за допомогою Sphinx." + +#. TRANS: Server exception thrown when a database name cannot be identified. +#: sphinxsearch.php:96 +msgid "Sphinx search could not identify database name." +msgstr "Пошук Sphinx не може визначити ім’я бази даних." diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index b42a77cd9c..8881b6d9af 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index 25c48db771..b23c594e55 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..a26bfa859f --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - SubscriptionThrottle to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:25+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:58:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: SubscriptionThrottlePlugin.php:171 +msgid "Configurable limits for subscriptions and group memberships." +msgstr "" +"Batasan yang dapat disesuaikan untuk langganan dan keanggotaan kelompok." diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 90666a1d24..4363c9e603 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..804ed79b4e --- /dev/null +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:26+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus mengubah kelakuan bentuk pemberitahuan sehingga ketika berada dalam " +"area teks, menekan tombol tab akan memunculkan tombol \"Kirim\", menyerupai " +"kelakuan Twitter." diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index f0a036968d..04475e73c4 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..862a0122bf --- /dev/null +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - TightUrl to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:26+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:36+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Menggunakan layanan pemendek URL %1$s." diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index 4160a42a84..3471555c42 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..cc892ed062 --- /dev/null +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:27+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:35+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: TinyMCEPlugin.php:83 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Gunakan pustaka TinyMCE untuk memungkinkan penyuntingan teks kaya pada " +"peramban." diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 702793c877..14d30b0f4a 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -342,19 +342,23 @@ msgstr "" msgid "Unexpected form submission." msgstr "" -#: twittersettings.php:254 +#: twittersettings.php:251 +msgid "No Twitter connection to remove." +msgstr "" + +#: twittersettings.php:259 msgid "Couldn't remove Twitter user." msgstr "" -#: twittersettings.php:258 +#: twittersettings.php:263 msgid "Twitter account disconnected." msgstr "" -#: twittersettings.php:278 twittersettings.php:288 +#: twittersettings.php:283 twittersettings.php:293 msgid "Couldn't save Twitter preferences." msgstr "" -#: twittersettings.php:292 +#: twittersettings.php:297 msgid "Twitter preferences saved." msgstr "" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 9c03dc101a..5f32404fbc 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -386,19 +386,23 @@ msgstr "Ajouter" msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." -#: twittersettings.php:254 +#: twittersettings.php:251 +msgid "No Twitter connection to remove." +msgstr "" + +#: twittersettings.php:259 msgid "Couldn't remove Twitter user." msgstr "Impossible de supprimer l’utilisateur Twitter." -#: twittersettings.php:258 +#: twittersettings.php:263 msgid "Twitter account disconnected." msgstr "Compte Twitter déconnecté." -#: twittersettings.php:278 twittersettings.php:288 +#: twittersettings.php:283 twittersettings.php:293 msgid "Couldn't save Twitter preferences." msgstr "Impossible de sauvegarder les préférences Twitter." -#: twittersettings.php:292 +#: twittersettings.php:297 msgid "Twitter preferences saved." msgstr "Préférences Twitter enregistrées." diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index d5be8c0f18..88f0db7806 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -376,19 +376,23 @@ msgstr "Adder" msgid "Unexpected form submission." msgstr "Submission de formulario inexpectate." -#: twittersettings.php:254 +#: twittersettings.php:251 +msgid "No Twitter connection to remove." +msgstr "" + +#: twittersettings.php:259 msgid "Couldn't remove Twitter user." msgstr "Non poteva remover le usator de Twitter." -#: twittersettings.php:258 +#: twittersettings.php:263 msgid "Twitter account disconnected." msgstr "Conto de Twitter disconnectite." -#: twittersettings.php:278 twittersettings.php:288 +#: twittersettings.php:283 twittersettings.php:293 msgid "Couldn't save Twitter preferences." msgstr "Non poteva salveguardar le preferentias de Twitter." -#: twittersettings.php:292 +#: twittersettings.php:297 msgid "Twitter preferences saved." msgstr "Preferentias de Twitter salveguardate." diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 03e7720f83..1bd63616de 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -379,19 +379,23 @@ msgstr "Додај" msgid "Unexpected form submission." msgstr "Неочекувано поднесување на образец." -#: twittersettings.php:254 +#: twittersettings.php:251 +msgid "No Twitter connection to remove." +msgstr "" + +#: twittersettings.php:259 msgid "Couldn't remove Twitter user." msgstr "Не можев да го отстранам корисникот на Twitter." -#: twittersettings.php:258 +#: twittersettings.php:263 msgid "Twitter account disconnected." msgstr "Врската со сметката на Twitter е прекината." -#: twittersettings.php:278 twittersettings.php:288 +#: twittersettings.php:283 twittersettings.php:293 msgid "Couldn't save Twitter preferences." msgstr "Не можев да ги зачувам нагодувањата за Twitter." -#: twittersettings.php:292 +#: twittersettings.php:297 msgid "Twitter preferences saved." msgstr "Нагодувањата за Twitter се зачувани." diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index ed29e9895e..ef66b5a9c7 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:32+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-01 20:39:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-twitterbridge\n" @@ -386,19 +386,23 @@ msgstr "Toevoegen" msgid "Unexpected form submission." msgstr "Het formulier is onverwacht ingezonden." -#: twittersettings.php:254 +#: twittersettings.php:251 +msgid "No Twitter connection to remove." +msgstr "" + +#: twittersettings.php:259 msgid "Couldn't remove Twitter user." msgstr "Het was niet mogelijk de Twittergebruiker te verwijderen." -#: twittersettings.php:258 +#: twittersettings.php:263 msgid "Twitter account disconnected." msgstr "De Twittergebruiker is ontkoppeld." -#: twittersettings.php:278 twittersettings.php:288 +#: twittersettings.php:283 twittersettings.php:293 msgid "Couldn't save Twitter preferences." msgstr "Het was niet mogelijk de Twittervoorkeuren op te slaan." -#: twittersettings.php:292 +#: twittersettings.php:297 msgid "Twitter preferences saved." msgstr "De Twitterinstellingen zijn opgeslagen." diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index a4e716c7ec..66a77e6808 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:33+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-twitterbridge\n" @@ -360,19 +360,23 @@ msgstr "Ekle" msgid "Unexpected form submission." msgstr "Beklenmedik form gönderimi." -#: twittersettings.php:254 +#: twittersettings.php:251 +msgid "No Twitter connection to remove." +msgstr "" + +#: twittersettings.php:259 msgid "Couldn't remove Twitter user." msgstr "Twitter kullanıcısı silinemedi." -#: twittersettings.php:258 +#: twittersettings.php:263 msgid "Twitter account disconnected." msgstr "Twitter hesabı bağlantısı kesildi." -#: twittersettings.php:278 twittersettings.php:288 +#: twittersettings.php:283 twittersettings.php:293 msgid "Couldn't save Twitter preferences." msgstr "Twitter tercihleri kaydedilemedi." -#: twittersettings.php:292 +#: twittersettings.php:297 msgid "Twitter preferences saved." msgstr "Twitter tercihleriniz kaydedildi." diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index 46de2797d1..228960ff6c 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -382,19 +382,23 @@ msgstr "Додати" msgid "Unexpected form submission." msgstr "Несподіване представлення форми." -#: twittersettings.php:254 +#: twittersettings.php:251 +msgid "No Twitter connection to remove." +msgstr "" + +#: twittersettings.php:259 msgid "Couldn't remove Twitter user." msgstr "Не вдається видалити користувача Twitter." -#: twittersettings.php:258 +#: twittersettings.php:263 msgid "Twitter account disconnected." msgstr "Акаунт Twitter від’єднано." -#: twittersettings.php:278 twittersettings.php:288 +#: twittersettings.php:283 twittersettings.php:293 msgid "Couldn't save Twitter preferences." msgstr "Не можу зберегти налаштування Twitter." -#: twittersettings.php:292 +#: twittersettings.php:297 msgid "Twitter preferences saved." msgstr "Налаштування Twitter збережено." diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index fe65d4397d..1d3bada155 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); 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-plugin-twitterbridge\n" @@ -364,19 +364,23 @@ msgstr "添加" msgid "Unexpected form submission." msgstr "未预料的表单提交。" -#: twittersettings.php:254 +#: twittersettings.php:251 +msgid "No Twitter connection to remove." +msgstr "" + +#: twittersettings.php:259 msgid "Couldn't remove Twitter user." msgstr "无法删除 Twitter 用户。" -#: twittersettings.php:258 +#: twittersettings.php:263 msgid "Twitter account disconnected." msgstr "已取消 Twitter 帐号关联。" -#: twittersettings.php:278 twittersettings.php:288 +#: twittersettings.php:283 twittersettings.php:293 msgid "Couldn't save Twitter preferences." msgstr "无法保存 Twitter 参数设置。" -#: twittersettings.php:292 +#: twittersettings.php:297 msgid "Twitter preferences saved." msgstr "已保存 Twitter 参数设置。" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index 7e0bc3114b..5a2b2f7364 100644 --- a/plugins/UserFlag/locale/UserFlag.pot +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..515c2a0a12 --- /dev/null +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -0,0 +1,114 @@ +# Translation of StatusNet - UserFlag to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:34+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-04 23:11:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Profils marqués" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Modérer" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Marqué par %1$s et %2$d autre" +msgstr[1] "Marqué par %1$s et %2$d autres" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Marqué par %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "Déjà marqué." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Marqué pour vérification" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Marqué" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Cette extension permet de marquer des profils pour vérification et de " +"vérifier des profils marqués." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Impossible de supprimer les marquages pour le profil « %s »." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Marquages supprimés" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Effacé" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Marquer" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Marquer le profil pour vérification." + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Impossible de marquer le profil « %d » pour vérification." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Effacer" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Effacer tous les marquages" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index 3991568f83..7b7a995f2e 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..35af6e32ae --- /dev/null +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:38+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:33+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: UserLimitPlugin.php:89 +msgid "Limit the number of users who can register." +msgstr "Batasi jumlah pengguna yang boleh mendaftar." diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index c9282d1747..a78afd38f7 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..bd3cee2c12 --- /dev/null +++ b/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - WikiHashtags to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:39+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:33+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Memperoleh deskripsi tagar dari WikiHashtags." diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index fffb3ac243..94e2b83146 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index e38f5c845e..2d3f75dc26 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..ce6731528f --- /dev/null +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Indonesian (Bahasa Indonesia) +# Expored from translatewiki.net +# +# Author: Farras +# -- +# 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-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:40+0000\n" +"Language-Team: Indonesian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:57:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: id\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Gunakan tembolok variabel XCache " +"untuk menembolokkan hasil pencarian." diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 053834cde2..7dd976069b 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index d26c5128a8..cc8c92b503 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" +"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"PO-Revision-Date: 2010-10-09 14:08:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-04 23:11:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -241,24 +241,24 @@ msgstr "Attente..." #: lib/yammerprogressform.php:146 msgid "Reset import state" -msgstr "" +msgstr "Réinitialiser l’état de l’import" #: lib/yammerprogressform.php:151 msgid "Pause import" -msgstr "" +msgstr "Mettre l’import en pause" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "L’erreur « %s » est survenue" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "En pause" #: lib/yammerprogressform.php:165 msgid "Abort import" -msgstr "" +msgstr "Abandonner l’import" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -279,4 +279,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Mis en pause depuis le panneau d’administration" From 1cd60579f5ac99a2c8bfb12d35093f5c74f14b04 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 11 Oct 2010 12:52:32 -0700 Subject: [PATCH 063/112] Ticket #2811 use more consistent max limit for OAuth application registration descriptions; now using the field max of 255 rather than $config['site']['textlimit'] as fallback if $config['application']['desclimit'] is unset or out of bounds. --- classes/Oauth_application.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/classes/Oauth_application.php b/classes/Oauth_application.php index e81706104e..f1d4fb7a6f 100644 --- a/classes/Oauth_application.php +++ b/classes/Oauth_application.php @@ -46,12 +46,19 @@ class Oauth_application extends Memcached_DataObject static function maxDesc() { - $desclimit = common_config('application', 'desclimit'); - // null => use global limit (distinct from 0!) - if (is_null($desclimit)) { - $desclimit = common_config('site', 'textlimit'); + // This used to default to textlimit or allow unlimited descriptions, + // but this isn't part of a notice and the field's limited to 255 chars + // in the DB, so those seem silly. + // + // Now just defaulting to 255 max unless a smaller application desclimit + // is actually set. Setting to 0 will use the maximum. + $max = 255; + $desclimit = intval(common_config('application', 'desclimit')); + if ($desclimit > 0 && $desclimit < $max) { + return $desclimit; + } else { + return $max; } - return $desclimit; } static function descriptionTooLong($desc) From a77bc113269e88d264075d331570dccf662b9640 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 12 Oct 2010 12:25:34 -0700 Subject: [PATCH 064/112] Output a log message when issuing a request token --- actions/apioauthrequesttoken.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/actions/apioauthrequesttoken.php b/actions/apioauthrequesttoken.php index 825460f93c..478d2dbfc4 100644 --- a/actions/apioauthrequesttoken.php +++ b/actions/apioauthrequesttoken.php @@ -100,6 +100,16 @@ class ApiOauthRequestTokenAction extends ApiOauthAction // check signature and issue a new request token $token = $server->fetch_request_token($req); + common_log( + LOG_INFO, + sprintf( + "API OAuth - Issued request token %s for consumer %s with oauth_callback %s", + $token->key, + $req->get_parameter('oauth_consumer_key'), + "'" . $req->get_parameter('oauth_callback') ."'" + ) + ); + // return token to the client $this->showRequestToken($token); From f4f16af8ac6c2bb1d5561bd85b4908fd3f9e1dbb Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 12 Oct 2010 15:49:20 -0700 Subject: [PATCH 065/112] Add a basic group deletion for moderator users. --- actions/deletegroup.php | 226 ++++++++++++++++++++++++++++++++++++++++ actions/showgroup.php | 6 ++ classes/Profile.php | 1 + lib/deletegroupform.php | 123 ++++++++++++++++++++++ lib/right.php | 1 + lib/router.php | 2 +- 6 files changed, 358 insertions(+), 1 deletion(-) create mode 100644 actions/deletegroup.php create mode 100644 lib/deletegroupform.php diff --git a/actions/deletegroup.php b/actions/deletegroup.php new file mode 100644 index 0000000000..acb309e1df --- /dev/null +++ b/actions/deletegroup.php @@ -0,0 +1,226 @@ +. + * + * @category Group + * @package StatusNet + * @author Evan Prodromou + * @author Brion Vibber + * @copyright 2008-2010 StatusNet, Inc. + * @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); +} + +/** + * Delete a group + * + * This is the action for deleting a group. + * + * @category Group + * @package StatusNet + * @author Evan Prodromou + * @author Brion Vibber + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * @fixme merge more of this code with related variants + */ + +class DeletegroupAction extends RedirectingAction +{ + var $group = null; + + /** + * Prepare to run + * + * @fixme merge common setup code with other group actions + * @fixme allow group admins to delete their own groups + */ + + function prepare($args) + { + parent::prepare($args); + + if (!common_logged_in()) { + $this->clientError(_('You must be logged in to delete a group.')); + return false; + } + + $nickname_arg = $this->trimmed('nickname'); + $id = intval($this->arg('id')); + if ($id) { + $this->group = User_group::staticGet('id', $id); + } else if ($nickname_arg) { + $nickname = common_canonical_nickname($nickname_arg); + + // Permanent redirect on non-canonical nickname + + if ($nickname_arg != $nickname) { + $args = array('nickname' => $nickname); + common_redirect(common_local_url('leavegroup', $args), 301); + return false; + } + + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); + } else { + $this->clientError(_('No nickname or ID.'), 404); + return false; + } + + if (!$this->group) { + $this->clientError(_('No such group.'), 404); + return false; + } + + $cur = common_current_user(); + if (!$cur->hasRight(Right::DELETEGROUP)) { + $this->clientError(_('You are not allowed to delete this group.'), 403); + return false; + } + + return true; + } + + /** + * Handle the request + * + * On POST, delete the group. + * + * @param array $args unused + * + * @return void + */ + + function handle($args) + { + parent::handle($args); + if ($_SERVER['REQUEST_METHOD'] == 'POST') { + if ($this->arg('no')) { + $this->returnToPrevious(); + return; + } elseif ($this->arg('yes')) { + $this->handlePost(); + return; + } + } + $this->showPage(); + } + + function handlePost() + { + $cur = common_current_user(); + + try { + if (Event::handle('StartDeleteGroup', array($this->group))) { + $this->group->delete(); + Event::handle('EndDeleteGroup', array($this->group)); + } + } catch (Exception $e) { + $this->serverError(sprintf(_('Could not delete group %2$s.'), + $this->group->nickname)); + } + + if ($this->boolean('ajax')) { + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, sprintf(_('Deleted group %2$s'), + $this->group->nickname)); + $this->elementEnd('head'); + $this->elementStart('body'); + // @fixme add a sensible AJAX response form! + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + // @fixme if we could direct to the page on which this group + // would have shown... that would be awesome + common_redirect(common_local_url('groups'), + 303); + } + } + + function title() { + return _('Delete group'); + } + + function showContent() { + $this->areYouSureForm(); + } + + /** + * Confirm with user. + * Ripped from DeleteuserAction + * + * Shows a confirmation form. + * + * @fixme refactor common code for things like this + * @return void + */ + function areYouSureForm() + { + $id = $this->group->id; + $this->elementStart('form', array('id' => 'deletegroup-' . $id, + 'method' => 'post', + 'class' => 'form_settings form_entity_block', + 'action' => common_local_url('deletegroup', array('id' => $this->group->id)))); + $this->elementStart('fieldset'); + $this->hidden('token', common_session_token()); + $this->element('legend', _('Delete group')); + if (Event::handle('StartDeleteGroupForm', array($this, $this->group))) { + $this->element('p', null, + _('Are you sure you want to delete this group? '. + 'This will clear all data about the group from the '. + 'database, without a backup. ' . + 'Public posts to this group will still appear in ' . + 'individual timelines.')); + foreach ($this->args as $k => $v) { + if (substr($k, 0, 9) == 'returnto-') { + $this->hidden($k, $v); + } + } + Event::handle('EndDeleteGroupForm', array($this, $this->group)); + } + $this->submit('form_action-no', + // TRANS: Button label on the delete group form. + _m('BUTTON','No'), + 'submit form_action-primary', + 'no', + // TRANS: Submit button title for 'No' when deleting a group. + _('Do not delete this group')); + $this->submit('form_action-yes', + // TRANS: Button label on the delete group form. + _m('BUTTON','Yes'), + 'submit form_action-secondary', + 'yes', + // TRANS: Submit button title for 'Yes' when deleting a group. + _('Delete this group')); + $this->elementEnd('fieldset'); + $this->elementEnd('form'); + } +} \ No newline at end of file diff --git a/actions/showgroup.php b/actions/showgroup.php index 17c37e4d79..9a12bafaf6 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -316,6 +316,12 @@ class ShowgroupAction extends GroupDesignAction Event::handle('EndGroupSubscribe', array($this, $this->group)); } $this->elementEnd('li'); + if ($cur->hasRight(Right::DELETEGROUP)) { + $this->elementStart('li', 'entity_delete'); + $df = new DeleteGroupForm($this, $this->group); + $df->show(); + $this->elementEnd('li'); + } $this->elementEnd('ul'); $this->elementEnd('div'); } diff --git a/classes/Profile.php b/classes/Profile.php index 3844077e62..12ce5d9b6c 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -854,6 +854,7 @@ class Profile extends Memcached_DataObject case Right::SANDBOXUSER: case Right::SILENCEUSER: case Right::DELETEUSER: + case Right::DELETEGROUP: $result = $this->hasRole(Profile_role::MODERATOR); break; case Right::CONFIGURESITE: diff --git a/lib/deletegroupform.php b/lib/deletegroupform.php new file mode 100644 index 0000000000..9d8012d33b --- /dev/null +++ b/lib/deletegroupform.php @@ -0,0 +1,123 @@ +. + * + * @category Form + * @package StatusNet + * @author Evan Prodromou + * @author Sarven Capadisli + * @author Brion Vibber + * @copyright 2009, 2010 StatusNet, Inc. + * @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')) { + exit(1); +} + +/** + * Form for deleting a group + * + * @category Form + * @package StatusNet + * @author Evan Prodromou + * @author Sarven Capadisli + * @author Brion Vibber + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * + * @see UnsubscribeForm + * @fixme merge a bunch of this stuff with similar form types to reduce boilerplate + */ + +class DeleteGroupForm extends Form +{ + /** + * group for user to delete + */ + + var $group = null; + + /** + * Constructor + * + * @param HTMLOutputter $out output channel + * @param group $group group to join + */ + + function __construct($out=null, $group=null) + { + parent::__construct($out); + + $this->group = $group; + } + + /** + * ID of the form + * + * @return string ID of the form + */ + + function id() + { + return 'group-delete-' . $this->group->id; + } + + /** + * class of the form + * + * @return string of the form class + */ + + function formClass() + { + return 'form_group_delete'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('deletegroup', + array('id' => $this->group->id)); + } + + function formData() + { + $this->out->hidden($this->id() . '-returnto-action', 'groupbyid', 'returnto-action'); + $this->out->hidden($this->id() . '-returnto-id', $this->group->id, 'returnto-id'); + } + + /** + * Action elements + * + * @return void + */ + + function formActions() + { + $this->out->submit('submit', _('Delete')); + } +} diff --git a/lib/right.php b/lib/right.php index deb451fde9..bacbea5f29 100644 --- a/lib/right.php +++ b/lib/right.php @@ -60,5 +60,6 @@ class Right const MAKEGROUPADMIN = 'makegroupadmin'; const GRANTROLE = 'grantrole'; const REVOKEROLE = 'revokerole'; + const DELETEGROUP = 'deletegroup'; } diff --git a/lib/router.php b/lib/router.php index 00b2993734..b1cc8d5294 100644 --- a/lib/router.php +++ b/lib/router.php @@ -276,7 +276,7 @@ class Router $m->connect('group/new', array('action' => 'newgroup')); - foreach (array('edit', 'join', 'leave') as $v) { + foreach (array('edit', 'join', 'leave', 'delete') as $v) { $m->connect('group/:nickname/'.$v, array('action' => $v.'group'), array('nickname' => '[a-zA-Z0-9]+')); From 3579ccac8e2b334d4caef57ffe5b01be21a5cf11 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 12 Oct 2010 16:13:07 -0700 Subject: [PATCH 066/112] Cascading deletion for user_group; doesn't yet work properly with caching. --- classes/User_group.php | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/classes/User_group.php b/classes/User_group.php index cfdcef2906..fabb8e8d5c 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -547,4 +547,36 @@ class User_group extends Memcached_DataObject $group->query('COMMIT'); return $group; } + + /** + * Handle cascading deletion, on the model of notice and profile. + * + * Pretty sure some caching won't get handled properly here. + */ + function delete() + { + if ($this->id) { + $related = array('Group_inbox', + 'Group_alias', + 'Group_block', + 'Group_member', + 'Local_group', + 'Related_group', + ); + Event::handle('UserGroupDeleteRelated', array($this, &$related)); + + foreach ($related as $cls) { + $inst = new $cls(); + $inst->group_id = $this->id; + $inst->delete(); + } + + $inst = new Related_group(); + $inst->related_group_id = $this->id; + $inst->delete(); + } else { + common_log(LOG_WARN, "Ambiguous user_group->delete(); skipping related tables."); + } + parent::delete(); + } } From d8e06e66e9d4e3312f8d645a13680dc8046ca3a2 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 12 Oct 2010 16:19:53 -0700 Subject: [PATCH 067/112] Print a proper error message --- actions/apioauthaccesstoken.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/apioauthaccesstoken.php b/actions/apioauthaccesstoken.php index b8b188b1dc..663a7a2bb6 100644 --- a/actions/apioauthaccesstoken.php +++ b/actions/apioauthaccesstoken.php @@ -105,7 +105,7 @@ class ApiOauthAccessTokenAction extends ApiOauthAction common_log(LOG_WARNING, $msg); - print "Invalid request token or verifier."; + $this->clientError(_("Invalid request token or verifier.", 400, 'text')); } else { $this->showAccessToken($atok); From 5270e931311af0f644ebd4302833ad3bb89b81d4 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 12 Oct 2010 16:20:09 -0700 Subject: [PATCH 068/112] Spelling - OAuth not Oath --- lib/apioauthstore.php | 2 +- lib/connectsettingsaction.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 4b52ba1ba9..f3bf0b8576 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -101,7 +101,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore $result = $appUser->find(true); if (!empty($result)) { - common_debug("Oath app user found."); + common_debug("Ouath app user found."); } else { common_debug("Oauth app user not found. app id $app->id token $rt->tok"); return null; diff --git a/lib/connectsettingsaction.php b/lib/connectsettingsaction.php index bb2e86176a..325276c5fc 100644 --- a/lib/connectsettingsaction.php +++ b/lib/connectsettingsaction.php @@ -116,9 +116,9 @@ class ConnectSettingsNav extends Widget } $menu['oauthconnectionssettings'] = array( - // TRANS: Menu item for OAth connection settings. + // TRANS: Menu item for OuAth connection settings. _m('MENU','Connections'), - // TRANS: Tooltip for connected applications (Connections through OAth) menu item. + // TRANS: Tooltip for connected applications (Connections through OAuth) menu item. _('Authorized connected applications') ); From 112b6c40793a18262425ca039e4fe4a6eb68bce4 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 12 Oct 2010 16:29:13 -0700 Subject: [PATCH 069/112] Improve cache-friendliness of user_group->delete(). Doesn't clear all possible cached entries, but this should get the ones that matter most: lookups by id, nickname, and alias. This should ensure that if a group name gets reused as a new group or alias, it should work properly. There are some user-visible areas that aren't clear such as the 'top groups' lists on the GroupsAction sidebar; if a deleted group appears in those lists it'll go away within an hour when the cached query expires. --- classes/User_group.php | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/classes/User_group.php b/classes/User_group.php index fabb8e8d5c..1f70057852 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -551,29 +551,39 @@ class User_group extends Memcached_DataObject /** * Handle cascading deletion, on the model of notice and profile. * - * Pretty sure some caching won't get handled properly here. + * This should handle freeing up cached entries for the group's + * id, nickname, URI, and aliases. There may be other areas that + * are not de-cached in the UI, including the sidebar lists on + * GroupsAction */ function delete() { if ($this->id) { + // Safe to delete in bulk for now $related = array('Group_inbox', - 'Group_alias', 'Group_block', 'Group_member', - 'Local_group', - 'Related_group', - ); + 'Related_group'); Event::handle('UserGroupDeleteRelated', array($this, &$related)); - foreach ($related as $cls) { $inst = new $cls(); $inst->group_id = $this->id; $inst->delete(); } + // And related groups in the other direction... $inst = new Related_group(); $inst->related_group_id = $this->id; $inst->delete(); + + // Aliases and the local_group entry need to be cleared explicitly + // or we'll miss clearing some cache keys; that can make it hard + // to create a new group with one of those names or aliases. + $this->setAliases(array()); + $local = Local_group::staticGet('group_id', $this->id); + if ($local) { + $local->delete(); + } } else { common_log(LOG_WARN, "Ambiguous user_group->delete(); skipping related tables."); } From 2291d68e7019d04ae57f8cb408c42fc775a9a9ff Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 12 Oct 2010 17:54:42 -0700 Subject: [PATCH 070/112] Default to ssl in oauth tests examples config --- tests/oauth/oauth.ini.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/oauth/oauth.ini.sample b/tests/oauth/oauth.ini.sample index 16b747fe43..927620e2f8 100644 --- a/tests/oauth/oauth.ini.sample +++ b/tests/oauth/oauth.ini.sample @@ -1,5 +1,5 @@ ; Setup OAuth info here -apiroot = "http://YOURSTATUSNET/api" +apiroot = "https://YOURSTATUSNET/api" request_token_url = "/oauth/request_token" authorize_url = "/oauth/authorize" From bca215563ff7aaee5c253b3a55cadc3b02116ef9 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 13 Oct 2010 11:04:41 -0700 Subject: [PATCH 071/112] Clean up remote avatar temporary files if we fail before saving them into avatars directory (OMB core, OStatus, WikiHowProfile, YammerImport) --- lib/oauthstore.php | 19 +++++++---- plugins/OStatus/classes/Ostatus_profile.php | 33 +++++++++++-------- .../WikiHowProfile/WikiHowProfilePlugin.php | 31 +++++++++-------- plugins/YammerImport/lib/yammerimporter.php | 27 ++++++++------- 4 files changed, 65 insertions(+), 45 deletions(-) diff --git a/lib/oauthstore.php b/lib/oauthstore.php index 537667678b..1c8e725009 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -328,13 +328,18 @@ class StatusNetOAuthDataStore extends OAuthDataStore function add_avatar($profile, $url) { $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); - copy($url, $temp_filename); - $imagefile = new ImageFile($profile->id, $temp_filename); - $filename = Avatar::filename($profile->id, - image_type_to_extension($imagefile->type), - null, - common_timestamp()); - rename($temp_filename, Avatar::path($filename)); + try { + copy($url, $temp_filename); + $imagefile = new ImageFile($profile->id, $temp_filename); + $filename = Avatar::filename($profile->id, + image_type_to_extension($imagefile->type), + null, + common_timestamp()); + rename($temp_filename, Avatar::path($filename)); + } catch (Exception $e) { + unlink($temp_filename); + throw $e; + } return $profile->setOriginal($filename); } diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 47aee15f8a..03fcb71df0 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -1053,22 +1053,27 @@ class Ostatus_profile extends Memcached_DataObject // @fixme this should be better encapsulated // ripped from oauthstore.php (for old OMB client) $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); - if (!copy($url, $temp_filename)) { - throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); - } + try { + if (!copy($url, $temp_filename)) { + throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); + } - if ($this->isGroup()) { - $id = $this->group_id; - } else { - $id = $this->profile_id; + if ($this->isGroup()) { + $id = $this->group_id; + } else { + $id = $this->profile_id; + } + // @fixme should we be using different ids? + $imagefile = new ImageFile($id, $temp_filename); + $filename = Avatar::filename($id, + image_type_to_extension($imagefile->type), + null, + common_timestamp()); + rename($temp_filename, Avatar::path($filename)); + } catch (Exception $e) { + unlink($temp_filename); + throw $e; } - // @fixme should we be using different ids? - $imagefile = new ImageFile($id, $temp_filename); - $filename = Avatar::filename($id, - image_type_to_extension($imagefile->type), - null, - common_timestamp()); - rename($temp_filename, Avatar::path($filename)); // @fixme hardcoded chmod is lame, but seems to be necessary to // keep from accidentally saving images from command-line (queues) // that can't be read from web server, which causes hard-to-notice diff --git a/plugins/WikiHowProfile/WikiHowProfilePlugin.php b/plugins/WikiHowProfile/WikiHowProfilePlugin.php index fa683c4836..753dff5a37 100644 --- a/plugins/WikiHowProfile/WikiHowProfilePlugin.php +++ b/plugins/WikiHowProfile/WikiHowProfilePlugin.php @@ -174,20 +174,25 @@ class WikiHowProfilePlugin extends Plugin // @fixme this should be better encapsulated // ripped from OStatus via oauthstore.php (for old OMB client) $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); - if (!copy($url, $temp_filename)) { - throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); + try { + if (!copy($url, $temp_filename)) { + throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); + } + + $profile = $user->getProfile(); + $id = $profile->id; + // @fixme should we be using different ids? + + $imagefile = new ImageFile($id, $temp_filename); + $filename = Avatar::filename($id, + image_type_to_extension($imagefile->type), + null, + common_timestamp()); + rename($temp_filename, Avatar::path($filename)); + } catch (Exception $e) { + unlink($temp_filename); + throw $e; } - - $profile = $user->getProfile(); - $id = $profile->id; - // @fixme should we be using different ids? - - $imagefile = new ImageFile($id, $temp_filename); - $filename = Avatar::filename($id, - image_type_to_extension($imagefile->type), - null, - common_timestamp()); - rename($temp_filename, Avatar::path($filename)); $profile->setOriginal($filename); } } diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index 80cbcff8e7..93bc96d529 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -436,18 +436,23 @@ class YammerImporter // @fixme this should be better encapsulated // ripped from oauthstore.php (for old OMB client) $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); - if (!copy($url, $temp_filename)) { - throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); - } + try { + if (!copy($url, $temp_filename)) { + throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); + } - $id = $dest->id; - // @fixme should we be using different ids? - $imagefile = new ImageFile($id, $temp_filename); - $filename = Avatar::filename($id, - image_type_to_extension($imagefile->type), - null, - common_timestamp()); - rename($temp_filename, Avatar::path($filename)); + $id = $dest->id; + // @fixme should we be using different ids? + $imagefile = new ImageFile($id, $temp_filename); + $filename = Avatar::filename($id, + image_type_to_extension($imagefile->type), + null, + common_timestamp()); + rename($temp_filename, Avatar::path($filename)); + } catch (Exception $e) { + unlink($temp_filename); + throw $e; + } // @fixme hardcoded chmod is lame, but seems to be necessary to // keep from accidentally saving images from command-line (queues) // that can't be read from web server, which causes hard-to-notice From 76038fe20c7ebd732ffbc659827ab812ee5a4b6e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 13 Oct 2010 22:44:06 -0400 Subject: [PATCH 072/112] better deletion of related objects in User_group::delete() --- classes/User_group.php | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/classes/User_group.php b/classes/User_group.php index 1f70057852..7d6e219148 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -559,16 +559,27 @@ class User_group extends Memcached_DataObject function delete() { if ($this->id) { + // Safe to delete in bulk for now + $related = array('Group_inbox', 'Group_block', 'Group_member', 'Related_group'); + Event::handle('UserGroupDeleteRelated', array($this, &$related)); + foreach ($related as $cls) { + $inst = new $cls(); $inst->group_id = $this->id; - $inst->delete(); + + if ($inst->find()) { + while ($inst->fetch()) { + $dup = clone($inst); + $dup->delete(); + } + } } // And related groups in the other direction... @@ -584,6 +595,10 @@ class User_group extends Memcached_DataObject if ($local) { $local->delete(); } + + // blow the cached ids + self::blow('user_group:notice_ids:%d', $this->id); + } else { common_log(LOG_WARN, "Ambiguous user_group->delete(); skipping related tables."); } From cef10c7167dd9c6183b52a09dc9baefbf0b433cc Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 00:16:23 -0400 Subject: [PATCH 073/112] add static method StatusNet::isHTTPS() --- lib/statusnet.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/lib/statusnet.php b/lib/statusnet.php index 7cb831696b..301994508d 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -169,7 +169,6 @@ class StatusNet return $sites; } - /** * Fire initialization events for all instantiated plugins. */ @@ -220,7 +219,7 @@ class StatusNet { return self::$is_api; } - + public function setApi($mode) { self::$is_api = $mode; @@ -368,6 +367,18 @@ class StatusNet } } } + + /** + * Are we running from the web with HTTPS? + * + * @return boolean true if we're running with HTTPS; else false + */ + + static function isHTTPS() + { + // There are some exceptions to this; add them here! + return $_SERVER['HTTPS']; + } } class NoConfigException extends Exception From 40c64388e6b0a768dcfa4aa003ba5114be070c2a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 00:31:13 -0400 Subject: [PATCH 074/112] try and show an SSL image for the creative commons image --- lib/action.php | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/lib/action.php b/lib/action.php index 008f29d03e..b05770b152 100644 --- a/lib/action.php +++ b/lib/action.php @@ -894,8 +894,26 @@ class Action extends HTMLOutputter // lawsuit case 'cc': // fall through default: $this->elementStart('p'); + + $image = common_config('license', 'image'); + $sslimage = common_config('license', 'sslimage'); + + if (StatusNet::isHTTPS()) { + if (!empty($sslimage)) { + $url = $sslimage; + } else if (preg_match('#^http://i.creativecommons.org/#', $image)) { + // CC support HTTPS on their images + $url = preg_replace('/^http/', 'https', $image); + } else { + // Better to show mixed content than no content + $url = $image; + } + } else { + $url = $image; + } + $this->element('img', array('id' => 'license_cc', - 'src' => common_config('license', 'image'), + 'src' => $url, 'alt' => common_config('license', 'title'), 'width' => '80', 'height' => '15')); From d91f894ccbeed6612727c3fb3bffa3504a14ecea Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 00:46:32 -0400 Subject: [PATCH 075/112] try to show HTTPS-encrypted theme files for HTTPS-encrypted pages --- lib/theme.php | 93 ++++++++++++++++++++++++++++++--------------------- 1 file changed, 55 insertions(+), 38 deletions(-) diff --git a/lib/theme.php b/lib/theme.php index 992fce870e..500e168fb1 100644 --- a/lib/theme.php +++ b/lib/theme.php @@ -38,7 +38,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * Themes are directories with some expected sub-directories and files * in them. They're found in either local/theme (for locally-installed themes) * or theme/ subdir of installation dir. - * + * * Note that the 'local' directory can be overridden as $config['local']['path'] * and $config['local']['dir'] etc. * @@ -104,56 +104,73 @@ class Theme /** * Build a full URL to the given theme's base directory, possibly * using an offsite theme server path. - * + * * @param string $group configuration section name to pull paths from * @param string $fallbackSubdir default subdirectory under INSTALLDIR * @param string $name theme name - * + * * @return string URL - * + * * @todo consolidate code with that for other customizable paths */ protected function relativeThemePath($group, $fallbackSubdir, $name) { - $path = common_config($group, 'path'); + if (StatusNet::isHTTPS()) { - if (empty($path)) { - $path = common_config('site', 'path') . '/'; - if ($fallbackSubdir) { - $path .= $fallbackSubdir . '/'; - } - } + $sslserver = common_config($group, 'sslserver'); - if ($path[strlen($path)-1] != '/') { - $path .= '/'; - } - - if ($path[0] != '/') { - $path = '/'.$path; - } - - $server = common_config($group, 'server'); - - if (empty($server)) { - $server = common_config('site', 'server'); - } - - $ssl = common_config($group, 'ssl'); - - if (is_null($ssl)) { // null -> guess - if (common_config('site', 'ssl') == 'always' && - !common_config($group, 'server')) { - $ssl = true; + if (empty($sslserver)) { + $server = common_config('site', 'server'); + $path = common_config('site', 'path') . '/'; + if ($fallbackSubdir) { + $path .= $fallbackSubdir . '/'; + } } else { - $ssl = false; + $server = $sslserver; + $path = common_config($group, 'sslpath'); + if (empty($path)) { + $path = common_config($group, 'path'); + } } + + if ($path[strlen($path)-1] != '/') { + $path .= '/'; + } + + if ($path[0] != '/') { + $path = '/'.$path; + } + + return 'https://'.$server.$path.$name; + + } else { + + $path = common_config($group, 'path'); + + if (empty($path)) { + $path = common_config('site', 'path') . '/'; + if ($fallbackSubdir) { + $path .= $fallbackSubdir . '/'; + } + } + + if ($path[strlen($path)-1] != '/') { + $path .= '/'; + } + + if ($path[0] != '/') { + $path = '/'.$path; + } + + $server = common_config($group, 'server'); + + if (empty($server)) { + $server = common_config('site', 'server'); + } + + return 'http://'.$server.$path.$name; } - - $protocol = ($ssl) ? 'https' : 'http'; - - $path = $protocol . '://'.$server.$path.$name; - return $path; } /** @@ -221,7 +238,7 @@ class Theme /** * Pull data from the theme's theme.ini file. * @fixme calling getFile will fall back to default theme, this may be unsafe. - * + * * @return associative array of strings */ function getMetadata() From ca0323d01b9c38fe864c8f902d770061e893708b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 00:50:26 -0400 Subject: [PATCH 076/112] use HTTPS for favicon.ico if page is HTTPS --- lib/action.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/action.php b/lib/action.php index b05770b152..fcac0e0a7f 100644 --- a/lib/action.php +++ b/lib/action.php @@ -175,8 +175,9 @@ class Action extends HTMLOutputter // lawsuit $this->element('link', array('rel' => 'shortcut icon', 'href' => Theme::path('favicon.ico'))); } else { + // favicon.ico should be HTTPS if the rest of the page is $this->element('link', array('rel' => 'shortcut icon', - 'href' => common_path('favicon.ico'))); + 'href' => common_path('favicon.ico', StatusNet::isHTTPS()))); } if (common_config('site', 'mobile')) { From 74c5aa8f9a37b76f6bee571dd9fccf6ac4fc9e90 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 00:59:53 -0400 Subject: [PATCH 077/112] consolidate some theme path code between ssl and non-ssl --- lib/theme.php | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/lib/theme.php b/lib/theme.php index 500e168fb1..669d9a19fd 100644 --- a/lib/theme.php +++ b/lib/theme.php @@ -134,15 +134,7 @@ class Theme } } - if ($path[strlen($path)-1] != '/') { - $path .= '/'; - } - - if ($path[0] != '/') { - $path = '/'.$path; - } - - return 'https://'.$server.$path.$name; + $protocol = 'https'; } else { @@ -155,22 +147,24 @@ class Theme } } - if ($path[strlen($path)-1] != '/') { - $path .= '/'; - } - - if ($path[0] != '/') { - $path = '/'.$path; - } - $server = common_config($group, 'server'); if (empty($server)) { $server = common_config('site', 'server'); } - return 'http://'.$server.$path.$name; + $protocol = 'http'; } + + if ($path[strlen($path)-1] != '/') { + $path .= '/'; + } + + if ($path[0] != '/') { + $path = '/'.$path; + } + + return $protocol.'://'.$server.$path.$name; } /** From ac63f8baae281bff47f325005b6621dc61a1a71b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 01:00:13 -0400 Subject: [PATCH 078/112] show HTTPS urls for JavaScript if HTTPS used for page --- lib/htmloutputter.php | 70 ++++++++++++++++++++++++++----------------- 1 file changed, 42 insertions(+), 28 deletions(-) diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 44b0296046..8d3e815d33 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -352,22 +352,55 @@ class HTMLOutputter extends XMLOutputter */ function script($src, $type='text/javascript') { - if(Event::handle('StartScriptElement', array($this,&$src,&$type))) { + if (Event::handle('StartScriptElement', array($this,&$src,&$type))) { $url = parse_url($src); - if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) - { + if (empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) { + + // XXX: this seems like a big assumption + if (strpos($src, 'plugins/') === 0 || strpos($src, 'local/') === 0) { $src = common_path($src) . '?version=' . STATUSNET_VERSION; - }else{ + } else { - $path = common_config('javascript', 'path'); + if (StatusNet::isHTTPS()) { - if (empty($path)) { - $path = common_config('site', 'path') . '/js/'; + $sslserver = common_config('javascript', 'sslserver'); + + if (empty($sslserver)) { + $server = common_config('site', 'server'); + $path = common_config('site', 'path') . '/js/'; + } else { + $server = $sslserver; + $path = common_config('javascript', 'sslpath'); + if (empty($path)) { + $path = common_config('javascript', 'path'); + } + } + + $protocol = 'https'; + + } else { + + $path = common_config('javascript', 'path'); + + if (empty($path)) { + $path = common_config('site', 'path') . '/'; + if ($fallbackSubdir) { + $path .= $fallbackSubdir . '/'; + } + } + + $server = common_config('javascript', 'server'); + + if (empty($server)) { + $server = common_config('site', 'server'); + } + + $protocol = 'http'; } if ($path[strlen($path)-1] != '/') { @@ -378,32 +411,13 @@ class HTMLOutputter extends XMLOutputter $path = '/'.$path; } - $server = common_config('javascript', 'server'); - - if (empty($server)) { - $server = common_config('site', 'server'); - } - - $ssl = common_config('javascript', 'ssl'); - - if (is_null($ssl)) { // null -> guess - if (common_config('site', 'ssl') == 'always' && - !common_config('javascript', 'server')) { - $ssl = true; - } else { - $ssl = false; - } - } - - $protocol = ($ssl) ? 'https' : 'http'; - $src = $protocol.'://'.$server.$path.$src . '?version=' . STATUSNET_VERSION; } } $this->element('script', array('type' => $type, - 'src' => $src), - ' '); + 'src' => $src), + ' '); Event::handle('EndScriptElement', array($this,$src,$type)); } From 7436e5d13e6bc242a93e2f6dc561c59f88de60ee Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 01:09:02 -0400 Subject: [PATCH 079/112] use HTTPS for scripts and stylesheets if the current page is HTTPS --- lib/htmloutputter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 8d3e815d33..f01f1814f0 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -362,7 +362,7 @@ class HTMLOutputter extends XMLOutputter if (strpos($src, 'plugins/') === 0 || strpos($src, 'local/') === 0) { - $src = common_path($src) . '?version=' . STATUSNET_VERSION; + $src = common_path($src, StatusNet::isHTTPS()) . '?version=' . STATUSNET_VERSION; } else { @@ -467,7 +467,7 @@ class HTMLOutputter extends XMLOutputter if(file_exists(Theme::file($src,$theme))){ $src = Theme::path($src, $theme); }else{ - $src = common_path($src); + $src = common_path($src, StatusNet::isHTTPS()); } $src.= '?version=' . STATUSNET_VERSION; } From aafd95dc0c487fd9aaba3ce991d001acc0d2c6eb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 01:18:19 -0400 Subject: [PATCH 080/112] Design::url() will use HTTPS if page is HTTPS --- classes/Design.php | 51 ++++++++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 20 deletions(-) diff --git a/classes/Design.php b/classes/Design.php index ff44e01096..50712ce8b5 100644 --- a/classes/Design.php +++ b/classes/Design.php @@ -139,7 +139,37 @@ class Design extends Memcached_DataObject static function url($filename) { - $path = common_config('background', 'path'); + if (StatusNet::isHTTPS()) { + + $sslserver = common_config('background', 'sslserver'); + + if (empty($sslserver)) { + // XXX: this assumes that background dir == site dir + /background/ + // not true if there's another server + $server = common_config('site', 'server'); + $path = common_config('site', 'path') . '/background/'; + } else { + $server = $sslserver; + $path = common_config('background', 'sslpath'); + if (empty($path)) { + $path = common_config('background', 'path'); + } + } + + $protocol = 'https'; + + } else { + + $path = common_config('background', 'path'); + + $server = common_config('background', 'server'); + + if (empty($server)) { + $server = common_config('site', 'server'); + } + + $protocol = 'http'; + } if ($path[strlen($path)-1] != '/') { $path .= '/'; @@ -149,25 +179,6 @@ class Design extends Memcached_DataObject $path = '/'.$path; } - $server = common_config('background', 'server'); - - if (empty($server)) { - $server = common_config('site', 'server'); - } - - $ssl = common_config('background', 'ssl'); - - if (is_null($ssl)) { // null -> guess - if (common_config('site', 'ssl') == 'always' && - !common_config('background', 'server')) { - $ssl = true; - } else { - $ssl = false; - } - } - - $protocol = ($ssl) ? 'https' : 'http'; - return $protocol.'://'.$server.$path.$filename; } From 7fb765b2cb0be47236ad3fbf625f908dd5da8f47 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 01:23:12 -0400 Subject: [PATCH 081/112] document sslserver and sslpath configuration options --- README | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README b/README index c4d529f19d..f56c3a7994 100644 --- a/README +++ b/README @@ -1111,6 +1111,9 @@ path: Path part of theme URLs, before the theme name. Relative to the which means to use the site path + '/theme'. ssl: Whether to use SSL for theme elements. Default is null, which means guess based on site SSL settings. +sslserver: SSL server to use when page is HTTPS-encrypted. If + unspecified, site ssl server and so on will be used. +sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. javascript ---------- @@ -1122,6 +1125,9 @@ path: Path part of Javascript URLs. Defaults to null, which means to use the site path + '/js/'. ssl: Whether to use SSL for JavaScript files. Default is null, which means guess based on site SSL settings. +sslserver: SSL server to use when page is HTTPS-encrypted. If + unspecified, site ssl server and so on will be used. +sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. xmpp ---- @@ -1405,8 +1411,9 @@ dir: directory to write backgrounds too. Default is '/background/' subdir of install dir. path: path to backgrounds. Default is sub-path of install path; note that you may need to change this if you change site-path too. -ssl: Whether or not to use HTTPS for background files. Defaults to - null, meaning to guess from site-wide SSL settings. +sslserver: SSL server to use when page is HTTPS-encrypted. If + unspecified, site ssl server and so on will be used. +sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. ping ---- From 97a7fb246c8de9a2cf1bfc38ca275a13e9c40f58 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 01:35:11 -0400 Subject: [PATCH 082/112] correctly use sslserver if it is set --- classes/Design.php | 7 ++++++- lib/htmloutputter.php | 7 ++++++- lib/theme.php | 7 ++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/classes/Design.php b/classes/Design.php index 50712ce8b5..a8fdb72191 100644 --- a/classes/Design.php +++ b/classes/Design.php @@ -146,7 +146,12 @@ class Design extends Memcached_DataObject if (empty($sslserver)) { // XXX: this assumes that background dir == site dir + /background/ // not true if there's another server - $server = common_config('site', 'server'); + if (is_string(common_config('site', 'sslserver')) && + mb_strlen(common_config('site', 'sslserver')) > 0) { + $server = common_config('site', 'sslserver'); + } else if (common_config('site', 'server')) { + $server = common_config('site', 'server'); + } $path = common_config('site', 'path') . '/background/'; } else { $server = $sslserver; diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index f01f1814f0..4a1b7db472 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -371,7 +371,12 @@ class HTMLOutputter extends XMLOutputter $sslserver = common_config('javascript', 'sslserver'); if (empty($sslserver)) { - $server = common_config('site', 'server'); + if (is_string(common_config('site', 'sslserver')) && + mb_strlen(common_config('site', 'sslserver')) > 0) { + $server = common_config('site', 'sslserver'); + } else if (common_config('site', 'server')) { + $server = common_config('site', 'server'); + } $path = common_config('site', 'path') . '/js/'; } else { $server = $sslserver; diff --git a/lib/theme.php b/lib/theme.php index 669d9a19fd..95b7c1de4b 100644 --- a/lib/theme.php +++ b/lib/theme.php @@ -121,7 +121,12 @@ class Theme $sslserver = common_config($group, 'sslserver'); if (empty($sslserver)) { - $server = common_config('site', 'server'); + if (is_string(common_config('site', 'sslserver')) && + mb_strlen(common_config('site', 'sslserver')) > 0) { + $server = common_config('site', 'sslserver'); + } else if (common_config('site', 'server')) { + $server = common_config('site', 'server'); + } $path = common_config('site', 'path') . '/'; if ($fallbackSubdir) { $path .= $fallbackSubdir . '/'; From 23ac9616245f8dfb11e2184f739059d22838010c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 11:06:57 -0400 Subject: [PATCH 083/112] Show Webfinger, URI and profile page as subject and aliases --- plugins/OStatus/lib/xrdaction.php | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/plugins/OStatus/lib/xrdaction.php b/plugins/OStatus/lib/xrdaction.php index d1488dbdec..371c110800 100644 --- a/plugins/OStatus/lib/xrdaction.php +++ b/plugins/OStatus/lib/xrdaction.php @@ -36,7 +36,8 @@ class XrdAction extends Action function handle() { - $nick = $this->user->nickname; + $nick = $this->user->nickname; + $profile = $this->user->getProfile(); if (empty($this->xrd)) { $xrd = new XRD(); @@ -47,10 +48,28 @@ class XrdAction extends Action if (empty($xrd->subject)) { $xrd->subject = Discovery::normalize($this->uri); } - $xrd->alias[] = $this->user->uri; + + // Possible aliases for the user + + $uris = array($this->user->uri, $profile->profileurl); + + // FIXME: Webfinger generation code should live somewhere on its own + + $path = common_config('site', 'path'); + + if (empty($path)) { + $uris[] = sprintf('acct:%s@%s', $nick, common_config('site', 'server')); + } + + foreach ($uris as $uri) { + if ($uri != $xrd->subject) { + $xrd->alias[] = $uri; + } + } + $xrd->links[] = array('rel' => Discovery::PROFILEPAGE, 'type' => 'text/html', - 'href' => $this->user->uri); + 'href' => $profile->profileurl); $xrd->links[] = array('rel' => Discovery::UPDATESFROM, 'href' => common_local_url('ApiTimelineUser', @@ -66,7 +85,7 @@ class XrdAction extends Action // XFN $xrd->links[] = array('rel' => 'http://gmpg.org/xfn/11', 'type' => 'text/html', - 'href' => $this->user->uri); + 'href' => $profile->profileurl); // FOAF $xrd->links[] = array('rel' => 'describedby', 'type' => 'application/rdf+xml', From ecb582e41900b9a8fe0cc01eac9c68b4da61d734 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 11:07:37 -0400 Subject: [PATCH 084/112] accept profile URL as a LRDD identifier --- plugins/OStatus/actions/userxrd.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/OStatus/actions/userxrd.php b/plugins/OStatus/actions/userxrd.php index c9b1d0a5be..575a07c409 100644 --- a/plugins/OStatus/actions/userxrd.php +++ b/plugins/OStatus/actions/userxrd.php @@ -46,7 +46,15 @@ class UserxrdAction extends XrdAction } } else { $this->user = User::staticGet('uri', $this->uri); + if (empty($this->user)) { + // try and get it by profile url + $profile = Profile::staticGet('profileurl', $this->uri); + if (!empty($profile)) { + $this->user = User::staticGet('id', $profile->id); + } + } } + if (!$this->user) { $this->clientError(_m('No such user.'), 404); return false; From b31c49c5d47e04c59bbbcf878ffd307fbf60b533 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 14:22:17 -0400 Subject: [PATCH 085/112] Make HTTPS urls in File::url() if necessary --- README | 5 ++++ classes/File.php | 60 +++++++++++++++++++++++++++++++----------------- lib/default.php | 2 ++ 3 files changed, 46 insertions(+), 21 deletions(-) diff --git a/README b/README index f56c3a7994..70491c4c35 100644 --- a/README +++ b/README @@ -1355,6 +1355,11 @@ ssl: whether to use HTTPS for file URLs. Defaults to null, meaning to filecommand: command to use for determining the type of a file. May be skipped if fileinfo extension is installed. Defaults to '/usr/bin/file'. +sslserver: if specified, this server will be used when creating HTTPS + URLs. Otherwise, the site SSL server will be used, with /file/ path. +sslpath: if this and the sslserver are specified, this path will be used + when creating HTTPS URLs. Otherwise, the attachments|path value + will be used. group ----- diff --git a/classes/File.php b/classes/File.php index d457968b5e..da029e39b6 100644 --- a/classes/File.php +++ b/classes/File.php @@ -261,22 +261,41 @@ class File extends Memcached_DataObject // TRANS: Client exception thrown if a file upload does not have a valid name. throw new ClientException(_("Invalid filename.")); } - if(common_config('site','private')) { + + if (common_config('site','private')) { return common_local_url('getfile', array('filename' => $filename)); + } + + if (StatusNet::isHTTPS()) { + + $sslserver = common_config('attachments', 'sslserver'); + + if (empty($sslserver)) { + // XXX: this assumes that background dir == site dir + /file/ + // not true if there's another server + if (is_string(common_config('site', 'sslserver')) && + mb_strlen(common_config('site', 'sslserver')) > 0) { + $server = common_config('site', 'sslserver'); + } else if (common_config('site', 'server')) { + $server = common_config('site', 'server'); + } + $path = common_config('site', 'path') . '/file/'; + } else { + $server = $sslserver; + $path = common_config('attachments', 'sslpath'); + if (empty($path)) { + $path = common_config('attachments', 'path'); + } + } + + $protocol = 'https'; + } else { + $path = common_config('attachments', 'path'); - - if ($path[strlen($path)-1] != '/') { - $path .= '/'; - } - - if ($path[0] != '/') { - $path = '/'.$path; - } - $server = common_config('attachments', 'server'); if (empty($server)) { @@ -285,19 +304,18 @@ class File extends Memcached_DataObject $ssl = common_config('attachments', 'ssl'); - if (is_null($ssl)) { // null -> guess - if (common_config('site', 'ssl') == 'always' && - !common_config('attachments', 'server')) { - $ssl = true; - } else { - $ssl = false; - } - } - $protocol = ($ssl) ? 'https' : 'http'; - - return $protocol.'://'.$server.$path.$filename; } + + if ($path[strlen($path)-1] != '/') { + $path .= '/'; + } + + if ($path[0] != '/') { + $path = '/'.$path; + } + + return $protocol.'://'.$server.$path.$filename; } function getEnclosure(){ diff --git a/lib/default.php b/lib/default.php index 45e35e83d3..08ad811b61 100644 --- a/lib/default.php +++ b/lib/default.php @@ -210,6 +210,8 @@ $default = array('server' => null, 'dir' => INSTALLDIR . '/file/', 'path' => $_path . '/file/', + 'sslserver' => null, + 'sslpath' => null, 'ssl' => null, 'supported' => array('image/png', 'image/jpeg', From 72454db118ab4e54ba2d24a1cbd0e85da2a8413b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 14:22:49 -0400 Subject: [PATCH 086/112] make the logo be compatible with HTTPS pages, if possible --- lib/action.php | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/lib/action.php b/lib/action.php index fcac0e0a7f..55ee83bde6 100644 --- a/lib/action.php +++ b/lib/action.php @@ -426,11 +426,35 @@ class Action extends HTMLOutputter // lawsuit } $this->elementStart('a', array('class' => 'url home bookmark', 'href' => $url)); - if (common_config('site', 'logo') || file_exists(Theme::file('logo.png'))) { + + if (StatusNet::isHTTPS()) { + $logoUrl = common_config('site', 'ssllogo'); + if (empty($logoUrl)) { + // if logo is an uploaded file, try to fall back to HTTPS file URL + $httpUrl = common_config('site', 'logo'); + if (!empty($httpUrl)) { + $f = File::staticGet('url', $httpUrl); + if (!empty($f) && !empty($f->filename)) { + // this will handle the HTTPS case + $logoUrl = File::url($f->filename); + } + } + } + } else { + $logoUrl = common_config('site', 'logo'); + } + + if (empty($logoUrl) && file_exists(Theme::file('logo.png'))) { + // This should handle the HTTPS case internally + $logoUrl = Theme::path('logo.png'); + } + + if (!empty($logoUrl)) { $this->element('img', array('class' => 'logo photo', - 'src' => (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png'), + 'src' => $logoUrl, 'alt' => common_config('site', 'name'))); } + $this->text(' '); $this->element('span', array('class' => 'fn org'), common_config('site', 'name')); $this->elementEnd('a'); From 8f3b18f27f1c8daee3f06f457eaf3587db22c96e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 14:53:20 -0400 Subject: [PATCH 087/112] fix copy-and-paste error in javascript url creation --- lib/htmloutputter.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 4a1b7db472..42bff44908 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -393,10 +393,7 @@ class HTMLOutputter extends XMLOutputter $path = common_config('javascript', 'path'); if (empty($path)) { - $path = common_config('site', 'path') . '/'; - if ($fallbackSubdir) { - $path .= $fallbackSubdir . '/'; - } + $path = common_config('site', 'path') . '/js/'; } $server = common_config('javascript', 'server'); From 1a4dc03bfe9c02de04635411e1af78821adc4d5e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 14:56:38 -0400 Subject: [PATCH 088/112] document and default for site|ssllogo --- README | 2 ++ lib/default.php | 1 + 2 files changed, 3 insertions(+) diff --git a/README b/README index 70491c4c35..6b351f143d 100644 --- a/README +++ b/README @@ -852,6 +852,8 @@ notice: A plain string that will appear on every page. A good place be escaped. logo: URL of an image file to use as the logo for the site. Overrides the logo in the theme, if any. +ssllogo: URL of an image file to use as the logo on SSL pages. If unset, + theme logo is used instead. ssl: Whether to use SSL and https:// URLs for some or all pages. Possible values are 'always' (use it for all pages), 'never' (don't use it for any pages), or 'sometimes' (use it for diff --git a/lib/default.php b/lib/default.php index 08ad811b61..fb032930b2 100644 --- a/lib/default.php +++ b/lib/default.php @@ -37,6 +37,7 @@ $default = 'path' => $_path, 'logfile' => null, 'logo' => null, + 'ssllogo' => null, 'logdebug' => false, 'fancy' => false, 'locale_path' => INSTALLDIR.'/locale', From fc6711327bcb2319139171ad3353603753f13eaa Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 15:06:11 -0400 Subject: [PATCH 089/112] let users set their SSL logo through the admin panel --- actions/designadminpanel.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index 4285f7d731..587333e06a 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -140,7 +140,7 @@ class DesignadminpanelAction extends AdminPanelAction $themeChanged = ($this->trimmed('theme') != $oldtheme); } - static $settings = array('theme', 'logo'); + static $settings = array('theme', 'logo', 'ssllogo'); $values = array(); @@ -230,6 +230,7 @@ class DesignadminpanelAction extends AdminPanelAction function restoreDefaults() { $this->deleteSetting('site', 'logo'); + $this->deleteSetting('site', 'ssllogo'); $this->deleteSetting('site', 'theme'); $settings = array( @@ -293,7 +294,7 @@ class DesignadminpanelAction extends AdminPanelAction /** * Save the custom theme if the user uploaded one. - * + * * @return mixed custom theme name, if succesful, or null if no theme upload. * @throws ClientException for invalid theme archives * @throws ServerException if trouble saving the theme files @@ -331,6 +332,11 @@ class DesignadminpanelAction extends AdminPanelAction $this->clientError(_('Invalid logo URL.')); } + if (!empty($values['ssllogo']) && + !Validate::uri($values['ssllogo'], array('allowed_schemes' => array('https')))) { + $this->clientError(_('Invalid SSL logo URL.')); + } + if (!in_array($values['theme'], Theme::listAvailable())) { $this->clientError(sprintf(_("Theme not available: %s."), $values['theme'])); } @@ -444,6 +450,10 @@ class DesignAdminPanelForm extends AdminForm $this->input('logo', _('Site logo'), 'Logo for the site (full URL)'); $this->unli(); + $this->li(); + $this->input('ssllogo', _('SSL logo'), 'Logo to show on SSL pages'); + $this->unli(); + $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); From 3f74f446033aaa1c0e7a1d6965f7558ad2c1cbf4 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 14 Oct 2010 16:25:43 -0700 Subject: [PATCH 090/112] Fix for ticket #2828: apostrophe in site name set in installer created a broken config.php. Now running values through var_export() before putting them into the config.php, ensuring strings will be properly quoted. --- lib/installer.php | 42 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 37 insertions(+), 5 deletions(-) diff --git a/lib/installer.php b/lib/installer.php index c046eadea3..a9d8090110 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -391,6 +391,30 @@ abstract class Installer return $db; } + /** + * Return a parseable PHP literal for the given value. + * This will include quotes for strings, etc. + * + * @param mixed $val + * @return string + */ + function phpVal($val) + { + return var_export($val, true); + } + + /** + * Return an array of parseable PHP literal for the given values. + * These will include quotes for strings, etc. + * + * @param mixed $val + * @return array + */ + function phpVals($map) + { + return array_map(array($this, 'phpVal'), $map); + } + /** * Write a stock configuration file. * @@ -400,24 +424,32 @@ abstract class Installer */ function writeConf() { + $vals = $this->phpVals(array( + 'sitename' => $this->sitename, + 'server' => $this->server, + 'path' => $this->path, + 'db_database' => $this->db['database'], + 'db_type' => $this->db['type'], + )); + // assemble configuration file in a string $cfg = "sitename}';\n\n". + "\$config['site']['name'] = {$vals['sitename']};\n\n". // site location - "\$config['site']['server'] = '{$this->server}';\n". - "\$config['site']['path'] = '{$this->path}'; \n\n". + "\$config['site']['server'] = {$vals['server']};\n". + "\$config['site']['path'] = {$vals['path']}; \n\n". // checks if fancy URLs are enabled ($this->fancy ? "\$config['site']['fancy'] = true;\n\n":''). // database - "\$config['db']['database'] = '{$this->db['database']}';\n\n". + "\$config['db']['database'] = {$vals['db_database']};\n\n". ($this->db['type'] == 'pgsql' ? "\$config['db']['quote_identifiers'] = true;\n\n":''). - "\$config['db']['type'] = '{$this->db['type']}';\n\n"; + "\$config['db']['type'] = {$vals['db_type']};\n\n"; // Normalize line endings for Windows servers $cfg = str_replace("\n", PHP_EOL, $cfg); From 56403c4beb939b71bf4412746eeaf6419afd7fea Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 14 Oct 2010 16:47:56 -0700 Subject: [PATCH 091/112] Fix for ticket #2828, part II: apostrophe in site name set in installer created a broken config.php. The previous commit fixed the base installer to properly quote its strings when creating config.php... but you'd actually end up with double-escaping if you had magic_quotes_gpc on. Magic quotes are evil and lame, but we gotta deal with em. :P Updated the web installer code to check for magic quotes, and to grab its variables consistently through the same interface. --- install.php | 83 +++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 64 insertions(+), 19 deletions(-) diff --git a/install.php b/install.php index 158d51fa33..9b0d19882c 100644 --- a/install.php +++ b/install.php @@ -45,14 +45,62 @@ require INSTALLDIR . '/lib/installer.php'; * Helper class for building form */ class Posted { + /** + * HTML-friendly escaped string for the POST param of given name, or empty. + * @param string $name + * @return string + */ function value($name) + { + return htmlspecialchars($this->string($name)); + } + + /** + * The given POST parameter value, forced to a string. + * Missing value will give ''. + * + * @param string $name + * @return string + */ + function string($name) + { + return strval($this->raw($name)); + } + + /** + * The given POST parameter value, in its original form. + * Magic quotes are stripped, if provided. + * Missing value will give null. + * + * @param string $name + * @return mixed + */ + function raw($name) { if (isset($_POST[$name])) { - return htmlspecialchars(strval($_POST[$name])); + return $this->dequote($_POST[$name]); } else { - return ''; + return null; } } + + /** + * If necessary, strip magic quotes from the given value. + * + * @param mixed $val + * @return mixed + */ + function dequote($val) + { + if (get_magic_quotes_gpc()) { + if (is_string($val)) { + return stripslashes($val); + } else if (is_array($val)) { + return array_map(array($this, 'dequote'), $val); + } + } + return $val; + } } /** @@ -107,11 +155,7 @@ class WebInstaller extends Installer global $dbModules; $post = new Posted(); $dbRadios = ''; - if (isset($_POST['dbtype'])) { - $dbtype = $_POST['dbtype']; - } else { - $dbtype = null; - } + $dbtype = $post->raw('dbtype'); foreach (self::$dbModules as $type => $info) { if ($this->checkExtension($info['check_module'])) { if ($dbtype == null || $dbtype == $type) { @@ -245,19 +289,20 @@ STR; */ function prepare() { - $this->host = $_POST['host']; - $this->dbtype = $_POST['dbtype']; - $this->database = $_POST['database']; - $this->username = $_POST['dbusername']; - $this->password = $_POST['dbpassword']; - $this->sitename = $_POST['sitename']; - $this->fancy = !empty($_POST['fancy']); + $post = new Posted(); + $this->host = $post->string('host'); + $this->dbtype = $post->string('dbtype'); + $this->database = $post->string('database'); + $this->username = $post->string('dbusername'); + $this->password = $post->string('dbpassword'); + $this->sitename = $post->string('sitename'); + $this->fancy = (bool)$post->string('fancy'); - $this->adminNick = strtolower($_POST['admin_nickname']); - $this->adminPass = $_POST['admin_password']; - $adminPass2 = $_POST['admin_password2']; - $this->adminEmail = $_POST['admin_email']; - $this->adminUpdates = $_POST['admin_updates']; + $this->adminNick = strtolower($post->string('admin_nickname')); + $this->adminPass = $post->string('admin_password'); + $adminPass2 = $post->string('admin_password2'); + $this->adminEmail = $post->string('admin_email'); + $this->adminUpdates = $post->string('admin_updates'); $this->server = $_SERVER['HTTP_HOST']; $this->path = substr(dirname($_SERVER['PHP_SELF']), 1); From 793ec16ed4a8cacee6420629a02d3bf26344f17d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 14 Oct 2010 16:57:04 -0700 Subject: [PATCH 092/112] Fix ticket #2829: we have more subdirs to pull than just avatars now; updated the upgrade directions. --- README | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README b/README index 6b351f143d..e3748293fb 100644 --- a/README +++ b/README @@ -683,8 +683,9 @@ instructions; read to the end first before trying them. 6. Move your StatusNet directory to a backup spot, like "statusnet.bak". 7. Unpack your StatusNet 0.9.5 tarball and move it to "statusnet" or wherever your code used to be. -8. Copy the config.php file and avatar directory from your old - directory to your new directory. +8. Copy the config.php file and the contents of the avatar/, background/, + file/, and local/ subdirectories from your old directory to your new + directory. 9. Copy htaccess.sample to .htaccess in the new directory. Change the RewriteBase to use the correct path. 10. Rebuild the database. (You can safely skip this step and go to #12 From 9b9ba297913fdfa62d9e6d37afa5ec17341442e3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 15 Oct 2010 13:46:21 -0400 Subject: [PATCH 093/112] add SSL servers and paths to pathadminpanel.php --- actions/pathsadminpanel.php | 100 ++++++++++++++++++++++++++---------- 1 file changed, 72 insertions(+), 28 deletions(-) diff --git a/actions/pathsadminpanel.php b/actions/pathsadminpanel.php index 0c83aa29ec..e073b0a2aa 100644 --- a/actions/pathsadminpanel.php +++ b/actions/pathsadminpanel.php @@ -92,16 +92,17 @@ class PathsadminpanelAction extends AdminPanelAction function saveSettings() { static $settings = array( - 'site' => array('path', 'locale_path', 'ssl', 'sslserver'), - 'theme' => array('server', 'dir', 'path'), - 'avatar' => array('server', 'dir', 'path'), - 'background' => array('server', 'dir', 'path') - ); + 'site' => array('path', 'locale_path', 'ssl', 'sslserver'), + 'theme' => array('server', 'dir', 'path', 'sslserver', 'sslpath'), + 'avatar' => array('server', 'dir', 'path'), + 'background' => array('server', 'dir', 'path', 'sslserver', 'sslpath'), + 'attachments' => array('server', 'dir', 'path', 'sslserver', 'sslpath') + ); - // XXX: If we're only going to have one boolean on thi page we - // can remove some of the boolean processing code --Z + // XXX: If we're only going to have one boolean on thi page we + // can remove some of the boolean processing code --Z - static $booleans = array('site' => array('fancy')); + static $booleans = array('site' => array('fancy')); $values = array(); @@ -131,13 +132,13 @@ class PathsadminpanelAction extends AdminPanelAction } } - foreach ($booleans as $section => $parts) { - foreach ($parts as $setting) { + foreach ($booleans as $section => $parts) { + foreach ($parts as $setting) { Config::save($section, $setting, $values[$section][$setting]); } - } + } - $config->query('COMMIT'); + $config->query('COMMIT'); return; } @@ -230,11 +231,11 @@ class PathsAdminPanelForm extends AdminForm function formData() { - $this->out->elementStart('fieldset', array('id' => 'settings_paths_locale')); + $this->out->elementStart('fieldset', array('id' => 'settings_paths_locale')); $this->out->element('legend', null, _('Site'), 'site'); $this->out->elementStart('ul', 'form_data'); - $this->li(); + $this->li(); $this->input('server', _('Server'), _('Site\'s server hostname.')); $this->unli(); @@ -243,14 +244,14 @@ class PathsAdminPanelForm extends AdminForm $this->unli(); $this->li(); - $this->input('locale_path', _('Path to locales'), _('Directory path to locales'), 'site'); + $this->input('locale_path', _('Locale Directory'), _('Directory path to locales'), 'site'); $this->unli(); - $this->li(); + $this->li(); $this->out->checkbox('fancy', _('Fancy URLs'), (bool) $this->value('fancy'), _('Use fancy (more readable and memorable) URLs?')); - $this->unli(); + $this->unli(); $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); @@ -261,15 +262,23 @@ class PathsAdminPanelForm extends AdminForm $this->out->elementStart('ul', 'form_data'); $this->li(); - $this->input('server', _('Theme server'), 'Server for themes', 'theme'); + $this->input('server', _('Server'), _('Server for themes'), 'theme'); $this->unli(); $this->li(); - $this->input('path', _('Theme path'), 'Web path to themes', 'theme'); + $this->input('path', _('Path'), _('Web path to themes'), 'theme'); $this->unli(); $this->li(); - $this->input('dir', _('Theme directory'), 'Directory where themes are located', 'theme'); + $this->input('sslserver', _('SSL server'), _('SSL server for themes (default: SSL server)'), 'theme'); + $this->unli(); + + $this->li(); + $this->input('sslpath', _('SSL path'), _('SSL path to themes (default: /theme/)'), 'theme'); + $this->unli(); + + $this->li(); + $this->input('dir', _('Directory'), _('Directory where themes are located'), 'theme'); $this->unli(); $this->out->elementEnd('ul'); @@ -297,20 +306,57 @@ class PathsAdminPanelForm extends AdminForm $this->out->elementEnd('fieldset'); $this->out->elementStart('fieldset', array('id' => - 'settings_design_background-paths')); + 'settings_design_background-paths')); $this->out->element('legend', null, _('Backgrounds')); $this->out->elementStart('ul', 'form_data'); $this->li(); - $this->input('server', _('Background server'), 'Server for backgrounds', 'background'); + $this->input('server', _('Server'), 'Server for backgrounds', 'background'); $this->unli(); $this->li(); - $this->input('path', _('Background path'), 'Web path to backgrounds', 'background'); + $this->input('path', _('Path'), 'Web path to backgrounds', 'background'); $this->unli(); $this->li(); - $this->input('dir', _('Background directory'), 'Directory where backgrounds are located', 'background'); + $this->input('sslserver', _('SSL server'), 'Server for backgrounds on SSL pages', 'background'); + $this->unli(); + + $this->li(); + $this->input('sslpath', _('SSL path'), 'Web path to backgrounds on SSL pages', 'background'); + $this->unli(); + + $this->li(); + $this->input('dir', _('Directory'), 'Directory where backgrounds are located', 'background'); + $this->unli(); + + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + + $this->out->elementStart('fieldset', array('id' => + 'settings_design_attachments-paths')); + + $this->out->element('legend', null, _('Attachments')); + $this->out->elementStart('ul', 'form_data'); + + $this->li(); + $this->input('server', _('Server'), 'Server for attachments', 'attachments'); + $this->unli(); + + $this->li(); + $this->input('path', _('Path'), 'Web path to attachments', 'attachments'); + $this->unli(); + + $this->li(); + $this->input('sslserver', _('SSL server'), 'Server for attachments on SSL pages', 'attachments'); + $this->unli(); + + $this->li(); + $this->input('sslpath', _('SSL path'), 'Web path to attachments on SSL pages', 'attachments'); + $this->unli(); + + $this->li(); + $this->input('dir', _('Directory'), 'Directory where attachments are located', 'attachments'); $this->unli(); $this->out->elementEnd('ul'); @@ -320,12 +366,11 @@ class PathsAdminPanelForm extends AdminForm $this->out->element('legend', null, _('SSL')); $this->out->elementStart('ul', 'form_data'); $this->li(); + $ssl = array('never' => _('Never'), 'sometimes' => _('Sometimes'), 'always' => _('Always')); - common_debug("site ssl = " . $this->value('site', 'ssl')); - $this->out->dropdown('site-ssl', _('Use SSL'), $ssl, _('When to use SSL'), false, $this->value('ssl', 'site')); @@ -349,7 +394,7 @@ class PathsAdminPanelForm extends AdminForm function formActions() { $this->out->submit('save', _('Save'), 'submit', - 'save', _('Save paths')); + 'save', _('Save paths')); } /** @@ -370,5 +415,4 @@ class PathsAdminPanelForm extends AdminForm { $this->out->input("$section-$setting", $title, $this->value($setting, $section), $instructions); } - } From 1d6d0cbcbdef6a926faa1ca6d9270fcf23b57a6d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 16 Oct 2010 14:15:02 +0200 Subject: [PATCH 094/112] Use common case instead of WARNING in all caps. Spotted by The Evil IP address. --- plugins/OpenID/openidadminpanel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/OpenID/openidadminpanel.php b/plugins/OpenID/openidadminpanel.php index ce4806cc89..38df183fef 100644 --- a/plugins/OpenID/openidadminpanel.php +++ b/plugins/OpenID/openidadminpanel.php @@ -257,7 +257,7 @@ class OpenIDAdminPanelForm extends AdminForm $this->out->checkbox( 'openidonly', _m('Enable OpenID-only mode'), (bool) $this->value('openidonly', 'site'), - _m('Require all users to login via OpenID. WARNING: disables password authentication for all users!'), + _m('Require all users to login via OpenID. Warning: disables password authentication for all users!'), 'true' ); $this->unli(); From 77191f455a670af6d747f6d1881fa0c3a1ee5b4b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 16 Oct 2010 14:20:30 +0200 Subject: [PATCH 095/112] Change incorrect use of e.g. to i.e. Spotted by The Evil IP address. --- .../OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php b/plugins/OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php index 611f5e5c7b..f0f6144e01 100644 --- a/plugins/OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php +++ b/plugins/OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.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 OpenExternalLinkTargetPlugin extends Plugin { function onEndShowScripts($action) @@ -57,7 +56,7 @@ class OpenExternalLinkTargetPlugin extends Plugin 'author' => 'Sarven Capadisli', 'homepage' => 'http://status.net/wiki/Plugin:OpenExternalLinkTarget', 'rawdescription' => - _m('Opens external links (e.g., with rel=external) on a new window or tab.')); + _m('Opens external links (i.e. with rel=external) on a new window or tab.')); return true; } } From 31415b5853952e50f1ac7be816f4bb669884142c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 16 Oct 2010 14:31:41 +0200 Subject: [PATCH 096/112] Update translator documentation. --- actions/apidirectmessage.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/actions/apidirectmessage.php b/actions/apidirectmessage.php index e7ea38dfa1..4e2ec5eb08 100644 --- a/actions/apidirectmessage.php +++ b/actions/apidirectmessage.php @@ -74,6 +74,7 @@ class ApiDirectMessageAction extends ApiAuthAction $this->user = $this->auth_user; if (empty($this->user)) { + // TRANS: Client error given when a user was not found (404). $this->clientError(_('No such user.'), 404, $this->format); return; } @@ -86,10 +87,12 @@ class ApiDirectMessageAction extends ApiAuthAction // Action was called by /api/direct_messages/sent.format $this->title = sprintf( + // TRANS: %s is a user nickname. _("Direct messages from %s"), $this->user->nickname ); $this->subtitle = sprintf( + // TRANS: %s is a user nickname. _("All the direct messages sent from %s"), $this->user->nickname ); @@ -98,10 +101,12 @@ class ApiDirectMessageAction extends ApiAuthAction $this->id = "tag:$taguribase:SentDirectMessages:" . $this->user->id; } else { $this->title = sprintf( + // TRANS: %s is a user nickname. _("Direct messages to %s"), $this->user->nickname ); $this->subtitle = sprintf( + // TRANS: %s is a user nickname. _("All the direct messages sent to %s"), $this->user->nickname ); @@ -153,6 +158,7 @@ class ApiDirectMessageAction extends ApiAuthAction $this->showJsonDirectMessages(); break; default: + // TRANS: Client error given when an API method was not found (404). $this->clientError(_('API method not found.'), $code = 404); break; } From 505ac6eba0e671e8823b5102de3caa0e0040c2cf Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 16 Oct 2010 14:38:12 +0200 Subject: [PATCH 097/112] * add plural support where missing * update translator documentation. --- actions/apidirectmessagenew.php | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php index 44e205ebb0..c126cd312f 100644 --- a/actions/apidirectmessagenew.php +++ b/actions/apidirectmessagenew.php @@ -49,7 +49,6 @@ require_once INSTALLDIR . '/lib/apiauth.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 ApiDirectMessageNewAction extends ApiAuthAction { var $other = null; @@ -63,7 +62,6 @@ class ApiDirectMessageNewAction extends ApiAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -99,7 +97,6 @@ class ApiDirectMessageNewAction extends ApiAuthAction * * @return void */ - function handle($args) { parent::handle($args); @@ -116,6 +113,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction if (empty($this->content)) { $this->clientError( + // TRANS: Client error (406). _('No message text!'), 406, $this->format @@ -123,9 +121,10 @@ class ApiDirectMessageNewAction extends ApiAuthAction } else { $content_shortened = common_shorten_links($this->content); if (Message::contentTooLong($content_shortened)) { + // TRANS: Client error displayed when message content is too long. + // TRANS: %d is the maximum number of characters for a message. $this->clientError( - sprintf( - _('That\'s too long. Max message size is %d chars.'), + sprintf(_m('That\'s too long. Maximum message size is %d character.', 'That\'s too long. Maximum message size is %d characters.', Message::maxContent()), Message::maxContent() ), 406, @@ -136,10 +135,12 @@ class ApiDirectMessageNewAction extends ApiAuthAction } if (empty($this->other)) { + // TRANS: Client error displayed if a recipient user could not be found (403). $this->clientError(_('Recipient user not found.'), 403, $this->format); return; } else if (!$this->user->mutuallySubscribed($this->other)) { $this->clientError( + // TRANS: Client error displayed trying to direct message another user who's not a friend (403). _('Can\'t send direct messages to users who aren\'t your friend.'), 403, $this->format @@ -149,10 +150,9 @@ class ApiDirectMessageNewAction extends ApiAuthAction // Note: sending msgs to yourself is allowed by Twitter - $errmsg = 'Don\'t send a message to yourself; ' . - 'just say it to yourself quietly instead.'; - - $this->clientError(_($errmsg), 403, $this->format); + // TRANS: Client error displayed trying to direct message self (403). + $this->clientError(_('Do not send a message to yourself; ' . + 'just say it to yourself quietly instead.'), 403, $this->format); return; } @@ -176,6 +176,4 @@ class ApiDirectMessageNewAction extends ApiAuthAction $this->showSingleJsondirectMessage($message); } } - } - From 7c05b0dafc609e978040e5612f6f6a86b0bb6420 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 18 Oct 2010 11:29:52 -0400 Subject: [PATCH 098/112] options to nofollow external links in notices --- actions/showfavorites.php | 14 ++++++- actions/shownotice.php | 2 +- actions/showstream.php | 2 +- lib/default.php | 3 +- lib/dofollowlistitem.php | 88 +++++++++++++++++++++++++++++++++++++++ lib/util.php | 14 ++++++- 6 files changed, 117 insertions(+), 6 deletions(-) create mode 100644 lib/dofollowlistitem.php diff --git a/actions/showfavorites.php b/actions/showfavorites.php index d8042e91c7..77b73711d2 100644 --- a/actions/showfavorites.php +++ b/actions/showfavorites.php @@ -227,7 +227,7 @@ class ShowfavoritesAction extends OwnerDesignAction function showContent() { - $nl = new NoticeList($this->notice, $this); + $nl = new FavoritesNoticeList($this->notice, $this); $cnt = $nl->show(); if (0 == $cnt) { @@ -244,3 +244,15 @@ class ShowfavoritesAction extends OwnerDesignAction } } +class FavoritesNoticeList extends NoticeList +{ + function newListItem($notice) + { + return new FavoritesNoticeListItem($notice, $this->out); + } +} + +// All handled by superclass +class FavoritesNoticeListItem extends DoFollowListItem +{ +} diff --git a/actions/shownotice.php b/actions/shownotice.php index c5180568b3..5fc863486c 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -311,7 +311,7 @@ class ShownoticeAction extends OwnerDesignAction } } -class SingleNoticeItem extends NoticeListItem +class SingleNoticeItem extends DoFollowListItem { /** * recipe function for displaying a single notice. diff --git a/actions/showstream.php b/actions/showstream.php index e9f117afc4..be61a7ce0d 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -275,7 +275,7 @@ class ProfileNoticeList extends NoticeList } } -class ProfileNoticeListItem extends NoticeListItem +class ProfileNoticeListItem extends DoFollowListItem { function showAuthor() { diff --git a/lib/default.php b/lib/default.php index fb032930b2..3750881303 100644 --- a/lib/default.php +++ b/lib/default.php @@ -317,7 +317,8 @@ $default = 'nofollow' => array('subscribers' => true, 'members' => true, - 'peopletag' => true), + 'peopletag' => true, + 'external' => 'always'), // Options: 'sometimes', 'never', default = 'always' 'http' => // HTTP client settings when contacting other sites array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') 'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.) diff --git a/lib/dofollowlistitem.php b/lib/dofollowlistitem.php new file mode 100644 index 0000000000..80e2d0b0a7 --- /dev/null +++ b/lib/dofollowlistitem.php @@ -0,0 +1,88 @@ +. + * + * @category UI + * @package StatusNet + * @author Evan Prodromou + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR.'/lib/noticelist.php'; + +/** + * StatusNet, the distributed open-source microblogging tool + * + * Widget superclass for notice list items that remove rel=nofollow + * + * When nofollow|external = 'sometimes', notices get rendered and saved + * with rel=nofollow for external links. We want to remove that relationship + * on some pages (profile, single notice, faves). This superclass for + * some noticelistitems will strip that bit of code out when showing + * notice content + * + * @category UI + * @package StatusNet + * @author Evan Prodromou + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 + * @link http://status.net/ + */ + +class DoFollowListItem extends NoticeListItem +{ + /** + * show the content of the notice + * + * Trims out the rel=nofollow for external links + * if nofollow|external = 'sometimes' + * + * @return void + */ + + function showContent() + { + // FIXME: URL, image, video, audio + $this->out->elementStart('p', array('class' => 'entry-content')); + + if (!empty($this->notice->rendered)) { + $html = $this->notice->rendered; + } else { + $html = common_render_content($this->notice->content, $this->notice); + } + + if (common_config('nofollow', 'external') == 'sometimes') { + // remove the nofollow part + // XXX: cache the results here + + $html = preg_replace('/rel="(.*)nofollow ?/', 'rel="\1', $html); + } + + $this->out->raw($html); + + $this->out->elementEnd('p'); + } +} \ No newline at end of file diff --git a/lib/util.php b/lib/util.php index c05fcf15a2..5a94182bda 100644 --- a/lib/util.php +++ b/lib/util.php @@ -145,7 +145,6 @@ function common_switch_locale($language=null) textdomain("statusnet"); } - function common_timezone() { if (common_logged_in()) { @@ -860,7 +859,8 @@ function common_linkify($url) { $longurl = $url; } } - $attrs = array('href' => $canon, 'title' => $longurl, 'rel' => 'external'); + + $attrs = array('href' => $canon, 'title' => $longurl); $is_attachment = false; $attachment_id = null; @@ -896,6 +896,16 @@ function common_linkify($url) { $attrs['id'] = "attachment-{$attachment_id}"; } + // Whether to nofollow + + $nf = common_config('nofollow', 'external'); + + if ($nf == 'never') { + $attrs['rel'] = 'external'; + } else { + $attrs['rel'] = 'nofollow external'; + } + return XMLStringer::estring('a', $attrs, $url); } From 47ac8458ca4891020ce5667718b5cad0fa485756 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 18 Oct 2010 11:41:18 -0400 Subject: [PATCH 099/112] default for nofollow external is sometimes --- lib/default.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/default.php b/lib/default.php index 3750881303..a19453fce4 100644 --- a/lib/default.php +++ b/lib/default.php @@ -318,7 +318,7 @@ $default = array('subscribers' => true, 'members' => true, 'peopletag' => true, - 'external' => 'always'), // Options: 'sometimes', 'never', default = 'always' + 'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes' 'http' => // HTTP client settings when contacting other sites array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') 'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.) From 671712f0f617298dbf686df5707f232af8e053e2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 18 Oct 2010 11:41:33 -0400 Subject: [PATCH 100/112] document API and nofollow config options --- README | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README b/README index e3748293fb..35c510e2b8 100644 --- a/README +++ b/README @@ -1502,6 +1502,33 @@ disallow: Array of (virtual) directories to disallow. Default is 'main', 'search', 'message', 'settings', 'admin'. Ignored when site is private, in which case the entire site ('/') is disallowed. +api +--- + +Options for the Twitter-like API. + +realm: HTTP Basic Auth realm (see http://tools.ietf.org/html/rfc2617 + for details). Some third-party tools like ping.fm want this to be + 'Identi.ca API', so set it to that if you want to. default = null, + meaning 'something based on the site name'. + +nofollow +-------- + +We optionally put 'rel="nofollow"' on some links in some pages. The +following configuration settings let you fine-tune how or when things +are nofollowed. See http://en.wikipedia.org/wiki/Nofollow for more +information on what 'nofollow' means. + +subscribers: whether to nofollow links to subscribers on the profile + and personal pages. Default is true. +members: links to members on the group page. Default true. +peopletag: links to people listed in the peopletag page. Default true. +external: external links in notices. One of three values: 'sometimes', + 'always', 'never'. If 'sometimes', then external links are not + nofollowed on profile, notice, and favorites page. Default is + 'sometimes'. + Plugins ======= From edf8990aa99a8d8df4334e271f4033e887d0a276 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 15 Oct 2010 15:01:55 -0700 Subject: [PATCH 101/112] fix notice on non-https views --- lib/statusnet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/statusnet.php b/lib/statusnet.php index 301994508d..33bf32b10e 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -377,7 +377,7 @@ class StatusNet static function isHTTPS() { // There are some exceptions to this; add them here! - return $_SERVER['HTTPS']; + return !empty($_SERVER['HTTPS']); } } From e04a6ef93ef7706671ba14f5108690bfe12c1592 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 18 Oct 2010 11:27:22 -0700 Subject: [PATCH 102/112] Make HTTP timeout configurable on OStatus's remote-tests.php (needs to be pumped up a fair amount when doing Salmon pings with queues off on the test boxes, especially without the fast math library) --- plugins/OStatus/tests/remote-tests.php | 44 ++++++++++++++++++++------ 1 file changed, 34 insertions(+), 10 deletions(-) diff --git a/plugins/OStatus/tests/remote-tests.php b/plugins/OStatus/tests/remote-tests.php index 64c60a8a4c..7888ec7c5d 100644 --- a/plugins/OStatus/tests/remote-tests.php +++ b/plugins/OStatus/tests/remote-tests.php @@ -4,7 +4,7 @@ if (php_sapi_name() != 'cli') { die('not for web'); } -define('TIMEOUT', 60); // ssslllloowwwww salmon if queues are off +define('HTTP_TIMEOUT', 60); // ssslllloowwwww salmon if queues are off define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); set_include_path(INSTALLDIR . '/extlib' . PATH_SEPARATOR . get_include_path()); @@ -63,14 +63,15 @@ class OStatusTester extends TestBase /** * @param string $a base URL of test site A (eg http://localhost/mublog) * @param string $b base URL of test site B (eg http://localhost/mublog2) + * @param int $timeout HTTP timeout value (needs to be long if Salmon is slow) */ - function __construct($a, $b) { + function __construct($a, $b, $timeout=60) { $this->a = $a; $this->b = $b; $base = 'test' . mt_rand(1, 1000000); - $this->pub = new SNTestClient($this->a, 'pub' . $base, 'pw-' . mt_rand(1, 1000000)); - $this->sub = new SNTestClient($this->b, 'sub' . $base, 'pw-' . mt_rand(1, 1000000)); + $this->pub = new SNTestClient($this->a, 'pub' . $base, 'pw-' . mt_rand(1, 1000000), $timeout); + $this->sub = new SNTestClient($this->b, 'sub' . $base, 'pw-' . mt_rand(1, 1000000), $timeout); } function run() @@ -166,11 +167,12 @@ class OStatusTester extends TestBase class SNTestClient extends TestBase { - function __construct($base, $username, $password) + function __construct($base, $username, $password, $timeout=60) { $this->basepath = $base; $this->username = $username; $this->password = $password; + $this->timeout = $timeout; $this->fullname = ucfirst($username) . ' Smith'; $this->homepage = 'http://example.org/' . $username; @@ -190,7 +192,7 @@ class SNTestClient extends TestBase { $url = $this->basepath . '/' . $path; - $http = new HTTP_Request2($url, 'POST', array('timeout' => TIMEOUT)); + $http = new HTTP_Request2($url, 'POST', array('timeout' => $this->timeout)); if ($auth) { $http->setAuth($this->username, $this->password, HTTP_Request2::AUTH_BASIC); } @@ -217,7 +219,7 @@ class SNTestClient extends TestBase protected function web($path, $form, $params=array()) { $url = $this->basepath . '/' . $path; - $http = new HTTP_Request2($url, 'GET', array('timeout' => TIMEOUT)); + $http = new HTTP_Request2($url, 'GET', array('timeout' => $this->timeout)); $response = $http->send(); $dom = $this->checkWeb($url, 'GET', $response); @@ -534,10 +536,29 @@ class SNTestClient extends TestBase } -$args = array_slice($_SERVER['argv'], 1); +// @fixme switch to commandline.inc? +$timeout = HTTP_TIMEOUT; + +$args = array(); +$options = array(); +foreach (array_slice($_SERVER['argv'], 1) as $arg) { + if (substr($arg, 0, 2) == '--') { + $bits = explode('=', substr($arg, 2), 2); + if (count($bits == 2)) { + list($key, $val) = $bits; + $options[$key] = $val; + } else { + list($key) = $bits; + $options[$key] = true; + } + } else { + $args[] = $arg; + } +} if (count($args) < 2) { print << +remote-tests.php [options] + --timeout=## change HTTP timeout from default {$timeout}s url1: base URL of a StatusNet instance url2: base URL of another StatusNet instance @@ -551,6 +572,9 @@ exit(1); $a = $args[0]; $b = $args[1]; +if (isset($options['timeout'])) { + $timeout = intval($options['timeout']); +} -$tester = new OStatusTester($a, $b); +$tester = new OStatusTester($a, $b, $timeout); $tester->run(); From d67a9b437c3545b3a435953dbb529b64934cc767 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 18 Oct 2010 12:23:01 -0700 Subject: [PATCH 103/112] Avoid notice in DirectionDetectorPlugin when dealing with empty string. --- plugins/DirectionDetector/DirectionDetectorPlugin.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php index 1473c386fa..4a38f390f1 100644 --- a/plugins/DirectionDetector/DirectionDetectorPlugin.php +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -81,6 +81,9 @@ class DirectionDetectorPlugin extends Plugin { * @return boolean */ public static function startsWithRTLCharacter($str){ + if (strlen($str) < 1) { + return false; + } if( is_array($cc = self::utf8ToUnicode(mb_substr($str, 0, 1, 'utf-8'))) ) $cc = $cc[0]; else From 067d37f864eb47b58c7558907407827bd25f6934 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 18 Oct 2010 12:26:01 -0700 Subject: [PATCH 104/112] Update URLDetectionTest.php for rel="nofollow external". There are still some broken tests due to bad quote splitting, which is unrelated. --- tests/URLDetectionTest.php | 224 ++++++++++++++++++------------------- 1 file changed, 112 insertions(+), 112 deletions(-) diff --git a/tests/URLDetectionTest.php b/tests/URLDetectionTest.php index d83f9faf58..eac7ba3f5c 100644 --- a/tests/URLDetectionTest.php +++ b/tests/URLDetectionTest.php @@ -29,73 +29,73 @@ class URLDetectionTest extends PHPUnit_Framework_TestCase array('not a link :: no way', 'not a link :: no way'), array('link http://www.somesite.com/xyz/35637563@N00/52803365/ link', - 'link http://www.somesite.com/xyz/35637563@N00/52803365/ link'), + 'link http://www.somesite.com/xyz/35637563@N00/52803365/ link'), array('http://127.0.0.1', - 'http://127.0.0.1'), + 'http://127.0.0.1'), array('127.0.0.1', - '127.0.0.1'), + '127.0.0.1'), array('127.0.0.1:99', - '127.0.0.1:99'), + '127.0.0.1:99'), array('127.0.0.1/Name:test.php', - '127.0.0.1/Name:test.php'), + '127.0.0.1/Name:test.php'), array('127.0.0.1/~test', - '127.0.0.1/~test'), + '127.0.0.1/~test'), array('127.0.0.1/+test', - '127.0.0.1/+test'), + '127.0.0.1/+test'), array('127.0.0.1/$test', - '127.0.0.1/$test'), + '127.0.0.1/$test'), array('127.0.0.1/\'test', - '127.0.0.1/\'test'), + '127.0.0.1/\'test'), array('127.0.0.1/"test', - '127.0.0.1/"test'), + '127.0.0.1/"test'), array('127.0.0.1/test"test', - '127.0.0.1/test"test'), + '127.0.0.1/test"test'), array('127.0.0.1/-test', - '127.0.0.1/-test'), + '127.0.0.1/-test'), array('127.0.0.1/_test', - '127.0.0.1/_test'), + '127.0.0.1/_test'), array('127.0.0.1/!test', - '127.0.0.1/!test'), + '127.0.0.1/!test'), array('127.0.0.1/*test', - '127.0.0.1/*test'), + '127.0.0.1/*test'), array('127.0.0.1/test%20stuff', - '127.0.0.1/test%20stuff'), + '127.0.0.1/test%20stuff'), array('http://[::1]:99/test.php', - 'http://[::1]:99/test.php'), + 'http://[::1]:99/test.php'), array('http://::1/test.php', - 'http://::1/test.php'), + 'http://::1/test.php'), array('http://::1', - 'http://::1'), + 'http://::1'), array('2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php', - '2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php'), + '2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php'), array('[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php', - '[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php'), + '[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php'), array('2001:4978:1b5:0:21d:e0ff:fe66:59ab', - '2001:4978:1b5:0:21d:e0ff:fe66:59ab'), + '2001:4978:1b5:0:21d:e0ff:fe66:59ab'), array('http://127.0.0.1', - 'http://127.0.0.1'), + 'http://127.0.0.1'), array('example.com', - 'example.com'), + 'example.com'), array('example.com', - 'example.com'), + 'example.com'), array('http://example.com', - 'http://example.com'), + 'http://example.com'), array('http://example.com.', - 'http://example.com.'), + 'http://example.com.'), array('/var/lib/example.so', '/var/lib/example.so'), array('example', 'example'), array('user@example.com', - 'user@example.com'), + 'user@example.com'), array('user_name+other@example.com', - 'user_name+other@example.com'), + 'user_name+other@example.com'), array('mailto:user@example.com', - 'mailto:user@example.com'), + 'mailto:user@example.com'), array('mailto:user@example.com?subject=test', - 'mailto:user@example.com?subject=test'), + 'mailto:user@example.com?subject=test'), array('xmpp:user@example.com', - 'xmpp:user@example.com'), + 'xmpp:user@example.com'), array('#example', '#'), array('#example.com', @@ -103,167 +103,167 @@ class URLDetectionTest extends PHPUnit_Framework_TestCase array('#.net', '#'), array('http://example', - 'http://example'), + 'http://example'), array('http://3xampl3', - 'http://3xampl3'), + 'http://3xampl3'), array('http://example/', - 'http://example/'), + 'http://example/'), array('http://example/path', - 'http://example/path'), + 'http://example/path'), array('http://example.com', - 'http://example.com'), + 'http://example.com'), array('https://example.com', - 'https://example.com'), + 'https://example.com'), array('ftp://example.com', - 'ftp://example.com'), + 'ftp://example.com'), array('ftps://example.com', - 'ftps://example.com'), + 'ftps://example.com'), array('http://user@example.com', - 'http://user@example.com'), + 'http://user@example.com'), array('http://user:pass@example.com', - 'http://user:pass@example.com'), + 'http://user:pass@example.com'), array('http://example.com:8080', - 'http://example.com:8080'), + 'http://example.com:8080'), array('http://example.com:8080/test.php', - 'http://example.com:8080/test.php'), + 'http://example.com:8080/test.php'), array('example.com:8080/test.php', - 'example.com:8080/test.php'), + 'example.com:8080/test.php'), array('http://www.example.com', - 'http://www.example.com'), + 'http://www.example.com'), array('http://example.com/', - 'http://example.com/'), + 'http://example.com/'), array('http://example.com/path', - 'http://example.com/path'), + 'http://example.com/path'), array('http://example.com/path.html', - 'http://example.com/path.html'), + 'http://example.com/path.html'), array('http://example.com/path.html#fragment', - 'http://example.com/path.html#fragment'), + 'http://example.com/path.html#fragment'), array('http://example.com/path.php?foo=bar&bar=foo', - 'http://example.com/path.php?foo=bar&bar=foo'), + 'http://example.com/path.php?foo=bar&bar=foo'), array('http://example.com.', - 'http://example.com.'), + 'http://example.com.'), array('http://müllärör.de', - 'http://müllärör.de'), + 'http://müllärör.de'), array('http://ﺱﺲﺷ.com', - 'http://ﺱﺲﺷ.com'), + 'http://ﺱﺲﺷ.com'), array('http://сделаткартинки.com', - 'http://сделаткартинки.com'), + 'http://сделаткартинки.com'), array('http://tūdaliņ.lv', - 'http://tūdaliņ.lv'), + 'http://tūdaliņ.lv'), array('http://brændendekærlighed.com', - 'http://brændendekærlighed.com'), + 'http://brændendekærlighed.com'), array('http://あーるいん.com', - 'http://あーるいん.com'), + 'http://あーるいん.com'), array('http://예비교사.com', - 'http://예비교사.com'), + 'http://예비교사.com'), array('http://example.com.', - 'http://example.com.'), + 'http://example.com.'), array('http://example.com?', - 'http://example.com?'), + 'http://example.com?'), array('http://example.com!', - 'http://example.com!'), + 'http://example.com!'), array('http://example.com,', - 'http://example.com,'), + 'http://example.com,'), array('http://example.com;', - 'http://example.com;'), + 'http://example.com;'), array('http://example.com:', - 'http://example.com:'), + 'http://example.com:'), array('\'http://example.com\'', - '\'http://example.com\''), + '\'http://example.com\''), array('"http://example.com"', - '"http://example.com"'), + '"http://example.com"'), array('"http://example.com/"', - '"http://example.com/"'), + '"http://example.com/"'), array('http://example.com', - 'http://example.com'), + 'http://example.com'), array('(http://example.com)', - '(http://example.com)'), + '(http://example.com)'), array('[http://example.com]', - '[http://example.com]'), + '[http://example.com]'), array('', - '<http://example.com>'), + '<http://example.com>'), array('http://example.com/path/(foo)/bar', - 'http://example.com/path/(foo)/bar'), + 'http://example.com/path/(foo)/bar'), array('http://example.com/path/[foo]/bar', - 'http://example.com/path/[foo]/bar'), + 'http://example.com/path/[foo]/bar'), array('http://example.com/path/foo/(bar)', - 'http://example.com/path/foo/(bar)'), + 'http://example.com/path/foo/(bar)'), //Not a valid url - urls cannot contain unencoded square brackets array('http://example.com/path/foo/[bar]', - 'http://example.com/path/foo/[bar]'), + 'http://example.com/path/foo/[bar]'), array('Hey, check out my cool site http://example.com okay?', - 'Hey, check out my cool site http://example.com okay?'), + 'Hey, check out my cool site http://example.com okay?'), array('What about parens (e.g. http://example.com/path/foo/(bar))?', - 'What about parens (e.g. http://example.com/path/foo/(bar))?'), + 'What about parens (e.g. http://example.com/path/foo/(bar))?'), array('What about parens (e.g. http://example.com/path/foo/(bar)?', - 'What about parens (e.g. http://example.com/path/foo/(bar)?'), + 'What about parens (e.g. http://example.com/path/foo/(bar)?'), array('What about parens (e.g. http://example.com/path/foo/(bar).)?', - 'What about parens (e.g. http://example.com/path/foo/(bar).)?'), + 'What about parens (e.g. http://example.com/path/foo/(bar).)?'), //Not a valid url - urls cannot contain unencoded commas array('What about parens (e.g. http://example.com/path/(foo,bar)?', - 'What about parens (e.g. http://example.com/path/(foo,bar)?'), + 'What about parens (e.g. http://example.com/path/(foo,bar)?'), array('Unbalanced too (e.g. http://example.com/path/((((foo)/bar)?', - 'Unbalanced too (e.g. http://example.com/path/((((foo)/bar)?'), + 'Unbalanced too (e.g. http://example.com/path/((((foo)/bar)?'), array('Unbalanced too (e.g. http://example.com/path/(foo))))/bar)?', - 'Unbalanced too (e.g. http://example.com/path/(foo))))/bar)?'), + 'Unbalanced too (e.g. http://example.com/path/(foo))))/bar)?'), array('Unbalanced too (e.g. http://example.com/path/foo/((((bar)?', - 'Unbalanced too (e.g. http://example.com/path/foo/((((bar)?'), + 'Unbalanced too (e.g. http://example.com/path/foo/((((bar)?'), array('Unbalanced too (e.g. http://example.com/path/foo/(bar))))?', - 'Unbalanced too (e.g. http://example.com/path/foo/(bar))))?'), + 'Unbalanced too (e.g. http://example.com/path/foo/(bar))))?'), array('example.com', - 'example.com'), + 'example.com'), array('example.org', - 'example.org'), + 'example.org'), array('example.co.uk', - 'example.co.uk'), + 'example.co.uk'), array('www.example.co.uk', - 'www.example.co.uk'), + 'www.example.co.uk'), array('farm1.images.example.co.uk', - 'farm1.images.example.co.uk'), + 'farm1.images.example.co.uk'), array('example.museum', - 'example.museum'), + 'example.museum'), array('example.travel', - 'example.travel'), + 'example.travel'), array('example.com.', - 'example.com.'), + 'example.com.'), array('example.com?', - 'example.com?'), + 'example.com?'), array('example.com!', - 'example.com!'), + 'example.com!'), array('example.com,', - 'example.com,'), + 'example.com,'), array('example.com;', - 'example.com;'), + 'example.com;'), array('example.com:', - 'example.com:'), + 'example.com:'), array('\'example.com\'', - '\'example.com\''), + '\'example.com\''), array('"example.com"', - '"example.com"'), + '"example.com"'), array('example.com', - 'example.com'), + 'example.com'), array('(example.com)', - '(example.com)'), + '(example.com)'), array('[example.com]', - '[example.com]'), + '[example.com]'), array('', - '<example.com>'), + '<example.com>'), array('Hey, check out my cool site example.com okay?', - 'Hey, check out my cool site example.com okay?'), + 'Hey, check out my cool site example.com okay?'), array('Hey, check out my cool site example.com.I made it.', - 'Hey, check out my cool site example.com.I made it.'), + 'Hey, check out my cool site example.com.I made it.'), array('Hey, check out my cool site example.com.Funny thing...', - 'Hey, check out my cool site example.com.Funny thing...'), + 'Hey, check out my cool site example.com.Funny thing...'), array('Hey, check out my cool site example.com.You will love it.', - 'Hey, check out my cool site example.com.You will love it.'), + 'Hey, check out my cool site example.com.You will love it.'), array('What about parens (e.g. example.com/path/foo/(bar))?', - 'What about parens (e.g. example.com/path/foo/(bar))?'), + 'What about parens (e.g. example.com/path/foo/(bar))?'), array('What about parens (e.g. example.com/path/foo/(bar)?', - 'What about parens (e.g. example.com/path/foo/(bar)?'), + 'What about parens (e.g. example.com/path/foo/(bar)?'), array('What about parens (e.g. example.com/path/foo/(bar).)?', - 'What about parens (e.g. example.com/path/foo/(bar).)?'), + 'What about parens (e.g. example.com/path/foo/(bar).)?'), array('What about parens (e.g. example.com/path/(foo,bar)?', - 'What about parens (e.g. example.com/path/(foo,bar)?'), + 'What about parens (e.g. example.com/path/(foo,bar)?'), array('file.ext', 'file.ext'), array('file.html', From a7d818bcdb9d8e66fce6f324da7c4a05caabafc6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 18 Oct 2010 21:44:51 +0200 Subject: [PATCH 105/112] Remove superfluous whitespace --- plugins/ModHelper/ModHelperPlugin.php | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/ModHelper/ModHelperPlugin.php b/plugins/ModHelper/ModHelperPlugin.php index 2d0ae5b029..d003827d13 100644 --- a/plugins/ModHelper/ModHelperPlugin.php +++ b/plugins/ModHelper/ModHelperPlugin.php @@ -50,5 +50,4 @@ class ModHelperPlugin extends Plugin } return true; } - } From aa80d8fee3865e25e8d47a5c83b6575ca3dc79ea Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 18 Oct 2010 12:45:55 -0700 Subject: [PATCH 106/112] Clean up edge cases in OStatus FeedDiscoveryTest --- plugins/OStatus/tests/FeedDiscoveryTest.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/plugins/OStatus/tests/FeedDiscoveryTest.php b/plugins/OStatus/tests/FeedDiscoveryTest.php index 3be4bf736c..ef17efe7cf 100644 --- a/plugins/OStatus/tests/FeedDiscoveryTest.php +++ b/plugins/OStatus/tests/FeedDiscoveryTest.php @@ -75,9 +75,10 @@ END; '
',
                            'http://example.com/feed/rss'),
+                     // This one can't resolve correctly; relative link is bogus.
                      array('http://example.com/relative/link3',
                            '',
-                           'http://example.com/feed/rss'),
+                           'http:/feed/rss'),
                      array('http://example.com/base/link1',
                            '',
                            'http://target.example.com/feed/rss'),
                      array('http://example.com/base/link2',
                            '',
                            'http://target.example.com/feed/rss'),
+                     // This one can't resolve; relative link is bogus.
                      array('http://example.com/base/link3',
                            '',
-                           'http://target.example.com/feed/rss'),
+                           'http:/feed/rss'),
                      // Trick question! There's a  but no href on it
                      array('http://example.com/relative/fauxbase',
                            '',

From e6df1b19dfaf8424c612efe56af442f37863ffff Mon Sep 17 00:00:00 2001
From: Siebrand Mazeland 
Date: Mon, 18 Oct 2010 22:03:29 +0200
Subject: [PATCH 107/112] Localisation updates from http://translatewiki.net

---
 locale/af/LC_MESSAGES/statusnet.po            | 653 +++++++++-------
 locale/ar/LC_MESSAGES/statusnet.po            | 657 +++++++++-------
 locale/arz/LC_MESSAGES/statusnet.po           | 657 +++++++++-------
 locale/bg/LC_MESSAGES/statusnet.po            | 661 +++++++++-------
 locale/br/LC_MESSAGES/statusnet.po            | 736 ++++++++++--------
 locale/ca/LC_MESSAGES/statusnet.po            | 724 ++++++++++-------
 locale/cs/LC_MESSAGES/statusnet.po            | 670 +++++++++-------
 locale/de/LC_MESSAGES/statusnet.po            | 725 ++++++++++-------
 locale/en_GB/LC_MESSAGES/statusnet.po         | 731 +++++++++--------
 locale/eo/LC_MESSAGES/statusnet.po            | 670 +++++++++-------
 locale/es/LC_MESSAGES/statusnet.po            | 670 +++++++++-------
 locale/fa/LC_MESSAGES/statusnet.po            | 667 +++++++++-------
 locale/fi/LC_MESSAGES/statusnet.po            | 666 +++++++++-------
 locale/fr/LC_MESSAGES/statusnet.po            | 673 +++++++++-------
 locale/ga/LC_MESSAGES/statusnet.po            | 648 ++++++++-------
 locale/gl/LC_MESSAGES/statusnet.po            | 684 +++++++++-------
 locale/hsb/LC_MESSAGES/statusnet.po           | 657 +++++++++-------
 locale/hu/LC_MESSAGES/statusnet.po            | 647 ++++++++-------
 locale/ia/LC_MESSAGES/statusnet.po            | 672 +++++++++-------
 locale/is/LC_MESSAGES/statusnet.po            | 642 ++++++++-------
 locale/it/LC_MESSAGES/statusnet.po            | 672 +++++++++-------
 locale/ja/LC_MESSAGES/statusnet.po            | 670 +++++++++-------
 locale/ka/LC_MESSAGES/statusnet.po            | 657 +++++++++-------
 locale/ko/LC_MESSAGES/statusnet.po            | 716 ++++++++++-------
 locale/mk/LC_MESSAGES/statusnet.po            | 673 +++++++++-------
 locale/nb/LC_MESSAGES/statusnet.po            | 664 +++++++++-------
 locale/nl/LC_MESSAGES/statusnet.po            | 671 +++++++++-------
 locale/nn/LC_MESSAGES/statusnet.po            | 565 ++++++++------
 locale/pl/LC_MESSAGES/statusnet.po            | 685 +++++++++-------
 locale/pt/LC_MESSAGES/statusnet.po            | 669 +++++++++-------
 locale/pt_BR/LC_MESSAGES/statusnet.po         | 674 +++++++++-------
 locale/ru/LC_MESSAGES/statusnet.po            | 669 +++++++++-------
 locale/statusnet.pot                          | 604 ++++++++------
 locale/sv/LC_MESSAGES/statusnet.po            | 668 +++++++++-------
 locale/te/LC_MESSAGES/statusnet.po            | 595 ++++++++------
 locale/tr/LC_MESSAGES/statusnet.po            | 640 +++++++++------
 locale/uk/LC_MESSAGES/statusnet.po            | 672 +++++++++-------
 locale/zh_CN/LC_MESSAGES/statusnet.po         | 664 +++++++++-------
 .../Adsense/locale/br/LC_MESSAGES/Adsense.po  |  32 +-
 .../Adsense/locale/de/LC_MESSAGES/Adsense.po  | 101 +++
 .../locale/pt_BR/LC_MESSAGES/Adsense.po       | 103 +++
 .../locale/br/LC_MESSAGES/AnonymousFave.po    | 102 +++
 .../locale/de/LC_MESSAGES/AnonymousFave.po    | 102 +++
 .../locale/es/LC_MESSAGES/AnonymousFave.po    |  11 +-
 .../locale/ia/LC_MESSAGES/AnonymousFave.po    |  10 +-
 .../locale/mk/LC_MESSAGES/AnonymousFave.po    |  10 +-
 .../locale/nl/LC_MESSAGES/AnonymousFave.po    |  10 +-
 .../locale/uk/LC_MESSAGES/AnonymousFave.po    |  10 +-
 .../locale/de/LC_MESSAGES/AutoSandbox.po      |  45 ++
 .../locale/ru/LC_MESSAGES/AutoSandbox.po      |  46 ++
 .../locale/br/LC_MESSAGES/Autocomplete.po     |  33 +
 .../locale/de/LC_MESSAGES/Autocomplete.po     |  33 +
 .../locale/fr/LC_MESSAGES/BitlyUrl.po         |  34 +-
 .../locale/ia/LC_MESSAGES/BitlyUrl.po         |  34 +-
 .../locale/mk/LC_MESSAGES/BitlyUrl.po         |  34 +-
 .../locale/nb/LC_MESSAGES/BitlyUrl.po         |  34 +-
 .../locale/nl/LC_MESSAGES/BitlyUrl.po         |  33 +-
 .../locale/uk/LC_MESSAGES/BitlyUrl.po         |  35 +-
 .../locale/de/LC_MESSAGES/Blacklist.po        |  95 +++
 .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po  |  26 +
 .../locale/br/LC_MESSAGES/BlogspamNet.po      |  26 +
 .../de/LC_MESSAGES/ClientSideShorten.po       |  34 +
 .../de/LC_MESSAGES/DirectionDetector.po       |  27 +
 .../he/LC_MESSAGES/DirectionDetector.po       |  26 +
 .../locale/nb/LC_MESSAGES/DiskCache.po        |  26 +
 .../locale/pt_BR/LC_MESSAGES/DiskCache.po     |  27 +
 .../Disqus/locale/de/LC_MESSAGES/Disqus.po    |  46 ++
 .../Disqus/locale/nb/LC_MESSAGES/Disqus.po    |  47 ++
 plugins/Echo/locale/de/LC_MESSAGES/Echo.po    |  30 +
 plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po |  31 +
 .../br/LC_MESSAGES/EmailAuthentication.po     |  30 +
 .../de/LC_MESSAGES/EmailAuthentication.po     |  30 +
 .../pt_BR/LC_MESSAGES/EmailAuthentication.po  |  31 +
 .../locale/br/LC_MESSAGES/Facebook.po         |  38 +-
 .../locale/de/LC_MESSAGES/Facebook.po         | 584 ++++++++++++++
 .../locale/fr/LC_MESSAGES/Facebook.po         |  11 +-
 .../locale/ia/LC_MESSAGES/Facebook.po         |  11 +-
 .../locale/mk/LC_MESSAGES/Facebook.po         |  11 +-
 .../locale/nl/LC_MESSAGES/Facebook.po         |  11 +-
 .../locale/pt_BR/LC_MESSAGES/Facebook.po      |  15 +-
 .../locale/tl/LC_MESSAGES/Facebook.po         |  11 +-
 .../locale/uk/LC_MESSAGES/Facebook.po         |  11 +-
 .../locale/de/LC_MESSAGES/ForceGroup.po       |  38 +
 .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po    |  30 +
 .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po    |  30 +
 .../locale/ca/LC_MESSAGES/Geonames.po         |  31 +
 .../locale/pt_BR/LC_MESSAGES/Geonames.po      |  32 +
 .../locale/br/LC_MESSAGES/GoogleAnalytics.po  |  30 +
 .../pt_BR/LC_MESSAGES/GoogleAnalytics.po      |  31 +
 .../locale/de/LC_MESSAGES/GroupFavorited.po   |  56 ++
 .../locale/ru/LC_MESSAGES/GroupFavorited.po   |  54 ++
 .../locale/de/LC_MESSAGES/InfiniteScroll.po   |  35 +
 .../locale/nb/LC_MESSAGES/InfiniteScroll.po   |  34 +
 .../locale/de/LC_MESSAGES/Linkback.po         |  34 +
 .../locale/de/LC_MESSAGES/Mapstraction.po     |  19 +-
 .../locale/nb/LC_MESSAGES/Mapstraction.po     |  66 ++
 .../Minify/locale/de/LC_MESSAGES/Minify.po    |  42 +
 .../Minify/locale/nb/LC_MESSAGES/Minify.po    |  42 +
 .../Minify/locale/ru/LC_MESSAGES/Minify.po    |  44 ++
 plugins/ModHelper/locale/ModHelper.pot        |  22 +
 .../locale/br/LC_MESSAGES/NoticeTitle.po      |  11 +-
 plugins/OStatus/locale/OStatus.pot            |  24 +-
 .../OStatus/locale/fr/LC_MESSAGES/OStatus.po  |  30 +-
 .../OStatus/locale/ia/LC_MESSAGES/OStatus.po  |  30 +-
 .../OStatus/locale/mk/LC_MESSAGES/OStatus.po  |  40 +-
 .../OStatus/locale/nl/LC_MESSAGES/OStatus.po  |  30 +-
 .../OStatus/locale/uk/LC_MESSAGES/OStatus.po  |  30 +-
 .../locale/OpenExternalLinkTarget.pot         |   6 +-
 .../de/LC_MESSAGES/OpenExternalLinkTarget.po  |  28 +
 .../es/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../fr/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../ia/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../id/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../mk/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../nb/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../nl/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../LC_MESSAGES/OpenExternalLinkTarget.po     |  13 +-
 .../ru/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../tl/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../uk/LC_MESSAGES/OpenExternalLinkTarget.po  |  13 +-
 .../LC_MESSAGES/OpenExternalLinkTarget.po     |  13 +-
 plugins/OpenID/locale/OpenID.pot              |   4 +-
 .../OpenID/locale/ca/LC_MESSAGES/OpenID.po    | 594 ++++++++++++++
 .../OpenID/locale/de/LC_MESSAGES/OpenID.po    | 119 ++-
 .../OpenID/locale/fr/LC_MESSAGES/OpenID.po    |  11 +-
 .../OpenID/locale/ia/LC_MESSAGES/OpenID.po    |  11 +-
 .../OpenID/locale/mk/LC_MESSAGES/OpenID.po    |  11 +-
 .../OpenID/locale/nl/LC_MESSAGES/OpenID.po    |  11 +-
 .../OpenID/locale/tl/LC_MESSAGES/OpenID.po    |  11 +-
 .../OpenID/locale/uk/LC_MESSAGES/OpenID.po    |  11 +-
 .../locale/nb/LC_MESSAGES/PiwikAnalytics.po   |  30 +
 .../locale/nb/LC_MESSAGES/PostDebug.po        |  26 +
 .../br/LC_MESSAGES/PoweredByStatusNet.po      |  12 +-
 .../de/LC_MESSAGES/PoweredByStatusNet.po      |  40 +
 .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po  |  28 +
 .../locale/pt_BR/LC_MESSAGES/PtitUrl.po       |  29 +
 .../locale/de/LC_MESSAGES/Recaptcha.po        |  39 +
 .../locale/ru/LC_MESSAGES/Recaptcha.po        |  40 +
 .../locale/de/LC_MESSAGES/RegisterThrottle.po |  39 +
 .../locale/RequireValidatedEmail.pot          |  12 +-
 .../de/LC_MESSAGES/RequireValidatedEmail.po   |  41 +
 .../fr/LC_MESSAGES/RequireValidatedEmail.po   |  27 +-
 .../ia/LC_MESSAGES/RequireValidatedEmail.po   |  27 +-
 .../mk/LC_MESSAGES/RequireValidatedEmail.po   |  27 +-
 .../nl/LC_MESSAGES/RequireValidatedEmail.po   |  27 +-
 .../tl/LC_MESSAGES/RequireValidatedEmail.po   |  29 +-
 .../uk/LC_MESSAGES/RequireValidatedEmail.po   |  27 +-
 .../ReverseUsernameAuthentication.po          |  32 +
 .../ReverseUsernameAuthentication.po          |  33 +
 .../Sample/locale/de/LC_MESSAGES/Sample.po    |  69 ++
 .../Sample/locale/ru/LC_MESSAGES/Sample.po    |  71 ++
 .../locale/de/LC_MESSAGES/ShareNotice.po      |  55 ++
 .../locale/br/LC_MESSAGES/SimpleUrl.po        |  28 +
 .../locale/pt/LC_MESSAGES/SimpleUrl.po        |  27 +
 .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po  |  91 +++
 .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po  |  90 +++
 .../locale/ru/LC_MESSAGES/SphinxSearch.po     |  38 +
 .../de/LC_MESSAGES/SubscriptionThrottle.po    |  26 +
 .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po  |  28 +
 .../locale/fr/LC_MESSAGES/TwitterBridge.po    |  11 +-
 .../locale/ia/LC_MESSAGES/TwitterBridge.po    |  10 +-
 .../locale/mk/LC_MESSAGES/TwitterBridge.po    |  10 +-
 .../locale/nl/LC_MESSAGES/TwitterBridge.po    |  10 +-
 .../locale/uk/LC_MESSAGES/TwitterBridge.po    |  10 +-
 .../locale/br/LC_MESSAGES/UserLimit.po        |  26 +
 .../locale/lb/LC_MESSAGES/UserLimit.po        |  26 +
 .../locale/pt/LC_MESSAGES/UserLimit.po        |  26 +
 .../locale/br/LC_MESSAGES/WikiHashtags.po     |  30 +
 .../WikiHowProfile/locale/WikiHowProfile.pot  |   4 +-
 .../locale/fr/LC_MESSAGES/WikiHowProfile.po   |  10 +-
 .../locale/ia/LC_MESSAGES/WikiHowProfile.po   |  10 +-
 .../locale/mk/LC_MESSAGES/WikiHowProfile.po   |  10 +-
 .../locale/nl/LC_MESSAGES/WikiHowProfile.po   |  10 +-
 .../locale/ru/LC_MESSAGES/WikiHowProfile.po   |  10 +-
 .../locale/tl/LC_MESSAGES/WikiHowProfile.po   |  10 +-
 .../locale/tr/LC_MESSAGES/WikiHowProfile.po   |  10 +-
 .../locale/uk/LC_MESSAGES/WikiHowProfile.po   |  10 +-
 .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po |  31 +
 plugins/YammerImport/locale/YammerImport.pot  |   4 +-
 .../locale/br/LC_MESSAGES/YammerImport.po     | 281 +++++++
 .../locale/fr/LC_MESSAGES/YammerImport.po     |  10 +-
 .../locale/ia/LC_MESSAGES/YammerImport.po     |  10 +-
 .../locale/mk/LC_MESSAGES/YammerImport.po     |  16 +-
 .../locale/nl/LC_MESSAGES/YammerImport.po     |  10 +-
 .../locale/ru/LC_MESSAGES/YammerImport.po     | 277 +++++++
 .../locale/tr/LC_MESSAGES/YammerImport.po     |  10 +-
 .../locale/uk/LC_MESSAGES/YammerImport.po     |  10 +-
 187 files changed, 20439 insertions(+), 10814 deletions(-)
 create mode 100644 plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
 create mode 100644 plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
 create mode 100644 plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
 create mode 100644 plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
 create mode 100644 plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po
 create mode 100644 plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po
 create mode 100644 plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po
 create mode 100644 plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po
 create mode 100644 plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po
 create mode 100644 plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po
 create mode 100644 plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po
 create mode 100644 plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po
 create mode 100644 plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po
 create mode 100644 plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po
 create mode 100644 plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po
 create mode 100644 plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po
 create mode 100644 plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po
 create mode 100644 plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po
 create mode 100644 plugins/Echo/locale/de/LC_MESSAGES/Echo.po
 create mode 100644 plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po
 create mode 100644 plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po
 create mode 100644 plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po
 create mode 100644 plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po
 create mode 100644 plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po
 create mode 100644 plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po
 create mode 100644 plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po
 create mode 100644 plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po
 create mode 100644 plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po
 create mode 100644 plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po
 create mode 100644 plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po
 create mode 100644 plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po
 create mode 100644 plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po
 create mode 100644 plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po
 create mode 100644 plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po
 create mode 100644 plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po
 create mode 100644 plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po
 create mode 100644 plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po
 create mode 100644 plugins/Minify/locale/de/LC_MESSAGES/Minify.po
 create mode 100644 plugins/Minify/locale/nb/LC_MESSAGES/Minify.po
 create mode 100644 plugins/Minify/locale/ru/LC_MESSAGES/Minify.po
 create mode 100644 plugins/ModHelper/locale/ModHelper.pot
 create mode 100644 plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po
 create mode 100644 plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po
 create mode 100644 plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po
 create mode 100644 plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po
 create mode 100644 plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po
 create mode 100644 plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po
 create mode 100644 plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po
 create mode 100644 plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po
 create mode 100644 plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po
 create mode 100644 plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po
 create mode 100644 plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po
 create mode 100644 plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po
 create mode 100644 plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po
 create mode 100644 plugins/Sample/locale/de/LC_MESSAGES/Sample.po
 create mode 100644 plugins/Sample/locale/ru/LC_MESSAGES/Sample.po
 create mode 100644 plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po
 create mode 100644 plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po
 create mode 100644 plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po
 create mode 100644 plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po
 create mode 100644 plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po
 create mode 100644 plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po
 create mode 100644 plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po
 create mode 100644 plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po
 create mode 100644 plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po
 create mode 100644 plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po
 create mode 100644 plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po
 create mode 100644 plugins/WikiHashtags/locale/br/LC_MESSAGES/WikiHashtags.po
 create mode 100644 plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po
 create mode 100644 plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po
 create mode 100644 plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po

diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po
index db753499fb..4105d3d747 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:15+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:18+0000\n"
 "Language-Team: Afrikaans \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -90,14 +90,15 @@ msgstr "Stoor"
 msgid "No such page."
 msgstr "Hierdie bladsy bestaan nie."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -193,12 +194,13 @@ msgstr "U en vriende"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Opdaterings van %1$s en vriende op %2$s."
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -225,7 +227,7 @@ msgstr "Die API-funksie is nie gevind nie."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -297,45 +299,60 @@ msgstr "Die blokkering van die gebruiker het gefaal."
 msgid "Unblock user failed."
 msgstr "Die deblokkering van die gebruiker het gefaal."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Direkte boodskappe vanaf %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Alle direkte boodskappe deur %s gestuur"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Direkte boodskappe aan %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Alle direkte boodskappe gestuur aan %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Die boodskap bevat geen inhoud nie!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Dit is te lank. Die maksimum boodskaplengte is %d karakters."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Dit is te lank. Die maksimum boodskaplengte is %d karakters."
+msgstr[1] "Dit is te lank. Die maksimum boodskaplengte is %d karakters."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Die ontvanger kon gevind word nie."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "U kan nie direkte boodskappe aan gebruikers wat nie op u viendelys is stuur "
 "nie."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -523,15 +540,21 @@ msgstr "groepe op %s"
 msgid "Upload failed."
 msgstr "Die deblokkering van die gebruiker het gefaal."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Ongeldige token."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Ongeldige token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -549,35 +572,23 @@ msgstr "Ongeldige token."
 msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Ongeldige gebruikersnaam of wagwoord!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 #, fuzzy
 msgid "Database error deleting OAuth application user."
 msgstr "Moenie die applikasie verwyder nie"
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -586,15 +597,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Die vorm is onverwags ingestuur."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "'n Toepassing vra toegang tot u gebruikersinligting"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Toegang toelaat of weier"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -603,11 +614,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Gebruiker"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -616,23 +627,47 @@ msgid "Nickname"
 msgstr "Bynaam"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Wagwoord"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Ontsê"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Kanselleer"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Toestaan"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Laat toegang tot u gebruikersinligting toe of weier dit."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Geen bevestigingskode."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, php-format
+msgid "You have successfully authorized %s."
+msgstr ""
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Hierdie metode vereis 'n POST of DELETE."
@@ -795,7 +830,8 @@ msgid "Preview"
 msgstr "Voorskou"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Skrap"
 
@@ -848,12 +884,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Nee"
@@ -866,12 +903,13 @@ msgstr "Moenie hierdie gebruiker blokkeer nie"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Ja"
@@ -889,6 +927,7 @@ msgstr ""
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1018,7 +1057,7 @@ msgstr "U is nie die eienaar van hierdie applikasie nie."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1043,6 +1082,55 @@ msgstr "Moenie die applikasie verwyder nie"
 msgid "Delete this application"
 msgstr "Skrap hierdie applikasie"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "U moet aanteken alvorens u 'n groep kan verlaat."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Geen gebruikersnaam of ID nie."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "U is nie 'n lid van die groep nie."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Dit was nie moontlik om die groep by te werk nie."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s het die groep %2$s verlaat"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Verwyder gebruiker"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Moenie hierdie kennisgewing verwyder nie"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Verwyder die gebruiker"
+
 #. 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
@@ -1115,54 +1203,64 @@ msgstr "Ontwerp"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Die logo-URL is ongeldig."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Die logo-URL is ongeldig."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "IM is nie beskikbaar nie."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Verander logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Webwerf-logo"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Webwerf-logo"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Verander tema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Werf se tema"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Tema vir die werf."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "Werf se tema"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Verander die agtergrond-prent"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Agtergrond"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1170,69 +1268,69 @@ msgid ""
 msgstr ""
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Aan"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Af"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 #, fuzzy
 msgid "Turn background image on or off."
 msgstr "Verander die agtergrond-prent"
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 #, fuzzy
 msgid "Tile background image"
 msgstr "Verander die agtergrond-prent"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Verander kleure"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Inhoud"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Kantstrook"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Text"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Skakels"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Gevorderd"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Gebruik verstekwaardes"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 #, fuzzy
 msgid "Restore default designs"
 msgstr "Gebruik verstekwaardes"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Stel terug na standaard"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1242,7 +1340,7 @@ msgstr "Stel terug na standaard"
 msgid "Save"
 msgstr "Stoor"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Stoor ontwerp"
 
@@ -1714,7 +1812,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "Kon nie die profiel stoor nie."
@@ -2267,10 +2365,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "U moet aanteken alvorens u by groep kan aansluit."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Geen gebruikersnaam of ID nie."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2513,6 +2607,11 @@ msgstr "U kan nie 'n boodskap aan hierdie gebruiker stuur nie."
 msgid "No content!"
 msgstr "Geen inhoud nie!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Dit is te lank. Die maksimum boodskaplengte is %d karakters."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Geen ontvanger gespesifiseer nie."
@@ -2671,7 +2770,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 #, fuzzy
 msgid "Not a supported data format."
 msgstr "Nie-ondersteunde formaat."
@@ -2828,148 +2927,166 @@ msgstr "Paaie"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Tema-gids"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Tema-gids"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Tema-gids"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Tema-gids"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Webtuiste"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Bediener"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Pad"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 #, fuzzy
 msgid "Site path"
 msgstr "Werf se tema"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Tema-gids"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Tema"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Tema-bediener"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Tema vir die werf."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Tema-pad"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Tema-gids"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatars"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Avatar-bediener"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Avatar-pad"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Avatar-gids"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Agtergronde"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Agtergrond-bediener"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Agtergrond-pad"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Agtergrond-gids"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nooit"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Soms"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Altyd"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Gebruik SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Wanneer SSL gebruik moet word"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-bediener"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Werf se tema"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Tema-gids"
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatars"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Avatar-bediener"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Avatar-pad"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Avatar-gids"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Agtergronde"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Aanhangsels"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nooit"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Soms"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Altyd"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Gebruik SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Wanneer SSL gebruik moet word"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 #, fuzzy
 msgid "Save paths"
 msgstr "Tema-pad"
@@ -3723,7 +3840,7 @@ msgstr "Organisasie"
 msgid "Description"
 msgstr "Beskrywing"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistieke"
@@ -3861,45 +3978,45 @@ msgstr "Aliasse"
 msgid "Group actions"
 msgstr "Groepsaksies"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, fuzzy, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Voer vir vriende van %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, fuzzy, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Voer vir vriende van %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, fuzzy, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Voer vir vriende van %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Vriend van 'n vriend vir die groep %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Lede"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Alle lede"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Geskep"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3909,7 +4026,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3918,7 +4035,7 @@ msgid ""
 "their life and interests. "
 msgstr ""
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administrateurs"
 
@@ -4853,7 +4970,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Weergawe"
 
@@ -5092,7 +5209,7 @@ msgid "Unable to save tag."
 msgstr "Dit was nie moontlik om u ontwerp-instellings te stoor nie."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr ""
 
@@ -5223,191 +5340,191 @@ msgid "Untitled page"
 msgstr ""
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Persoonlik"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Verander u wagwoord"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Konnekteer"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Beheer"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Uitnodig"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Meld by die webwerf aan"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Teken uit"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Skep 'n gebruiker"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registreer"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Meld by die webwerf aan"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Teken in"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Help my!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Help"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Soek na mense of teks"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Soek"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 #, fuzzy
 msgid "Site notice"
 msgstr "Verwyder kennisgewing"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 #, fuzzy
 msgid "Local views"
 msgstr "Lokaal"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 #, fuzzy
 msgid "Page notice"
 msgstr "Populêre kennisgewings"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Help"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Aangaande"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Gewilde vrae"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Gebruiksvoorwaardes"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privaatheid"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Bron"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontak"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 #, fuzzy
 msgid "Badge"
 msgstr "Aanpor"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr ""
 
@@ -5415,7 +5532,7 @@ msgstr ""
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5423,7 +5540,7 @@ msgid ""
 msgstr ""
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr ""
@@ -5432,7 +5549,7 @@ msgstr ""
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5441,51 +5558,51 @@ msgid ""
 msgstr ""
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 #, fuzzy
 msgid "Pagination"
 msgstr "Registratie"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Na"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Voor"
 
@@ -5636,12 +5753,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5730,11 +5847,6 @@ msgstr "Lees-skryf"
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Kanselleer"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 #, fuzzy
@@ -5763,11 +5875,6 @@ msgstr "Verwyder"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Aanhangsels"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6198,14 +6305,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr ""
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Konnekteer"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 #, fuzzy
 msgid "Authorized connected applications"
@@ -6909,24 +7016,24 @@ msgstr "Aanpor"
 msgid "Send a nudge to this user"
 msgstr "Stuur 'n direkte boodskap aan hierdie gebruiker"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 #, fuzzy
 msgid "Couldn't insert new subscription."
 msgstr "Kon nie e-posbevestiging verwyder nie."
@@ -7295,17 +7402,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "'n paar sekondes gelede"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "ongeveer 'n minuut gelede"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7313,12 +7420,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "ongeveer 'n uur gelede"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7326,12 +7433,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "ongeveer een dag gelede"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7339,12 +7446,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "ongeveer een maand gelede"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7352,7 +7459,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "ongeveer een jaar gelede"
 
@@ -7381,3 +7488,21 @@ msgstr "Geen groep verskaf nie."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "Ontsê"
+
+#~ msgid "Theme server"
+#~ msgstr "Tema-bediener"
+
+#~ msgid "Theme path"
+#~ msgstr "Tema-pad"
+
+#~ msgid "Background server"
+#~ msgstr "Agtergrond-bediener"
+
+#~ msgid "Background path"
+#~ msgstr "Agtergrond-pad"
+
+#~ msgid "Background directory"
+#~ msgstr "Agtergrond-gids"
diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po
index b71f146aa2..382cad4b1c 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:16+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:21+0000\n"
 "Language-Team: Arabic \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -94,14 +94,15 @@ msgstr "احفظ"
 msgid "No such page."
 msgstr "لا صفحة كهذه."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -197,12 +198,13 @@ msgstr "أنت والأصدقاء"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "الإشعارات التي فضلها %1$s في %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -229,7 +231,7 @@ msgstr "لم يتم العثور على وسيلة API."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -302,43 +304,62 @@ msgstr "فشل منع المستخدم."
 msgid "Unblock user failed."
 msgstr "فشل إلغاء منع المستخدم."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "رسائل مباشرة من %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "جميع الرسائل المرسلة من %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "رسالة مباشرة %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "كل الرسائل المباشرة التي أرسلت إلى %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "لا نص في الرسالة!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
+#: actions/apidirectmessagenew.php:127
 #, fuzzy, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "هذه طويلة جدًا. أطول حجم للإشعار %d  حرفًا."
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "هذه طويلة جدًا. أطول حجم للإشعار %d  حرفًا."
+msgstr[1] "هذه طويلة جدًا. أطول حجم للإشعار %d  حرفًا."
+msgstr[2] "هذه طويلة جدًا. أطول حجم للإشعار %d  حرفًا."
+msgstr[3] "هذه طويلة جدًا. أطول حجم للإشعار %d  حرفًا."
+msgstr[4] "هذه طويلة جدًا. أطول حجم للإشعار %d  حرفًا."
+msgstr[5] "هذه طويلة جدًا. أطول حجم للإشعار %d  حرفًا."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "لم يُعثر على المستخدم المستلم."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 #, fuzzy
@@ -526,16 +547,21 @@ msgstr "مجموعات %s"
 msgid "Upload failed."
 msgstr "ارفع ملفًا"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "توكن دخول غير صحيح محدد."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
 #, fuzzy
-msgid "Invalid token."
+msgid "Invalid request token."
 msgstr "حجم غير صالح."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -553,34 +579,22 @@ msgstr "حجم غير صالح."
 msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "اسم/كلمة سر غير صحيحة!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -589,15 +603,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr ""
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "اسمح أو امنع الوصول"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -606,11 +620,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "الحساب"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -619,21 +633,44 @@ msgid "Nickname"
 msgstr "الاسم المستعار"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "كلمة السر"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "ارفض"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "ألغِ"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "اسمح"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+msgid "Authorize access to your account information."
+msgstr ""
+
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "أُلغي تأكيد المراسلة الفورية."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "لا تملك تصريحًا."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
@@ -799,7 +836,8 @@ msgid "Preview"
 msgstr "معاينة"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "احذف"
 
@@ -853,12 +891,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "لا"
@@ -871,12 +910,13 @@ msgstr "لا تمنع هذا المستخدم"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "نعم"
@@ -894,6 +934,7 @@ msgstr "فشل حفظ معلومات المنع."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1021,7 +1062,7 @@ msgstr "أنت لست مالك هذا التطبيق."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1046,6 +1087,56 @@ msgstr "لا تحذف هذا التطبيق"
 msgid "Delete this application"
 msgstr "احذف هذا التطبيق"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "يجب أن تلج لتغادر مجموعة."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "لا اسم مستعار."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "لست عضوًا في هذه المجموعة"
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "تعذر تحديث المجموعة."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s ترك المجموعة %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "احذف المستخدم"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "لا تحذف هذا الإشعار"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "احذف هذا المستخدم"
+
 #. 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
@@ -1118,53 +1209,63 @@ msgstr "التصميم"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "مسار شعار غير صالح."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "مسار شعار غير صالح."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "السمة غير متوفرة: %s"
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "غيّر الشعار"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "شعار الموقع"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "شعار الموقع"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "غيّر السمة"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "سمة الموقع"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "سمة الموقع."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "سمة مخصصة"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "تغيير صورة الخلفية"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "الخلفية"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1172,67 +1273,67 @@ msgid ""
 msgstr "بإمكانك رفع صورة خلفية للموقع. أقصى حجم للملف هو %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "مكّن"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "عطّل"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "مكّن صورة الخلفية أو عطّلها."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 #, fuzzy
 msgid "Tile background image"
 msgstr "تغيير صورة الخلفية"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "تغيير الألوان"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "المحتوى"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "الشريط الجانبي"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "النص"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "وصلات"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "متقدم"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS مخصصة"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "استخدم المبدئيات"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "استعد التصميمات المبدئية"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "ارجع إلى المبدئي"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1242,7 +1343,7 @@ msgstr "ارجع إلى المبدئي"
 msgid "Save"
 msgstr "أرسل"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "احفظ التصميم"
 
@@ -1712,7 +1813,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "خطأ أثناء تحديث الملف الشخصي البعيد."
 
@@ -2262,11 +2363,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "يجب أن تلج لتنضم إلى مجموعة."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "لا اسم مستعار."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2508,6 +2604,11 @@ msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم."
 msgid "No content!"
 msgstr "لا محتوى!"
 
+#: actions/newmessage.php:150
+#, fuzzy, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "هذه طويلة جدًا. أطول حجم للإشعار %d  حرفًا."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "لا مستلم حُدّد."
@@ -2663,7 +2764,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "ليس نسق بيانات مدعوم."
 
@@ -2812,148 +2913,167 @@ msgstr "المسارات"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "لا يمكن قراءة دليل السمات: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "لا يمكن الكتابة في دليل الأفتارات: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "لا يمكن الكتابة في دليل الخلفيات: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "لا يمكن قراءة دليل المحليات: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 #, fuzzy
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "الموقع"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "خادوم"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "اسم مضيف خادوم الموقع."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "المسار"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "مسار الموقع"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "مسار المحليات"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "دليل السمات"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "مسار دليل المحليات"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "مسارات فاخرة"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "أأستخدم مسارات فاخرة (يمكن قراءتها وتذكرها بسهولة أكبر)؟"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "السمة"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "خادوم السمات"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "سمة الموقع."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "مسار السمات"
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "دليل السمات"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "أفتارات"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "خادوم الأفتارات"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "مسار الأفتارات"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "دليل الأفتار."
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "خلفيات"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "خادوم الخلفيات"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "مسار الخلفيات"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "دليل الخلفيات"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "مطلقا"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "أحيانًا"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "دائمًا"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "استخدم SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "خادم SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "مسار الموقع"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "دليل السمات"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "مسار دليل المحليات"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "أفتارات"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "خادوم الأفتارات"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "مسار الأفتارات"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "دليل الأفتار."
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "خلفيات"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "مرفقات"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "مطلقا"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "أحيانًا"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "دائمًا"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "استخدم SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "احفظ المسارات"
 
@@ -3682,7 +3802,7 @@ msgstr "المنظمة"
 msgid "Description"
 msgstr "الوصف"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "إحصاءات"
@@ -3822,45 +3942,45 @@ msgstr "الكنى"
 msgid "Group actions"
 msgstr "تصرفات المستخدم"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr ""
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr ""
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr ""
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, fuzzy, php-format
 msgid "FOAF for %s group"
 msgstr "مجموعة %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "الأعضاء"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "جميع الأعضاء"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "أنشئت"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3875,7 +3995,7 @@ msgstr ""
 "[انضم الآن](%%%%action.register%%%%) لتصبح عضوًا في هذه المجموعة ومجموعات "
 "أخرى عديدة! ([اقرأ المزيد](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3887,7 +4007,7 @@ msgstr ""
 "en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [StatusNet]"
 "(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "الإداريون"
 
@@ -4806,7 +4926,7 @@ msgid "Plugins"
 msgstr "الملحقات"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "النسخة"
 
@@ -5040,7 +5160,7 @@ msgid "Unable to save tag."
 msgstr "تعذّر حفظ إشعار الموقع."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr ""
 
@@ -5160,187 +5280,187 @@ msgid "Untitled page"
 msgstr "صفحة غير مُعنونة"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 #, fuzzy
 msgid "Primary site navigation"
 msgstr "ضبط الموقع الأساسي"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "الملف الشخصي ومسار الأصدقاء الزمني"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "الصفحة الشخصية"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "غير بريدك الإلكتروني وكلمة سرّك وأفتارك وملفك الشخصي"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "اتصل بالخدمات"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "اتصل"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "غيّر ضبط الموقع"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "إداري"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "ادعُ"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "اخرج من الموقع"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "اخرج"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "أنشئ حسابًا"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "سجّل"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "لُج إلى الموقع"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "لُج"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "ساعدني!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "مساعدة"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "ابحث عن أشخاص أو نصوص"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "ابحث"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "إشعار الموقع"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "المشاهدات المحلية"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "إشعار الصفحة"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 #, fuzzy
 msgid "Secondary site navigation"
 msgstr "ضبط الموقع الأساسي"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "مساعدة"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "عن"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "الأسئلة المكررة"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "الشروط"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "خصوصية"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "المصدر"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "اتصل"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "الجسر"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "رخصة برنامج StatusNet"
 
@@ -5348,7 +5468,7 @@ msgstr "رخصة برنامج StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5358,7 +5478,7 @@ msgstr ""
 "broughtbyurl%%). "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr ""
@@ -5367,7 +5487,7 @@ msgstr ""
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5379,51 +5499,51 @@ msgstr ""
 "agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "رخصة محتوى الموقع"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 #, fuzzy
 msgid "Pagination"
 msgstr "تسجيل"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "بعد"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "قبل"
 
@@ -5566,12 +5686,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5660,11 +5780,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "ألغِ"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5691,11 +5806,6 @@ msgstr "أزل"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "مرفقات"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6173,14 +6283,14 @@ msgstr "رسائل قصيرة"
 msgid "Updates by SMS"
 msgstr "تحديثات عبر الرسائل القصيرة"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "اتصالات"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 #, fuzzy
 msgid "Authorized connected applications"
@@ -6897,24 +7007,24 @@ msgstr "نبّه"
 msgid "Send a nudge to this user"
 msgstr "أرسل رسالة مباشرة إلى هذا المستخدم"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "تعذّر إدراج اشتراك جديد."
 
@@ -7267,17 +7377,17 @@ msgid "Moderator"
 msgstr "مراقب"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "قبل لحظات قليلة"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "قبل دقيقة تقريبًا"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7289,12 +7399,12 @@ msgstr[4] ""
 msgstr[5] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "قبل ساعة تقريبًا"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7306,12 +7416,12 @@ msgstr[4] ""
 msgstr[5] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "قبل يوم تقريبا"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7323,12 +7433,12 @@ msgstr[4] ""
 msgstr[5] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "قبل شهر تقريبًا"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7340,7 +7450,7 @@ msgstr[4] ""
 msgstr[5] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "قبل سنة تقريبًا"
 
@@ -7368,3 +7478,24 @@ msgstr "لا هوية مستخدم محددة."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "ارفض"
+
+#~ msgid "Path to locales"
+#~ msgstr "مسار المحليات"
+
+#~ msgid "Theme server"
+#~ msgstr "خادوم السمات"
+
+#~ msgid "Theme path"
+#~ msgstr "مسار السمات"
+
+#~ msgid "Background server"
+#~ msgstr "خادوم الخلفيات"
+
+#~ msgid "Background path"
+#~ msgstr "مسار الخلفيات"
+
+#~ msgid "Background directory"
+#~ msgstr "دليل الخلفيات"
diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po
index 81d2bd5321..819660b9c8 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:18+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:25+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -98,14 +98,15 @@ msgstr "أرسل"
 msgid "No such page."
 msgstr "لا وسم كهذا."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +202,13 @@ msgstr "أنت والأصدقاء"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "%1$s و الصحاب, صفحه %2$d"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +235,7 @@ msgstr "الـ API method مش موجوده."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -306,43 +308,62 @@ msgstr "فشل منع المستخدم."
 msgid "Unblock user failed."
 msgstr "فشل إلغاء منع المستخدم."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "رسائل مباشره من %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, fuzzy, php-format
 msgid "All the direct messages sent from %s"
 msgstr "رسائل مباشره من %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "رساله مباشره %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, fuzzy, php-format
 msgid "All the direct messages sent to %s"
 msgstr "رساله مباشره %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "لا نص فى الرسالة!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
+#: actions/apidirectmessagenew.php:127
 #, fuzzy, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
+msgstr[1] "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
+msgstr[2] "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
+msgstr[3] "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
+msgstr[4] "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
+msgstr[5] "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "لم يُعثر على المستخدم المستلم."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 #, fuzzy
@@ -531,16 +552,21 @@ msgstr "مجموعات %s"
 msgid "Upload failed."
 msgstr "ارفع ملفًا"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "امارة تسجيل الدخول اللى اتحطت مش موجوده."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
 #, fuzzy
-msgid "Invalid token."
+msgid "Invalid request token."
 msgstr "حجم غير صالح."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -558,36 +584,24 @@ msgstr "حجم غير صالح."
 msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "نيكنيم / پاسوورد مش مظبوطه!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 #, fuzzy
 msgid "Database error deleting OAuth application user."
 msgstr "خطأ قاعده البيانات أثناء حذف المستخدم OAuth app"
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 #, fuzzy
 msgid "Database error inserting OAuth application user."
 msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -596,15 +610,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr ""
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr ""
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -613,11 +627,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "الحساب"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -626,21 +640,44 @@ msgid "Nickname"
 msgstr "الاسم المستعار"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "كلمه السر"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "ارفض"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "ألغِ"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "اسمح"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+msgid "Authorize access to your account information."
+msgstr ""
+
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "لا رمز تأكيد."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "لا تملك تصريحًا."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
@@ -807,7 +844,8 @@ msgid "Preview"
 msgstr "عاين"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "احذف"
 
@@ -862,12 +900,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "ملاحظة"
@@ -880,12 +919,13 @@ msgstr "لا تمنع هذا المستخدم"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
 msgid "Yes"
@@ -904,6 +944,7 @@ msgstr "فشل حفظ معلومات المنع."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1032,7 +1073,7 @@ msgstr "انت مش بتملك الapplication دى."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1059,6 +1100,56 @@ msgstr "لا تحذف هذا الإشعار"
 msgid "Delete this application"
 msgstr "احذف هذا الإشعار"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "يجب أن تكون والجًا لتنشئ مجموعه."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "لا اسم مستعار."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "لست عضوا فى تلك المجموعه."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "تعذر تحديث المجموعه."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s ساب جروپ %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "احذف المستخدم"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "لا تحذف هذا الإشعار"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "احذف هذا المستخدم"
+
 #. 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
@@ -1131,54 +1222,64 @@ msgstr "التصميم"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "مسار شعار غير صالح."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "مسار شعار غير صالح."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "المراسله الفوريه غير متوفره."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "غيّر الشعار"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "شعار الموقع"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "شعار الموقع"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "غيّر السمة"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "سمه الموقع"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "سمه الموقع."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "سمه الموقع"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "تغيير صوره الخلفية"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "الخلفية"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, fuzzy, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1186,67 +1287,67 @@ msgid ""
 msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "مكّن"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "عطّل"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "مكّن صوره الخلفيه أو عطّلها."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 #, fuzzy
 msgid "Tile background image"
 msgstr "تغيير صوره الخلفية"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "تغيير الألوان"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "المحتوى"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "الشريط الجانبي"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "النص"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "وصلات"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "استخدم المبدئيات"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "استعد التصميمات المبدئية"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "ارجع إلى المبدئي"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1256,7 +1357,7 @@ msgstr "ارجع إلى المبدئي"
 msgid "Save"
 msgstr "أرسل"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "احفظ التصميم"
 
@@ -1737,7 +1838,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "خطأ أثناء تحديث الملف الشخصى البعيد"
@@ -2290,11 +2391,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "يجب أن تلج لتُعدّل المجموعات."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "لا اسم مستعار."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2537,6 +2633,11 @@ msgstr "أرسل رساله مباشره إلى هذا المستخدم"
 msgid "No content!"
 msgstr "لا محتوى!"
 
+#: actions/newmessage.php:150
+#, fuzzy, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "لا مستلم حُدّد."
@@ -2690,7 +2791,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr " مش نظام بيانات مدعوم."
 
@@ -2840,148 +2941,167 @@ msgstr "المسارات"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "دليل السمات"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "دليل الأفتار."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "دليل الخلفيات"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "لا يمكن قراءه دليل المحليات: %s"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 #, fuzzy
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "الموقع"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "خادوم"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "اسم مضيف خادوم الموقع."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "المسار"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "مسار الموقع"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "مسار المحليات"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "دليل السمات"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "مسار دليل المحليات"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "مسارات فاخرة"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "أأستخدم مسارات فاخره (يمكن قراءتها وتذكرها بسهوله أكبر)؟"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "السمة"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "خادوم السمات"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "سمه الموقع."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "مسار السمات"
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "دليل السمات"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "أفتارات"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "خادوم الأفتارات"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "مسار الأفتارات"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "دليل الأفتار."
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "خلفيات"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "خادوم الخلفيات"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "مسار الخلفيات"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "دليل الخلفيات"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "مطلقا"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "أحيانًا"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "دائمًا"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "استخدم SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL server"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "مسار الموقع"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "دليل السمات"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "مسار دليل المحليات"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "أفتارات"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "خادوم الأفتارات"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "مسار الأفتارات"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "دليل الأفتار."
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "خلفيات"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "مرفقات"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "مطلقا"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "أحيانًا"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "دائمًا"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "استخدم SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "احفظ المسارات"
 
@@ -3709,7 +3829,7 @@ msgstr "المنظمه"
 msgid "Description"
 msgstr "الوصف"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "إحصاءات"
@@ -3851,45 +3971,45 @@ msgstr "الكنى"
 msgid "Group actions"
 msgstr "تصرفات المستخدم"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr ""
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr ""
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr ""
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, fuzzy, php-format
 msgid "FOAF for %s group"
 msgstr "مجموعه %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "الأعضاء"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "جميع الأعضاء"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "أنشئ"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3903,7 +4023,7 @@ msgstr ""
 "الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! "
 "([اقرأ المزيد](%%doc.help%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3914,7 +4034,7 @@ msgstr ""
 "هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-"
 "blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/)."
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "الإداريون"
 
@@ -4842,7 +4962,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "النسخه"
 
@@ -5076,7 +5196,7 @@ msgid "Unable to save tag."
 msgstr "تعذّر حفظ الوسوم."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr ""
 
@@ -5197,130 +5317,130 @@ msgid "Untitled page"
 msgstr "صفحه غير مُعنونة"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 #, fuzzy
 msgid "Primary site navigation"
 msgstr "ضبط الموقع الأساسي"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "الملف الشخصى ومسار الأصدقاء الزمني"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 #, fuzzy
 msgctxt "MENU"
 msgid "Personal"
 msgstr "شخصية"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "غير كلمه سرّك"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "كونيكشونات (Connections)"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "اتصل"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "ضبط الموقع الأساسي"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 #, fuzzy
 msgctxt "MENU"
 msgid "Admin"
 msgstr "إداري"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 #, fuzzy
 msgctxt "MENU"
 msgid "Invite"
 msgstr "ادعُ"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "سمه الموقع."
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "الشعار"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "أنشئ مجموعه جديدة"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 #, fuzzy
 msgctxt "MENU"
 msgid "Register"
 msgstr "سجّل"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "لُج إلى الموقع"
 
-#: lib/action.php:503
+#: lib/action.php:531
 #, fuzzy
 msgctxt "MENU"
 msgid "Login"
 msgstr "لُج"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "مساعدة"
 
-#: lib/action.php:509
+#: lib/action.php:537
 #, fuzzy
 msgctxt "MENU"
 msgid "Help"
 msgstr "مساعدة"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "ابحث عن أشخاص أو نص"
 
-#: lib/action.php:515
+#: lib/action.php:543
 #, fuzzy
 msgctxt "MENU"
 msgid "Search"
@@ -5328,69 +5448,69 @@ msgstr "ابحث"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "إشعار الموقع"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "المشاهدات المحلية"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "إشعار الصفحة"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 #, fuzzy
 msgid "Secondary site navigation"
 msgstr "ضبط الموقع الأساسي"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "مساعدة"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "عن"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "الأسئله المكررة"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "الشروط"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "خصوصية"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "المصدر"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "اتصل"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 #, fuzzy
 msgid "Badge"
 msgstr "نبّه"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 #, fuzzy
 msgid "StatusNet software license"
 msgstr "رخصه محتوى الموقع"
@@ -5399,7 +5519,7 @@ msgstr "رخصه محتوى الموقع"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5409,7 +5529,7 @@ msgstr ""
 "broughtbyurl%%). "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr ""
@@ -5418,7 +5538,7 @@ msgstr ""
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5430,51 +5550,51 @@ msgstr ""
 "agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "رخصه محتوى الموقع"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 #, fuzzy
 msgid "Pagination"
 msgstr "المنظمه"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "بعد"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "قبل"
 
@@ -5623,12 +5743,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5719,11 +5839,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "ألغِ"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5750,11 +5865,6 @@ msgstr "استرجع"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "مرفقات"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6197,14 +6307,14 @@ msgstr "رسائل قصيرة"
 msgid "Updates by SMS"
 msgstr ""
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "كونيكشونات (Connections)"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 #, fuzzy
 msgid "Authorized connected applications"
@@ -6900,24 +7010,24 @@ msgstr "نبّه"
 msgid "Send a nudge to this user"
 msgstr "أرسل رساله مباشره إلى هذا المستخدم"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "تعذّر إدراج اشتراك جديد."
 
@@ -7273,17 +7383,17 @@ msgid "Moderator"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "قبل لحظات قليلة"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "قبل دقيقه تقريبًا"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7295,12 +7405,12 @@ msgstr[4] ""
 msgstr[5] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "قبل ساعه تقريبًا"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7312,12 +7422,12 @@ msgstr[4] ""
 msgstr[5] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "قبل يوم تقريبا"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7329,12 +7439,12 @@ msgstr[4] ""
 msgstr[5] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "قبل شهر تقريبًا"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7346,7 +7456,7 @@ msgstr[4] ""
 msgstr[5] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "قبل سنه تقريبًا"
 
@@ -7374,3 +7484,24 @@ msgstr "ما فيش ID متحدد لليوزر."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "ارفض"
+
+#~ msgid "Path to locales"
+#~ msgstr "مسار المحليات"
+
+#~ msgid "Theme server"
+#~ msgstr "خادوم السمات"
+
+#~ msgid "Theme path"
+#~ msgstr "مسار السمات"
+
+#~ msgid "Background server"
+#~ msgstr "خادوم الخلفيات"
+
+#~ msgid "Background path"
+#~ msgstr "مسار الخلفيات"
+
+#~ msgid "Background directory"
+#~ msgstr "دليل الخلفيات"
diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po
index 6c26ec4e7c..0dccc7b50a 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:19+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:29+0000\n"
 "Language-Team: Bulgarian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -91,14 +91,15 @@ msgstr "Запазване"
 msgid "No such page."
 msgstr "Няма такака страница."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -192,12 +193,13 @@ msgstr "Вие и приятелите"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Бележки от %1$s и приятели в %2$s."
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -224,7 +226,7 @@ msgstr "Не е открит методът в API."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -298,45 +300,63 @@ msgstr "Грешка при блокиране на потребителя."
 msgid "Unblock user failed."
 msgstr "Грешка при разблокиране на потребителя."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Преки съобщения от %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Всички преки съобщения, изпратени от %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Преки съобщения до %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Всички преки съобщения, изпратени до %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Липсва текст на съобщението"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Твърде дълго. Може да е най-много %d знака."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Твърде дълго. Може да е най-много %d знака."
+msgstr[1] "Твърде дълго. Може да е най-много %d знака."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Получателят не е открит"
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Не може да изпращате преки съобщения до хора, които не са в списъка ви с "
 "приятели."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си "
+"тихичко."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -521,16 +541,21 @@ msgstr "групи в %s"
 msgid "Upload failed."
 msgstr "Качване на файл"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Не е указана бележка."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
 #, fuzzy
-msgid "Invalid token."
+msgid "Invalid request token."
 msgstr "Неправилен размер."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -548,35 +573,23 @@ msgstr "Неправилен размер."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Неправилно име или парола!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Да не се изтрива приложението"
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 #, fuzzy
 msgid "Database error inserting OAuth application user."
 msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -585,15 +598,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Неочаквано изпращане на форма."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Разрешение или забрана на достъпа"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -602,11 +615,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Сметка"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -615,21 +628,44 @@ msgid "Nickname"
 msgstr "Псевдоним"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Парола"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Забрана"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Отказ"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Разрешение"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+msgid "Authorize access to your account information."
+msgstr ""
+
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Няма код за потвърждение."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Не сте абонирани за никого."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
@@ -793,7 +829,8 @@ msgid "Preview"
 msgstr "Преглед"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Изтриване"
 
@@ -846,12 +883,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Не"
@@ -864,12 +902,13 @@ msgstr "Да не се блокира този потребител"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Да"
@@ -887,6 +926,7 @@ msgstr "Грешка при записване данните за блокир
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1013,7 +1053,7 @@ msgstr "Не сте собственик на това приложение."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Имаше проблем със сесията ви в сайта."
 
@@ -1038,6 +1078,56 @@ msgstr "Да не се изтрива приложението"
 msgid "Delete this application"
 msgstr "Изтриване на това приложение"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "За напуснете група, трябва да сте влезли."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "Няма псевдоним."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Не членувате в тази група."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Грешка при обновяване на групата."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s напусна групата %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Изтриване на потребител"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Да не се изтрива бележката"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Изтриване на този потребител"
+
 #. 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
@@ -1111,57 +1201,67 @@ msgstr "Версия"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 #, fuzzy
 msgid "Invalid logo URL."
 msgstr "Неправилен размер."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Неправилен размер."
+
+#: actions/designadminpanel.php:341
 #, fuzzy, php-format
 msgid "Theme not available: %s."
 msgstr "Страницата не е достъпна във вида медия, който приемате"
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Смяна на логото"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Лого на сайта"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Лого на сайта"
+
+#: actions/designadminpanel.php:466
 #, fuzzy
 msgid "Change theme"
 msgstr "Промяна"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Път до сайта"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 #, fuzzy
 msgid "Theme for the site."
 msgstr "Излизане от сайта"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "Нова бележка"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Смяна на изображението за фон"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Фон"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1171,68 +1271,68 @@ msgstr ""
 "2MB."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Вкл."
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Изкл."
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 #, fuzzy
 msgid "Turn background image on or off."
 msgstr "Смяна на изображението за фон"
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 #, fuzzy
 msgid "Tile background image"
 msgstr "Смяна на изображението за фон"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Смяна на цветовете"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Съдържание"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Страничен панел"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Текст"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Лиценз"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr ""
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr ""
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr ""
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1242,7 +1342,7 @@ msgstr ""
 msgid "Save"
 msgstr "Запазване"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 #, fuzzy
 msgid "Save design"
 msgstr "Запазване настройките на сайта"
@@ -1725,7 +1825,7 @@ msgstr "Грешка при преобразуване на tokens за одоб
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Непозната версия на протокола OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "Грешка при обновяване на отдалечен профил"
@@ -2313,11 +2413,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "За да се присъедините към група, трябва да сте влезли."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "Няма псевдоним."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2567,6 +2662,11 @@ msgstr "Не може да изпращате съобщения до този 
 msgid "No content!"
 msgstr "Няма съдържание!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Твърде дълго. Може да е най-много %d знака."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Не е указан получател."
@@ -2723,7 +2823,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Неподдържан формат на данните"
 
@@ -2874,150 +2974,166 @@ msgstr "Пътища"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, fuzzy, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Страницата не е достъпна във вида медия, който приемате"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Директория на аватара"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "Директория на фона"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Страницата не е достъпна във вида медия, който приемате"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Сайт"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Сървър"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Път"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Път до сайта"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Директория на аватара"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Кратки URL-адреси"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr ""
 
-#: actions/pathsadminpanel.php:264
+#: actions/pathsadminpanel.php:265
 #, fuzzy
-msgid "Theme server"
-msgstr "SSL-сървър"
+msgid "Server for themes"
+msgstr "Излизане от сайта"
 
-#: actions/pathsadminpanel.php:268
-#, fuzzy
-msgid "Theme path"
-msgstr "Път до сайта"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-#, fuzzy
-msgid "Theme directory"
-msgstr "Директория на аватара"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Аватари"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Сървър на аватара"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Път до аватара"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Директория на аватара"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Фонове"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Сървър на фона"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Път до фона"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Директория на фона"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Никога"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Понякога"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Винаги"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Използване на SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Кога да се използва SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-сървър"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Път до сайта"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Директория на аватара"
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Аватари"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Сървър на аватара"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Път до аватара"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Директория на аватара"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Фонове"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+#, fuzzy
+msgid "Attachments"
+msgstr "Няма прикачени файлове."
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Никога"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Понякога"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Винаги"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Използване на SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Кога да се използва SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Запазване на пътищата"
 
@@ -3762,7 +3878,7 @@ msgstr "Организация"
 msgid "Description"
 msgstr "Описание"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Статистики"
@@ -3899,45 +4015,45 @@ msgstr "Псевдоними"
 msgid "Group actions"
 msgstr "Потребителски действия"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Емисия с бележки на %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Емисия с бележки на %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Емисия с бележки на %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Изходяща кутия за %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Членове"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Всички членове"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Създадена на"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3947,7 +4063,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3956,7 +4072,7 @@ msgid ""
 "their life and interests. "
 msgstr ""
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Администратори"
 
@@ -4885,7 +5001,7 @@ msgid "Plugins"
 msgstr "Приставки"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Версия"
 
@@ -5127,7 +5243,7 @@ msgid "Unable to save tag."
 msgstr "Грешка при запазване на етикетите."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 #, fuzzy
 msgid "You have been banned from subscribing."
 msgstr "Потребителят е забранил да се абонирате за него."
@@ -5251,191 +5367,191 @@ msgid "Untitled page"
 msgstr "Неозаглавена страница"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 #, fuzzy
 msgid "Primary site navigation"
 msgstr "Основна настройка на сайта"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Лично"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Промяна на поща, аватар, парола, профил"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Свързване към услуги"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Свързване"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Промяна настройките на сайта"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 #, fuzzy
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Настройки"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Поканете приятели и колеги да се присъединят към вас в %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 #, fuzzy
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Покани"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Излизане от сайта"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Изход"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Създаване на нова сметка"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Регистриране"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Влизане в сайта"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Вход"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Помощ"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Помощ"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Търсене за хора или бележки"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Търсене"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 #, fuzzy
 msgid "Site notice"
 msgstr "Нова бележка"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr ""
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 #, fuzzy
 msgid "Page notice"
 msgstr "Нова бележка"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Основна настройка на сайта"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Помощ"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Относно"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Въпроси"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Условия"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Поверителност"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Изходен код"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Контакт"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Табелка"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Лиценз на програмата StatusNet"
 
@@ -5443,7 +5559,7 @@ msgstr "Лиценз на програмата StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5453,7 +5569,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%). "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** е услуга за микроблогване."
@@ -5462,7 +5578,7 @@ msgstr "**%%site.name%%** е услуга за микроблогване."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5474,50 +5590,50 @@ msgstr ""
 "licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Лиценз на съдържанието"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Страниране"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "След"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Преди"
 
@@ -5666,12 +5782,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5759,11 +5875,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Отказ"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5791,12 +5902,6 @@ msgstr "Премахване"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-#, fuzzy
-msgid "Attachments"
-msgstr "Няма прикачени файлове."
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6227,14 +6332,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Бележки през SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Свързване"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 #, fuzzy
 msgid "Authorized connected applications"
@@ -6935,24 +7040,24 @@ msgstr "Побутване"
 msgid "Send a nudge to this user"
 msgstr "Побутване на този потребител"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Грешка при добавяне на нов абонамент."
 
@@ -7310,17 +7415,17 @@ msgid "Moderator"
 msgstr "Модератор"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "преди няколко секунди"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "преди около минута"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7328,12 +7433,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "преди около час"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7341,12 +7446,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "преди около ден"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7354,12 +7459,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "преди около месец"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7367,7 +7472,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "преди около година"
 
@@ -7395,3 +7500,23 @@ msgstr "Не е указана група."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "Забрана"
+
+#, fuzzy
+#~ msgid "Theme server"
+#~ msgstr "SSL-сървър"
+
+#, fuzzy
+#~ msgid "Theme path"
+#~ msgstr "Път до сайта"
+
+#~ msgid "Background server"
+#~ msgstr "Сървър на фона"
+
+#~ msgid "Background path"
+#~ msgstr "Път до фона"
+
+#~ msgid "Background directory"
+#~ msgstr "Директория на фона"
diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po
index a79645e16b..dfcb095e7a 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:23+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:32+0000\n"
 "Language-Team: Breton \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -92,14 +92,15 @@ msgstr "Enrollañ"
 msgid "No such page."
 msgstr "N'eus ket eus ar bajenn-se."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -176,13 +177,13 @@ msgid ""
 msgstr ""
 
 #: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211
-#, fuzzy, php-format
+#, php-format
 msgid ""
 "Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
 "post a notice to them."
 msgstr ""
-"Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini "
-"gentañ da embann un dra !"
+"Perak ne [groufec'h ket ur gont](%%%%action.register%%%%) ha goude-se demata "
+"%s pe postañ ur c'hemenn bennak evitañ."
 
 #. TRANS: H1 text
 #: actions/all.php:182
@@ -197,12 +198,13 @@ msgstr "C'hwi hag o mignoned"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Hizivadennoù %1$s ha mignoned e %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -229,7 +231,7 @@ msgstr "N'eo ket bet kavet an hentenn API !"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -301,45 +303,63 @@ msgstr "N'eus ket bet tu da stankañ an implijer."
 msgid "Unblock user failed."
 msgstr "N'eus ket bet tu da zistankañ an implijer."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Kemennadennoù war-eeun kaset gant %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "An holl gemennadennoù war-eeun kaset gant %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Kemennadennoù war-eeun kaset da %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "An holl gemennadennoù war-eeun kaset da %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Kemenadenn hep testenn !"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn."
+msgstr[1] "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "N'eo ket bet kavet ar resever."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Ne c'helloc'h ket kas kemennadennoù personel d'an implijerien n'int ket ho "
 "mignoned."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Na gasit ket a gemennadenn deoc'h c'hwi ho unan ; lavarit an traoù-se en ho "
+"penn kentoc'h."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -347,7 +367,7 @@ msgstr "N'eo bet kavet statud ebet gant an ID-mañ."
 
 #: actions/apifavoritecreate.php:121
 msgid "This status is already a favorite."
-msgstr "Ur pennroll eo dija an ali-mañ."
+msgstr "Ur pennroll eo dija ar c'hemenn-mañ."
 
 #. TRANS: Error message text shown when a favorite could not be set.
 #: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
@@ -522,15 +542,21 @@ msgstr "strolladoù war %s"
 msgid "Upload failed."
 msgstr "Enporzhiadenn c'hwitet."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Fichenn direizh."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Arventenn oauth_token nann-roet."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Fichenn direizh."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -548,35 +574,23 @@ msgstr "Fichenn direizh."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Lesanv / ger tremen direizh !"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 #, fuzzy
 msgid "Database error deleting OAuth application user."
 msgstr "Arabat eo dilemel ar poellad-mañ"
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -585,15 +599,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Kinnig ar furmskrid dic'hortoz."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "C'hoant 'zo gant ur poellad kevreañ gant ho kont"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Aotreañ pe nac'h ar moned"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -602,11 +616,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Kont"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -615,23 +629,47 @@ msgid "Nickname"
 msgstr "Lesanv"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Ger-tremen"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Nac'hañ"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Nullañ"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Aotreañ"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Aotreañ pe nac'hañ ar moned da ditouroù ho kont."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Nullet eo bet kadarnadenn ar bostelerezh prim."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "N'oc'h ket aotreet."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Ezhomm en deus an argerzh-mañ ur POST pe un DELETE."
@@ -653,7 +691,7 @@ msgstr "Ne c'helloc'h ket adlavar ho alioù."
 #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user.
 #: actions/apistatusesretweet.php:92 lib/command.php:541
 msgid "Already repeated that notice."
-msgstr "Adlavaret o peus dija an ali-mañ."
+msgstr "Kemenn bet adkemeret dija."
 
 #: actions/apistatusesshow.php:139
 msgid "Status deleted."
@@ -792,7 +830,8 @@ msgid "Preview"
 msgstr "Rakwelet"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Diverkañ"
 
@@ -830,7 +869,7 @@ msgstr "Dilammet eo bet an Avatar."
 
 #: actions/block.php:69
 msgid "You already blocked that user."
-msgstr "Stanket o peus dija an implijer-mañ."
+msgstr "Stanket ho peus dija an implijer-mañ."
 
 #: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158
 msgid "Block user"
@@ -845,15 +884,16 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
-msgstr "Nann"
+msgstr "Ket"
 
 #. TRANS: Submit button title for 'No' when blocking a user.
 #. TRANS: Submit button title for 'No' when deleting a user.
@@ -863,12 +903,13 @@ msgstr "Arabat stankañ an implijer-mañ"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Ya"
@@ -886,6 +927,7 @@ msgstr "Diposubl eo enrollañ an titouroù stankañ."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1012,7 +1054,7 @@ msgstr "N'oc'h ket perc'henn ar poellad-se."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h."
 
@@ -1037,6 +1079,55 @@ msgstr "Arabat eo dilemel ar poellad-mañ"
 msgid "Delete this application"
 msgstr "Dilemel ar poelad-se"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad"
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Lesanv pe ID ebet."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "N'oc'h ket ezel eus ar strollad-mañ."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Diposubl eo hizivaat ar strollad."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s en deus kuitaet ar strollad %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Diverkañ an implijer"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Arabat dilemel ar c'hemenn-mañ"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Diverkañ an implijer-mañ"
+
 #. 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
@@ -1050,7 +1141,7 @@ msgstr "Nann-luget."
 
 #: actions/deletenotice.php:74
 msgid "Can't delete this notice."
-msgstr "Diposupl eo dilemel an ali-mañ."
+msgstr "Dibosupl eo dilemel ar c'hemenn-mañ."
 
 #: actions/deletenotice.php:106
 msgid ""
@@ -1064,17 +1155,17 @@ msgstr "Dilemel un ali"
 
 #: actions/deletenotice.php:147
 msgid "Are you sure you want to delete this notice?"
-msgstr "Ha sur oc'h ho peus c'hoant dilemel an ali-mañ ?"
+msgstr "Ha sur oc'h ho peus c'hoant dilemel ar c'hemenn-mañ ?"
 
 #. TRANS: Submit button title for 'No' when deleting a notice.
 #: actions/deletenotice.php:154
 msgid "Do not delete this notice"
-msgstr "Arabat dilemel an ali-mañ"
+msgstr "Arabat dilemel ar c'hemenn-mañ"
 
 #. TRANS: Submit button title for 'Yes' when deleting a notice.
 #: actions/deletenotice.php:161 lib/noticelist.php:667
 msgid "Delete this notice"
-msgstr "Dilemel an ali-mañ"
+msgstr "Dilemel ar c'hemenn-mañ"
 
 #: actions/deleteuser.php:67
 msgid "You cannot delete users."
@@ -1109,53 +1200,63 @@ msgstr "Design"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "URL fall evit al logo."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "URL fall evit al logo."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "N'eus ket eus ar gaoz-se : %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Cheñch al logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo al lec'hienn"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo al lec'hienn"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Lakaat un dodenn all"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Dodenn al lec'hienn"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Dodenn evit al lec'hienn."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Dodenn personelaet"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Kemmañ ar skeudenn foñs"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Background"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1163,66 +1264,66 @@ msgid ""
 msgstr ""
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Gweredekaet"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Diweredekaet"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Adober gant ar skeudenn drekleur"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Kemmañ al livioù"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Endalc'h"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barenn kostez"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Testenn"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Liammoù"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Araokaet"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS personelaet"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Implijout an talvoudoù dre ziouer"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Adlakaat an neuz dre ziouer."
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Adlakaat an arventennoù dre ziouer"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1232,13 +1333,13 @@ msgstr "Adlakaat an arventennoù dre ziouer"
 msgid "Save"
 msgstr "Enrollañ"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Enrollañ an design"
 
 #: actions/disfavor.php:81
 msgid "This notice is not a favorite!"
-msgstr "N'eo ket an ali-mañ ur pennroll !"
+msgstr "N'eo ket ar c'hemenn-mañ ur pennroll !"
 
 #: actions/disfavor.php:94
 msgid "Add to favorites"
@@ -1545,9 +1646,8 @@ msgstr ""
 #. TRANS: Message given canceling SMS phone number confirmation that is not pending.
 #: actions/emailsettings.php:423 actions/imsettings.php:386
 #: actions/smssettings.php:408
-#, fuzzy
 msgid "No pending confirmation to cancel."
-msgstr "Nullet eo bet kadarnadenn ar bostelerezh prim."
+msgstr "Kadarnadenn ebet da vezañ nullet."
 
 #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
 #: actions/emailsettings.php:428
@@ -1583,19 +1683,17 @@ msgstr "Dibosupl eo hizivaat doser an implijer."
 
 #. TRANS: Message given after successfully removing an incoming e-mail address.
 #: actions/emailsettings.php:512 actions/smssettings.php:581
-#, fuzzy
 msgid "Incoming email address removed."
-msgstr "Chomlec'h postel ebet o tont."
+msgstr "Diverket eo bet ar chomlec'h postel o tont tre."
 
 #. TRANS: Message given after successfully adding an incoming e-mail address.
 #: actions/emailsettings.php:536 actions/smssettings.php:605
-#, fuzzy
 msgid "New incoming email address added."
-msgstr "Chomlec'h postel ebet o tont."
+msgstr "Ouzhpennet ez eus bet ur chomlec'h postel nevez o tont tre"
 
 #: actions/favor.php:79
 msgid "This notice is already a favorite!"
-msgstr "Ouzhpennet eo bet an ali-mañ d'ho pennrolloù dija !"
+msgstr "Ouzhpennet eo bet ar c'hemenn-mañ d'ho pennrolloù dija !"
 
 #: actions/favor.php:92 lib/disfavorform.php:144
 msgid "Disfavor favorite"
@@ -1708,7 +1806,7 @@ msgstr "Dibosupl eo kaout ur jedaouer reked."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Fazi en ur hizivaat ar profil a-bell."
 
@@ -2259,10 +2357,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Rankout a reoc'h bezañ luget evit mont en ur strollad."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Lesanv pe ID ebet."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2420,7 +2514,7 @@ msgstr ""
 
 #: actions/login.php:269
 msgid "Lost or forgotten password?"
-msgstr "Ha kollet o peus ho ker-tremen ?"
+msgstr "Ha kollet ho peus ho ker-tremen ?"
 
 #: actions/login.php:288
 msgid ""
@@ -2439,7 +2533,7 @@ msgstr "Kevreit gant ho anv implijer hag ho ker-tremen."
 msgid ""
 "Don't have a username yet? [Register](%%action.register%%) a new account."
 msgstr ""
-"N'o peus ket a anv implijer evit c'hoazh ? [Krouit](%%action.register%%) ur "
+"N'ho peus ket a anv implijer evit c'hoazh ? [Krouit](%%action.register%%) ur "
 "gont nevez."
 
 #: actions/makeadmin.php:92
@@ -2509,9 +2603,14 @@ msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ."
 msgid "No content!"
 msgstr "Goullo eo !"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
-msgstr "N'o peus ket lakaet a resever."
+msgstr "N'ho peus ket lakaet a resever."
 
 #. TRANS: Error text shown when trying to send a direct message to self.
 #: actions/newmessage.php:164 lib/command.php:503
@@ -2612,12 +2711,12 @@ msgstr "Poelladoù OAuth"
 
 #: actions/oauthappssettings.php:85
 msgid "Applications you have registered"
-msgstr "Ar poelladoù o peus enrollet"
+msgstr "Ar poelladoù ho peus enrollet"
 
 #: actions/oauthappssettings.php:135
 #, php-format
 msgid "You have not registered any applications yet."
-msgstr "N'o peus enrollet poellad ebet evit poent."
+msgstr "N'ho peus enrollet poellad ebet evit poent."
 
 #: actions/oauthconnectionssettings.php:72
 msgid "Connected applications"
@@ -2637,9 +2736,8 @@ msgid "Unable to revoke access for app: %s."
 msgstr "Dibosupl eo nullañ moned ar poellad : "
 
 #: actions/oauthconnectionssettings.php:198
-#, fuzzy
 msgid "You have not authorized any applications to use your account."
-msgstr "N'o peus enrollet poellad ebet evit poent."
+msgstr "N'ho peus aotreet poellad ebet da implijout ho kont."
 
 #: actions/oauthconnectionssettings.php:211
 msgid "Developers can edit the registration settings for their applications "
@@ -2668,7 +2766,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 #, fuzzy
 msgid "Not a supported data format."
 msgstr "Diembreget eo ar furmad-se."
@@ -2823,149 +2921,165 @@ msgstr "Hentoù"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "N'eus ket eus ar gaoz-se : %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "N'eus ket eus ar gaoz-se : %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "N'eus ket eus ar gaoz-se : %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "N'eus ket eus ar gaoz-se : %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Lec'hienn"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Servijer"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Anv ostiz servijer al lec'hienn."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Hent"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Hent al lec'hienn"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Doser an temoù"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "URLioù brav"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Danvez"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Servijer danvezioù"
-
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Hentad an tem"
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Doser an temoù"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avataroù"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Servijer avatar"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Hent an avataroù"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Restroù an avataroù"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Backgroundoù"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Servijer ar backgroundoù"
-
-#: actions/pathsadminpanel.php:309
+#: actions/pathsadminpanel.php:265
 #, fuzzy
-msgid "Background path"
-msgstr "Background"
+msgid "Server for themes"
+msgstr "Dodenn evit al lec'hienn."
 
-#: actions/pathsadminpanel.php:313
-#, fuzzy
-msgid "Background directory"
-msgstr "Servijer ar backgroundoù"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Morse"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "A-wechoù"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Atav"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Implijout SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Peur implijout SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Servijer SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Hent al lec'hienn"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Doser an temoù"
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avataroù"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Servijer avatar"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Hent an avataroù"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Restroù an avataroù"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Backgroundoù"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Pezhioù stag"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Morse"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "A-wechoù"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Atav"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Implijout SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Peur implijout SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Enrollañ an hentadoù."
 
@@ -3295,7 +3409,8 @@ msgstr "Lesanv pe chomlec'h postel"
 
 #: actions/recoverpassword.php:193
 msgid "Your nickname on this server, or your registered email address."
-msgstr "Ho lesanv war ar servijer-mañ, pe ar chomlec'h postel o peus enrollet."
+msgstr ""
+"Ho lesanv war ar servijer-mañ, pe ar chomlec'h postel ho peus enrollet."
 
 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200
 msgid "Recover"
@@ -3518,7 +3633,7 @@ msgstr "Lesanv an implijer"
 
 #: actions/remotesubscribe.php:130
 msgid "Nickname of the user you want to follow"
-msgstr "Lesanv an implijer o peus c'hoant heuliañ"
+msgstr "Lesanv an implijer ho peus c'hoant heuliañ"
 
 #: actions/remotesubscribe.php:133
 msgid "Profile URL"
@@ -3563,7 +3678,7 @@ msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h."
 
 #: actions/repeat.php:90
 msgid "You already repeated that notice."
-msgstr "Adkemeret o peus dija an ali-mañ."
+msgstr "Adkemeret ho peus ar c'hemenn-mañ c'hoazh."
 
 #: actions/repeat.php:114 lib/noticelist.php:686
 msgid "Repeated"
@@ -3708,7 +3823,7 @@ msgstr "Aozadur"
 msgid "Description"
 msgstr "Deskrivadur"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Stadegoù"
@@ -3732,7 +3847,7 @@ msgstr "Titouroù ar poelad"
 
 #: actions/showapplication.php:263
 msgid "Consumer key"
-msgstr "Alc'hwez an implijer"
+msgstr "Alc'hwez implijer"
 
 #: actions/showapplication.php:268
 msgid "Consumer secret"
@@ -3759,7 +3874,7 @@ msgstr ""
 #: actions/showapplication.php:309
 msgid "Are you sure you want to reset your consumer key and secret?"
 msgstr ""
-"Ha sur oc'h o peus c'hoant adderaouekaat ho alc'hwez bevezer ha sekred ?"
+"Ha sur oc'h ho peus c'hoant adderaouekaat ho alc'hwez bevezer ha sekred ?"
 
 #: actions/showfavorites.php:79
 #, php-format
@@ -3843,45 +3958,45 @@ msgstr "Aliasoù"
 msgid "Group actions"
 msgstr "Obererezh ar strollad"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Neudenn alioù ar strollad %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Neudenn alioù ar strollad %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Neudenn alioù ar strollad %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Mignon ur mignon evit ar strollad %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Izili"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "An holl izili"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Krouet"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3893,7 +4008,7 @@ 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:461
+#: actions/showgroup.php:467
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3904,7 +4019,7 @@ 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:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Merourien"
 
@@ -4193,7 +4308,7 @@ msgstr "Kod kadarnaat"
 #. TRANS: Form field instructions in SMS settings form.
 #: actions/smssettings.php:144
 msgid "Enter the code you received on your phone."
-msgstr "Lakait ar c'hod o peus resevet war ho pellgomzer hezoug."
+msgstr "Lakait ar c'hod ho peus resevet war ho pellgomzer hezoug."
 
 #. TRANS: Button label to confirm SMS confirmation code in SMS settings.
 #: actions/smssettings.php:148
@@ -4421,7 +4536,8 @@ msgstr ""
 #, php-format
 msgid "%s has no subscribers. Want to be the first?"
 msgstr ""
-"n'ez eus den ebet koumanantet da %s. Ha c'hoant o peus bezañ an hini gentañ ?"
+"n'ez eus den ebet koumanantet da %s. Ha c'hoant ho peus bezañ an hini "
+"gentañ ?"
 
 #: actions/subscribers.php:114
 #, fuzzy, php-format
@@ -4545,7 +4661,7 @@ msgstr "N'eus ket eus ar bajenn-se."
 
 #: actions/unblock.php:59
 msgid "You haven't blocked that user."
-msgstr "N'o peus ket stanket an implijer-mañ."
+msgstr "N'ho peus ket stanket an implijer-mañ."
 
 #: actions/unsandbox.php:72
 #, fuzzy
@@ -4835,7 +4951,7 @@ msgid "Plugins"
 msgstr "Pluginoù"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Stumm"
 
@@ -5067,7 +5183,7 @@ msgid "Unable to save tag."
 msgstr "Dibosupl eo enrollañ an tikedenn."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Nac'het ez eus bet deoc'h en em goumanantiñ."
 
@@ -5187,187 +5303,187 @@ msgid "Untitled page"
 msgstr "Pajenn hep anv"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 #, fuzzy
 msgid "Primary site navigation"
 msgstr "Arventennoù diazez al lec'hienn"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personel"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Kemmañ ho chomlec'h postel, hoc'h avatar, ho ger-tremen, ho profil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Liammañ d'ar servijoù"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Kevreañ"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Kemmañ arventennoù al lec'hienn"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Merañ"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Pediñ"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Digevreañ diouzh al lec'hienn"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Digevreañ"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Krouiñ ur gont"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "En em enskrivañ"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Kevreañ d'al lec'hienn"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Kevreañ"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Sikour din !"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Skoazell"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Klask tud pe un tamm testenn"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Klask"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Ali al lec'hienn"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Selloù lec'hel"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Ali ar bajenn"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 #, fuzzy
 msgid "Secondary site navigation"
 msgstr "Arventennoù diazez al lec'hienn"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Skoazell"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Diwar-benn"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAG"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "AIH"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Prevezded"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Mammenn"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Darempred"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Badj"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Aotre-implijout ar meziant StatusNet"
 
@@ -5375,7 +5491,7 @@ msgstr "Aotre-implijout ar meziant StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5383,7 +5499,7 @@ msgid ""
 msgstr ""
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** a zo ur servij microblogging."
@@ -5392,7 +5508,7 @@ msgstr "**%%site.name%%** a zo ur servij microblogging."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5401,50 +5517,50 @@ msgid ""
 msgstr ""
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Aotre-implijout diwar-benn danvez al lec'hienn"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, fuzzy, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Kompren a ran ez eo prevez danvez ha roadennoù %1$s."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Pajennadur"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "War-lerc'h"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Kent"
 
@@ -5585,12 +5701,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5673,11 +5789,6 @@ msgstr "Lenn-skrivañ"
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Nullañ"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5704,11 +5815,6 @@ msgstr "Disteuler"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Pezhioù stag"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -5829,7 +5935,7 @@ msgstr ""
 #. TRANS: Text shown when a notice has been marked as favourite successfully.
 #: lib/command.php:312
 msgid "Notice marked as fave."
-msgstr "Ali bet ouzhpennet d'ar pennroll."
+msgstr "Kemenn bet ouzhpennet d'ar pennroll."
 
 #. TRANS: Message given having added a user to a group.
 #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
@@ -5887,7 +5993,7 @@ msgstr ""
 msgid "Message too long - maximum is %1$d characters, you sent %2$d."
 msgstr ""
 "Re hir eo ar gemennadenn - ar ment brasañ a zo %1$d arouezenn, %2$d "
-"arouezenn o peus lakaet."
+"arouezenn ho peus lakaet."
 
 #. TRANS: Error text shown sending a direct message fails with an unknown reason.
 #: lib/command.php:514
@@ -6139,14 +6245,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Hizivadennoù dre SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Kevreadennoù"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 #, fuzzy
 msgid "Authorized connected applications"
@@ -6827,7 +6933,7 @@ msgstr "Adkemeret gant"
 
 #: lib/noticelist.php:640
 msgid "Reply to this notice"
-msgstr "Respont d'an ali-mañ"
+msgstr "Respont d'ar c'hemenn-mañ"
 
 #: lib/noticelist.php:641
 msgid "Reply"
@@ -6849,24 +6955,24 @@ msgstr "Blinkadenn"
 msgid "Send a nudge to this user"
 msgstr "Kas ur blinkadenn d'an implijer-mañ"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 #, fuzzy
 msgid "Couldn't insert new subscription."
 msgstr "Dibosupl eo dilemel ar c'houmanant."
@@ -6889,7 +6995,7 @@ msgstr "Boest resev"
 
 #: lib/personalgroupnav.php:126
 msgid "Your incoming messages"
-msgstr "ar gemennadennoù o peus resevet"
+msgstr "Ar gemennadennoù ho peus resevet"
 
 #: lib/personalgroupnav.php:130
 msgid "Outbox"
@@ -6974,7 +7080,7 @@ msgstr "Arguzenn ID ebet."
 
 #: lib/repeatform.php:107
 msgid "Repeat this notice?"
-msgstr "Adkregiñ gant an ali-mañ ?"
+msgstr "Adkregiñ gant ar c'hemenn-mañ ?"
 
 #: lib/repeatform.php:132
 msgid "Yes"
@@ -6982,7 +7088,7 @@ msgstr "Ya"
 
 #: lib/repeatform.php:132
 msgid "Repeat this notice"
-msgstr "Adkregiñ gant an ali-mañ"
+msgstr "Adkregiñ gant ar c'hemenn-mañ"
 
 #: lib/revokeroleform.php:91
 #, fuzzy, php-format
@@ -7228,17 +7334,17 @@ msgid "Moderator"
 msgstr "Habasker"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "un nebeud eilennoù zo"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "1 vunutenn zo well-wazh"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7246,12 +7352,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "1 eurvezh zo well-wazh"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7259,12 +7365,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "1 devezh zo well-wazh"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7272,12 +7378,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "miz zo well-wazh"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7285,7 +7391,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "bloaz zo well-wazh"
 
@@ -7313,3 +7419,23 @@ msgstr "N'eus bet diferet ID implijer ebet."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "Nac'hañ"
+
+#~ msgid "Theme server"
+#~ msgstr "Servijer danvezioù"
+
+#~ msgid "Theme path"
+#~ msgstr "Hentad an tem"
+
+#~ msgid "Background server"
+#~ msgstr "Servijer ar backgroundoù"
+
+#, fuzzy
+#~ msgid "Background path"
+#~ msgstr "Background"
+
+#, fuzzy
+#~ msgid "Background directory"
+#~ msgstr "Servijer ar backgroundoù"
diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po
index 2ba3d3537e..a3533b31b0 100644
--- a/locale/ca/LC_MESSAGES/statusnet.po
+++ b/locale/ca/LC_MESSAGES/statusnet.po
@@ -4,6 +4,7 @@
 # Author: Aleator
 # Author: McDutchie
 # Author: Paucabot
+# Author: SMP
 # Author: Toniher
 # --
 # This file is distributed under the same license as the StatusNet package.
@@ -12,17 +13,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Core\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:25+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:35+0000\n"
 "Language-Team: Catalan \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -95,14 +96,15 @@ msgstr "Desa"
 msgid "No such page."
 msgstr "No existeix la pàgina."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -204,12 +206,13 @@ msgstr "Un mateix i amics"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Actualitzacions de %1$s i amics a %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -236,7 +239,7 @@ msgstr "No s'ha trobat el mètode API!"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -312,45 +315,61 @@ msgstr "Ha fallat el blocatge de l'usuari."
 msgid "Unblock user failed."
 msgstr "Ha fallat el desblocatge de l'usuari."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Missatges directes de %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Tots els missatges directes enviats per %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Missatges directes a %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Tots els missatges directes enviats a %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "No hi ha text al missatge!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "És massa llarg. La mida màxima del missatge és %d caràcters."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "És massa llarg. La mida màxima del missatge és %d caràcters."
+msgstr[1] "És massa llarg. La mida màxima del missatge és %d caràcters."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "No s'ha trobat l'usuari destinatari."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "No es pot enviar missatges directes a usuaris que no siguin els vostres "
 "amics."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -532,15 +551,21 @@ msgstr "grups sobre %s"
 msgid "Upload failed."
 msgstr "La pujada ha fallat."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "No s'ha especificat un testimoni d'inici de sessió vàlid."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "No s'ha proporcionat cap paràmetre oauth_token."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "El testimoni no és vàlid."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -560,36 +585,22 @@ msgstr ""
 "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si "
 "us plau."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Nom d'usuari / contrasenya no vàlid!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Error de la base de dades en esborrar l'usuari de l'aplicació OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Error de la base de dades en inserir l'usuari de l'aplicació OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"S'ha autoritzat el testimoni de sol·licitud %s. Si us plau, canvieu-lo per "
-"un testimoni d'accés."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "S'ha denegat i revocat el testimoni de sol·licitud %s."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -598,15 +609,15 @@ msgstr "S'ha denegat i revocat el testimoni de sol·licitud %s."
 msgid "Unexpected form submission."
 msgstr "Enviament de formulari inesperat."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Una aplicació voldria connectar-se al vostre compte"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Permet o denega l'accés"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -618,11 +629,11 @@ msgstr ""
 "hauríeu de donar accés al compte %4$s a terceres parts en què confieu."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Compte"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -631,23 +642,47 @@ msgid "Nickname"
 msgstr "Sobrenom"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Contrasenya"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Denega"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Cancel·la"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Permet"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Permet o denega l'accés a la informació del vostre compte."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "S'ha cancel·lat la confirmació de MI."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "S'ha denegat i revocat el testimoni de sol·licitud %s."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "No esteu autoritzat."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Aquest mètode requereix POST o DELETE."
@@ -809,7 +844,8 @@ msgid "Preview"
 msgstr "Vista prèvia"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Elimina"
 
@@ -867,12 +903,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "No"
@@ -885,12 +922,13 @@ msgstr "No bloquis l'usuari"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Sí"
@@ -908,6 +946,7 @@ msgstr "No s'ha pogut desar la informació del bloc."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1033,7 +1072,7 @@ msgstr "No sou el propietari d'aquesta aplicació."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "S'ha produït un problema amb el testimoni de la vostra sessió."
 
@@ -1061,6 +1100,58 @@ msgstr "No eliminis l'aplicació"
 msgid "Delete this application"
 msgstr "Elimina aquesta aplicació"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Heu d'haver iniciat una sessió per deixar un grup."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Cap sobrenom o ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "No sou un membre del grup."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "No s'ha pogut actualitzar el grup."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s ha abandonat el grup %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Elimina l'usuari"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Esteu segur que voleu eliminar l'usuari? S'esborraran totes les dades de "
+"l'usuari de la base de dades, sense cap còpia de seguretat."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "No eliminis aquest avís"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Elimina l'usuari"
+
 #. 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
@@ -1135,55 +1226,65 @@ msgstr "Disseny"
 
 #: actions/designadminpanel.php:74
 msgid "Design settings for this StatusNet site"
-msgstr ""
+msgstr "Paràmetres de disseny d'aquest lloc StatusNet."
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "L'URL del logotip no és vàlid."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "L'URL del logotip no és vàlid."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Tema no disponible: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Canvia el logotip"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logotip del lloc"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logotip del lloc"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Canvia el tema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Tema del lloc"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Tema del lloc."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Tema personalitzat"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Podeu pujar un tema personalitzat de l'StatusNet amb un arxiu ZIP."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Canvia la imatge de fons"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Fons"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1192,66 +1293,66 @@ msgstr ""
 "Podeu pujar una imatge de fons per al lloc. La mida màxima de fitxer és %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Activada"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Desactivada"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Activa o desactiva la imatge de fons."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Posa en mosaic la imatge de fons"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Canvia els colors"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Contingut"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barra lateral"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Text"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Enllaços"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avançat"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS personalitzat"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Utilitza els paràmetres per defecte"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Restaura els dissenys per defecte"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Torna a restaurar al valor per defecte"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1261,7 +1362,7 @@ msgstr "Torna a restaurar al valor per defecte"
 msgid "Save"
 msgstr "Desa"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Desa el disseny"
 
@@ -1736,7 +1837,7 @@ msgstr "No s'ha pogut convertir el testimoni de sol·licitud a un d'accés."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "El servei remot utilitza una versió desconeguda del protocol OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "S'ha produït un error en actualitzar el perfil remot."
 
@@ -2333,10 +2434,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Heu d'haver iniciat una sessió per unir-vos a un grup."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Cap sobrenom o ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2368,33 +2465,36 @@ msgstr "Llicència d'aquest lloc basat en StatusNet"
 
 #: actions/licenseadminpanel.php:139
 msgid "Invalid license selection."
-msgstr ""
+msgstr "La selecció de la llicència no és vàlida."
 
 #: actions/licenseadminpanel.php:149
 msgid ""
 "You must specify the owner of the content when using the All Rights Reserved "
 "license."
 msgstr ""
+"Heu d'especificar el propietari del contingut quan utilitzeu la llicència "
+"«Tots els drets reservats»."
 
 #: actions/licenseadminpanel.php:156
 msgid "Invalid license title. Max length is 255 characters."
 msgstr ""
+"El títol de la llicència no és vàlid. La longitud màxima és 255 caràcters."
 
 #: actions/licenseadminpanel.php:168
 msgid "Invalid license URL."
-msgstr ""
+msgstr "L'URL de la llicència no és vàlid."
 
 #: actions/licenseadminpanel.php:171
 msgid "Invalid license image URL."
-msgstr ""
+msgstr "L'URL de la imatge de la llicència no és vàlid."
 
 #: actions/licenseadminpanel.php:179
 msgid "License URL must be blank or a valid URL."
-msgstr ""
+msgstr "L'URL de la llicència ha de ser en blanc o bé un URL vàlid."
 
 #: actions/licenseadminpanel.php:187
 msgid "License image must be blank or valid URL."
-msgstr ""
+msgstr "La imatge de la llicència ha de ser en blanc o bé un URL vàlid."
 
 #: actions/licenseadminpanel.php:239
 msgid "License selection"
@@ -2446,7 +2546,7 @@ msgstr "URL de la llicència"
 
 #: actions/licenseadminpanel.php:293
 msgid "URL for more information about the license."
-msgstr ""
+msgstr "URL per a més informació de la llicència."
 
 #: actions/licenseadminpanel.php:300
 msgid "License Image URL"
@@ -2583,6 +2683,11 @@ msgstr "No podeu enviar un misssatge a aquest usuari."
 msgid "No content!"
 msgstr "Cap contingut!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "És massa llarg. La mida màxima del missatge és %d caràcters."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "No has especificat el destinatari."
@@ -2701,7 +2806,7 @@ msgstr "Aplicacions connectades"
 
 #: actions/oauthconnectionssettings.php:83
 msgid "You have allowed the following applications to access your account."
-msgstr ""
+msgstr "Heu permès les aplicacions següents accedir al vostre compte."
 
 #: actions/oauthconnectionssettings.php:175
 msgid "You are not a user of that application."
@@ -2745,7 +2850,7 @@ msgstr "Si us plau, només URL %s sobre HTTP pla."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Format de data no suportat."
 
@@ -2894,149 +2999,168 @@ msgstr "Camins"
 
 #: actions/pathsadminpanel.php:70
 msgid "Path and server settings for this StatusNet site"
-msgstr ""
+msgstr "Camí i paràmetres del servidor d'aquest lloc basat en StatusNet"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "No es pot llegir el directori de temes: %s"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "No es pot escriure al directori d'avatars: %s"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "No es pot escriure al directori de fons: %s"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "No es pot llegir el directori de les traduccions: %s"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "El servidor SSL no és vàlid. La mida màxima és de 255 caràcters."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Lloc"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Servidor"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Servidor central del lloc."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Camí"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Camí del lloc"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "El camí a les traduccions"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Directori de temes"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "El camí del directori a les traduccions"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "URL atractius"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Voleu fer servir URL atractius (més fàcils de llegir i de recordar)?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Tema"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Servidor dels temes"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Tema del lloc."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Camí dels temes"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Directori de temes"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatars"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Servidor d'avatars"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Camí de l'avatar"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Directori d'avatars"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Fons"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Servidor de fons"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Camí dels fons"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Directori de fons"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Mai"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "A vegades"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Sempre"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Utilitza l'SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Quan utilitzar l'SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Servidor SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Camí del lloc"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Directori de temes"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "El camí del directori a les traduccions"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatars"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Servidor d'avatars"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Camí de l'avatar"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Directori d'avatars"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Fons"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Adjuncions"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Mai"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "A vegades"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Sempre"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Utilitza l'SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Quan utilitzar l'SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Servidor on dirigir les sol·licituds SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Desa els camins"
 
@@ -3808,7 +3932,7 @@ msgstr "Organització"
 msgid "Description"
 msgstr "Descripció"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Estadístiques"
@@ -3950,45 +4074,45 @@ msgstr "Àlies"
 msgid "Group actions"
 msgstr "Accions del grup"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Canal d'avisos del grup %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Canal d'avisos del grup %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Canal d'avisos del grup %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Safata de sortida per %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Membres"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Tots els membres"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "S'ha creat"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4004,7 +4128,7 @@ msgstr ""
 "%) per formar part del grup i molt més! ([Més informació...](%%%%doc.help%%%"
 "%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4017,7 +4141,7 @@ msgstr ""
 "[StatusNet](http://status.net/). Els seus membre comparteixen missatges "
 "curts sobre llur vida i interessos. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administradors"
 
@@ -4978,7 +5102,7 @@ msgid "Plugins"
 msgstr "Connectors"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versió"
 
@@ -5217,7 +5341,7 @@ msgid "Unable to save tag."
 msgstr "No s'ha pogut desar l'etiqueta."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Se us ha banejat la subscripció."
 
@@ -5337,185 +5461,185 @@ msgid "Untitled page"
 msgstr "Pàgina sense titol"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Navegació primària del lloc"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Perfil personal i línia temporal dels amics"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personal"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Canvia l'adreça electrònica, l'avatar, la contrasenya o el perfil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Connecta als serveis"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Connexió"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Canvia la configuració del lloc"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administrador"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Convida amics i coneguts perquè participin a %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Convida"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Finalitza la sessió del lloc"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Finalitza la sessió"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Crea un compte"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registre"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Inicia una sessió al lloc"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Inici de sessió"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Ajuda'm!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Ajuda"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Cerca gent o text"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Cerca"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Avís del lloc"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Vistes locals"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Avís de pàgina"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Navegació del lloc secundària"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Ajuda"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Quant a"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Preguntes més freqüents"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Termes del servei"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privadesa"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Font"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contacte"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Insígnia"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Llicència del programari StatusNet"
 
@@ -5523,7 +5647,7 @@ msgstr "Llicència del programari StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5533,7 +5657,7 @@ msgstr ""
 "site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** és un servei de microblogging."
@@ -5542,7 +5666,7 @@ msgstr "**%%site.name%%** és un servei de microblogging."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5554,27 +5678,27 @@ msgstr ""
 "org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Llicència de contingut del lloc"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "El contingut i les dades de %1$s són privades i confidencials."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 "El contingut i les dades són copyright de %1$s. Tots els drets reservats."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "El contingut i les dades són copyright dels col·laboradors. Tots els drets "
@@ -5582,7 +5706,7 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
@@ -5590,19 +5714,19 @@ msgstr ""
 "llicència %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paginació"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Posteriors"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Anteriors"
 
@@ -5727,33 +5851,33 @@ msgstr ""
 #. TRANS: OAuth exception thrown when no application is found for a given consumer key.
 #: lib/apiauth.php:175
 msgid "No application for that consumer key."
-msgstr ""
+msgstr "No hi ha cap aplicació per a aquest clau de consumidor."
 
 #. TRANS: OAuth exception given when an incorrect access token was given for a user.
 #: lib/apiauth.php:212
 msgid "Bad access token."
-msgstr ""
+msgstr "Testimoni d'accés incorrecte."
 
 #. TRANS: OAuth exception given when no user was found for a given token (no token was found).
 #: lib/apiauth.php:217
 msgid "No user for that token."
-msgstr ""
+msgstr "No hi ha cap usuari per aquest testimoni."
 
 #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
 #. TRANS: Client error thrown when authentication fails.
 #: lib/apiauth.php:258 lib/apiauth.php:290
 msgid "Could not authenticate you."
-msgstr ""
+msgstr "No se us ha pogut autenticar."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
-msgstr ""
+msgstr "S'ha provat de revocar el testimoni desconegut."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
-msgstr ""
+msgstr "No s'ha pogut suprimir el testimoni revocat."
 
 #. TRANS: Form legend.
 #: lib/applicationeditform.php:129
@@ -5835,11 +5959,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Accés per defecte per a l'aplicació: només lectura, o lectura i escriptura"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Cancel·la"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5864,12 +5983,7 @@ msgstr "Revoca"
 
 #: lib/atom10feed.php:112
 msgid "author element must contain a name element."
-msgstr ""
-
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Adjuncions"
+msgstr "l'element autor ha de contenir un element nom."
 
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
@@ -6334,14 +6448,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Actualitzacions per SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Connexions"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Aplicacions de connexió autoritzades"
@@ -7025,7 +7139,7 @@ msgstr ""
 #: lib/mediafile.php:345
 #, php-format
 msgid "\"%s\" is not a supported file type on this server."
-msgstr ""
+msgstr "«%s» no és un tipus de fitxer compatible en aquest servidor."
 
 #: lib/messageform.php:120
 msgid "Send a direct notice"
@@ -7142,24 +7256,24 @@ msgstr "Crida l'atenció"
 msgid "Send a nudge to this user"
 msgstr "Crida l'atenció a l'usuari"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "S'ha produït un error en inserir un perfil nou."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "S'ha produït un error en inserir un avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "S'ha produït un error en inserir un perfil remot."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Avís duplicat."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "No s'ha pogut inserir una nova subscripció."
 
@@ -7513,64 +7627,64 @@ msgid "Moderator"
 msgstr "Moderador"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "fa pocs segons"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "fa un minut"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "aproximadament fa un minut"
+msgstr[1] "aproximadament fa %d minuts"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "fa una hora"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "aproximadament fa una hora"
+msgstr[1] "aproximadament fa %d hores"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "fa un dia"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "aproximadament fa un dia"
+msgstr[1] "aproximadament fa %d dies"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "fa un mes"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "aproximadament fa un mes"
+msgstr[1] "aproximadament fa %d mesos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "fa un any"
 
@@ -7597,3 +7711,31 @@ 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 ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "S'ha autoritzat el testimoni de sol·licitud %s. Si us plau, canvieu-lo "
+#~ "per un testimoni d'accés."
+
+#~ msgid "Deny"
+#~ msgstr "Denega"
+
+#~ msgid "Path to locales"
+#~ msgstr "El camí a les traduccions"
+
+#~ msgid "Theme server"
+#~ msgstr "Servidor dels temes"
+
+#~ msgid "Theme path"
+#~ msgstr "Camí dels temes"
+
+#~ msgid "Background server"
+#~ msgstr "Servidor de fons"
+
+#~ msgid "Background path"
+#~ msgstr "Camí dels fons"
+
+#~ msgid "Background directory"
+#~ msgstr "Directori de fons"
diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po
index ea2b6f04aa..b3e328936d 100644
--- a/locale/cs/LC_MESSAGES/statusnet.po
+++ b/locale/cs/LC_MESSAGES/statusnet.po
@@ -10,18 +10,18 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Core\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:26+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:48+0000\n"
 "Language-Team: Czech \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -92,14 +92,15 @@ msgstr "Uložit"
 msgid "No such page."
 msgstr "Tady žádná taková stránka není."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +202,13 @@ msgstr "Vy a přátelé"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Novinky od uživatele %1$s a přátel na %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +235,7 @@ msgstr " API metoda nebyla nalezena."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -308,43 +310,60 @@ msgstr "Zablokovat uživatele se nezdařilo."
 msgid "Unblock user failed."
 msgstr "Odblokovat uživatele se nezdařilo."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Přímá zpráva od %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Všechny přímé zprávy od uživatele %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Přímé zprávy uživateli %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Všechny přímé zprávy odeslané uživateli %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "zpráva bez textu!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Je to příliš dlouhé. Maximální délka sdělení je %d znaků."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Je to příliš dlouhé. Maximální délka sdělení je %d znaků."
+msgstr[1] "Je to příliš dlouhé. Maximální délka sdělení je %d znaků."
+msgstr[2] "Je to příliš dlouhé. Maximální délka sdělení je %d znaků."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Příjemce nebyl nalezen."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Nelze odesílat zprávy uživatelům, kteří nejsou vašimi přáteli."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Neposílejte si zprávu, potichu si ji pro sebe řekněte."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -524,15 +543,21 @@ msgstr "skupiny na %s"
 msgid "Upload failed."
 msgstr "Nahrání se nezdařilo."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Neplatný přihlašovací token."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "nebyl dodán parametr oauth_token"
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Neplatný token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -550,35 +575,22 @@ msgstr "Neplatný token."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Nastal problém s vaším session tokenem. Zkuste to znovu, prosím."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Neplatné jméno nebo heslo!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Chyba databáze při mazání uživatele aplikace OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Chyba databáze při vkládání uživatele aplikace OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Token požadavku %s byl autorizován. Prosím vyměňte jej za přístupový token."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Token žádosti %s byl odepřen a zrušen."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -587,15 +599,15 @@ msgstr "Token žádosti %s byl odepřen a zrušen."
 msgid "Unexpected form submission."
 msgstr "Nečekaný požadavek."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Aplikace se chce připojit k vašemu účtu"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Povolit nebo zamítnout přístup"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -607,11 +619,11 @@ msgstr ""
 "vašeho účtu na %4$s jen třetím stranám kterým věříte.."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Účet"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -620,23 +632,47 @@ msgid "Nickname"
 msgstr "Přezdívka"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Heslo"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Odepřít"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Zrušit"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Povolit"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Povolit nebo zakázat přístup k vašemu účtu."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "IM potvrzení zrušeno."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Token žádosti %s byl odepřen a zrušen."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Nejste autorizován."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Tato metoda vyžaduje POST nebo DELETE."
@@ -797,7 +833,8 @@ msgid "Preview"
 msgstr "Náhled"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Odstranit"
 
@@ -853,12 +890,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Poznámka"
@@ -871,12 +909,13 @@ msgstr "Zablokovat tohoto uživatele"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Ano"
@@ -894,6 +933,7 @@ msgstr "Nepodařilo se uložit blokování."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1019,7 +1059,7 @@ msgstr "Nejste vlastníkem této aplikace."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Nastal problém s vaším session tokenem."
 
@@ -1046,6 +1086,58 @@ msgstr "Neodstraňujte tuto aplikaci"
 msgid "Delete this application"
 msgstr "Odstranit tuto aplikaci"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Musíte být přihlášen abyste mohl opustit skupinu."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Žádná přezdívka nebo ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Nejste členem této skupiny."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Nelze aktualizovat skupinu."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s opustil(a) skupinu %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Smazat uživatele"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Jste si jisti, že chcete smazat tohoto uživatele? To odstraní všechny údaje "
+"o uživateli z databáze, bez zálohy."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Neodstraňujte toto oznámení"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Odstranit tohoto uživatele"
+
 #. 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
@@ -1122,53 +1214,63 @@ msgstr "Vzhled"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Neplatná URL loga."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Neplatná URL loga."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Téma není k dispozici: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Změňte logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo stránek"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo stránek"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Změnit téma"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Téma stránek"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Téma stránek"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Vlastní téma"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Můžete nahrát vlastní StatusNet téma jako .ZIP archiv."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Změnit obrázek na pozadí"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Pozadí"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1177,66 +1279,66 @@ msgstr ""
 "Můžete nahrát obrázek na pozadí stránek. Maximální velikost souboru je %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "zap."
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "vyp."
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Zapněte nebů vypněte obrázek na pozadí."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Dlaždicovat obrázek na pozadí"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Změnit barvy"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Obsah"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Boční panel"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Text"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Odkazy"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Rozšířené"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Vlastní CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Použít výchozí"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Obnovit výchozí vzhledy"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Reset zpět do výchozího"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1246,7 +1348,7 @@ msgstr "Reset zpět do výchozího"
 msgid "Save"
 msgstr "Uložit"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Uložit vzhled"
 
@@ -1719,7 +1821,7 @@ msgstr "Nemohu převést žádost token na přístup token."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Vzdálená služba používá neznámou verzi protokolu OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Chyba při aktualizaci vzdáleného profilu."
 
@@ -2310,10 +2412,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Musíte být přihlášen pro vstup do skupiny."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Žádná přezdívka nebo ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2558,6 +2656,11 @@ msgstr ""
 msgid "No content!"
 msgstr "Chybí obsah!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Je to příliš dlouhé. Maximální délka sdělení je %d znaků."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Neuveden příjemce."
@@ -2717,7 +2820,7 @@ msgstr "Only %s URLs over plain HTTP please."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Nepodporovaný formát dat."
 
@@ -2867,147 +2970,166 @@ msgstr "Cesty"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Adresář témat není čitelný: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Nelze zapisovat do adresáře avatarů: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Nelze zapisovat do adresáře pozadí: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Locales adresář není čitelný: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Neplatný SSL server. Maximální délka je 255 znaků."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Stránky"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Server"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Hostname (jméno) serveru stránek."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Cesta"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Cesta ke stránkám (za jménem serveru)"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Cesta k locales"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "adresář tématu"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Cesta k adresáři locales"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Hezké URL"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Použijte Fancy (více čitelné a zapamatovatelné) URL?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Téma"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "server s tématy"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Téma stránek"
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "cesta k tématu"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "adresář tématu"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatary"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Server s avatary"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Cesta k avatarům"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Adresář avatarů"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Pozadí"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Server s pozadím"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Cesta k pozadí"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Adresář pozadí"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nikdy"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Někdy"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Vždy"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Použít SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Kdy použít SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL server"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Cesta ke stránkám (za jménem serveru)"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "adresář tématu"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Cesta k adresáři locales"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatary"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Server s avatary"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Cesta k avatarům"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Adresář avatarů"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Pozadí"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Přílohy"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nikdy"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Někdy"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Vždy"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Použít SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Kdy použít SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Server kam směrovat SSL žádosti"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Uložit cesty"
 
@@ -3764,7 +3886,7 @@ msgstr "Organizace"
 msgid "Description"
 msgstr "Popis"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistiky"
@@ -3906,45 +4028,45 @@ msgstr "Aliasy"
 msgid "Group actions"
 msgstr "Akce skupiny"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Feed sdělení skupiny %s (RSS 1.0"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Feed sdělení skupiny %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Feed sdělení skupiny %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF pro skupinu %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Členové"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Všichni členové"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Vytvořeno"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3959,7 +4081,7 @@ msgstr ""
 "ž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:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3972,7 +4094,7 @@ msgstr ""
 "[StatusNet](http://status.net/). Její členové sdílejí krátké zprávy o svém "
 "životě a zájmech.  "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Adminové"
 
@@ -4921,7 +5043,7 @@ msgid "Plugins"
 msgstr "Pluginy"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Verze"
 
@@ -5155,7 +5277,7 @@ msgid "Unable to save tag."
 msgstr "Nelze uložit tag."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Byl jste vykázán (banned) z přihlašování se."
 
@@ -5275,185 +5397,185 @@ msgid "Untitled page"
 msgstr "stránka bez názvu"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Primární navigace na webu"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Osobní profil a časová osa přátel"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Osobní"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Změňte svůj e-mail, avatar, heslo, profil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Připojení ke službám"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Připojit"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Změna konfigurace webu"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Admin"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Pozvěte přátele a kolegy, aby se k vám připojili na %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Pozvat"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Odhlášení z webu"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Odhlásit se"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Zaregistrujte se"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrovat"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Přihlásit se na stránky"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Přihlásit"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Nápověda"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Nápověda"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Vyhledávání osob nebo textu"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Hledat"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Sdělení"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Místní zobrazení"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Sdělení stránky"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Sekundární navigace na webu"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Nápověda"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "O nás"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "TOS (pravidla použití služby)"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Soukromí"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Zdroj"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontakt"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Odznak"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licence softwaru StatusNet"
 
@@ -5461,7 +5583,7 @@ msgstr "Licence softwaru StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5471,7 +5593,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** je služba mikroblogů."
@@ -5480,7 +5602,7 @@ msgstr "**%%site.name%%** je služba mikroblogů."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5492,50 +5614,50 @@ msgstr ""
 "licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licence k obsahu stránek"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Obsah a data z %1$S jsou soukromé a důvěrné."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "Obsah a data copyright %1$s. Všechna práva vyhrazena."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr "Obsah a data copyright přispěvatelů. Všechna práva vyhrazena."
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Všechen obsah a data %1$s jsou k dispozici v rámci licence %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Stránkování"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Po"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Před"
 
@@ -5677,12 +5799,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5766,11 +5888,6 @@ msgstr "čtení a zápis"
 msgid "Default access for this application: read-only, or read-write"
 msgstr "Výchozí přístup pro tuto aplikaci: pouze pro čtení, nebo číst-psát"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Zrušit"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5797,11 +5914,6 @@ msgstr "Obnovit"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Přílohy"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6265,14 +6377,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Aktualizace z a na SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Připojení"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Autorizované propojené aplikace"
@@ -7070,24 +7182,24 @@ msgstr "Pošťouchnout"
 msgid "Send a nudge to this user"
 msgstr "Poslat pošťouchnutí tomuto uživateli"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Nelze vložit odebírání"
 
@@ -7441,17 +7553,17 @@ msgid "Moderator"
 msgstr "Moderátor"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "před pár sekundami"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "asi před minutou"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7460,12 +7572,12 @@ msgstr[1] ""
 msgstr[2] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "asi před hodinou"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7474,12 +7586,12 @@ msgstr[1] ""
 msgstr[2] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "asi přede dnem"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7488,12 +7600,12 @@ msgstr[1] ""
 msgstr[2] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "asi před měsícem"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7502,7 +7614,7 @@ msgstr[1] ""
 msgstr[2] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "asi před rokem"
 
@@ -7530,3 +7642,31 @@ msgstr "Nebylo zadáno uživatelské ID."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Token požadavku %s byl autorizován. Prosím vyměňte jej za přístupový "
+#~ "token."
+
+#~ msgid "Deny"
+#~ msgstr "Odepřít"
+
+#~ msgid "Path to locales"
+#~ msgstr "Cesta k locales"
+
+#~ msgid "Theme server"
+#~ msgstr "server s tématy"
+
+#~ msgid "Theme path"
+#~ msgstr "cesta k tématu"
+
+#~ msgid "Background server"
+#~ msgstr "Server s pozadím"
+
+#~ msgid "Background path"
+#~ msgstr "Cesta k pozadí"
+
+#~ msgid "Background directory"
+#~ msgstr "Adresář pozadí"
diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po
index 310e450afe..58fc72d9e1 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:27+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:51+0000\n"
 "Language-Team: German \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -101,14 +101,15 @@ msgstr "Speichern"
 msgid "No such page."
 msgstr "Seite nicht vorhanden"
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -210,12 +211,13 @@ msgstr "Du und Freunde"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -242,7 +244,7 @@ msgstr "API-Methode nicht gefunden."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -318,46 +320,64 @@ msgstr "Blockieren des Benutzers fehlgeschlagen."
 msgid "Unblock user failed."
 msgstr "Freigeben des Benutzers fehlgeschlagen."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Direkte Nachrichten von %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Alle von %s gesendeten direkten Nachrichten"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Direkte Nachrichten an %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Alle an %s gesendeten direkten Nachrichten"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Fehlender Nachrichtentext!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr ""
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist %d Zeichen."
+msgstr[1] ""
 "Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist %d Zeichen."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Empfänger nicht gefunden."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen "
 "du nicht befreundet bist."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -471,7 +491,7 @@ msgstr "Ungültiges Alias: „%s“"
 #: actions/newgroup.php:172
 #, php-format
 msgid "Alias \"%s\" already in use. Try another one."
-msgstr "Nutzername „%s“ wird bereits verwendet. Suche dir einen anderen aus."
+msgstr "Benutzername „%s“ wird bereits verwendet. Suche dir einen anderen aus."
 
 #: actions/apigroupcreate.php:290 actions/editgroup.php:238
 #: actions/newgroup.php:178
@@ -541,15 +561,21 @@ msgstr "Gruppen von %s"
 msgid "Upload failed."
 msgstr "Hochladen fehlgeschlagen."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Login-Token ungültig oder abgelaufen."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Kein oauth_token Parameter angegeben."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Ungültiges Token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -567,36 +593,22 @@ msgstr "Ungültiges Token."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Benutzername oder Passwort falsch."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Datenbankfehler beim Löschen des OAuth Anwendungs Nutzers."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Die Anfrage %s wurde nicht autorisiert. Bitte gegen einen Zugriffstoken "
-"austauschen."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Die Anfrage %s wurde gesperrt und widerrufen."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -605,15 +617,15 @@ msgstr "Die Anfrage %s wurde gesperrt und widerrufen."
 msgid "Unexpected form submission."
 msgstr "Unerwartete Formulareingabe."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Ein Programm will eine Verbindung zu deinem Konto aufbauen"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Zugriff erlauben oder ablehnen"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -625,11 +637,11 @@ msgstr ""
 "vertrauenswürdigen Quellen Erlaubnis zu deinem %4$s Zugang geben."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Profil"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -638,23 +650,47 @@ msgid "Nickname"
 msgstr "Benutzername"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Passwort"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Ablehnen"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Erlauben"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Zugang zu deinem Konto erlauben oder ablehnen"
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "IM-Bestätigung abgebrochen."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Die Anfrage %s wurde gesperrt und widerrufen."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Du bist nicht autorisiert."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Diese Methode benötigt ein POST oder DELETE."
@@ -821,7 +857,8 @@ msgid "Preview"
 msgstr "Vorschau"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Löschen"
 
@@ -878,12 +915,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Nein"
@@ -896,12 +934,13 @@ msgstr "Diesen Benutzer freigeben"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Ja"
@@ -919,6 +958,7 @@ msgstr "Konnte Blockierungsdaten nicht speichern."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1044,7 +1084,7 @@ msgstr "Du bist Besitzer dieses Programms"
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Es gab ein Problem mit deinem Sessiontoken."
 
@@ -1071,6 +1111,58 @@ msgstr "Dieses Programm nicht löschen"
 msgid "Delete this application"
 msgstr "Programm löschen"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Kein Benutzername oder ID"
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Du bist kein Mitglied dieser Gruppe."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Konnte Gruppe nicht aktualisieren."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s hat die Gruppe %2$s verlassen"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Benutzer löschen"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Bist du sicher, dass du den Benutzer löschen wisst? Alle Daten des Benutzers "
+"werden aus der Datenbank gelöscht (ohne ein Backup)."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Diese Nachricht nicht löschen"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Diesen Benutzer löschen"
+
 #. 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
@@ -1147,53 +1239,63 @@ msgstr "Design"
 msgid "Design settings for this StatusNet site"
 msgstr "Design-Einstellungen dieser StatusNet-Website"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Ungültige URL für das Logo"
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Ungültige URL für das Logo"
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Theme nicht verfügbar: %s"
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Logo ändern"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Seitenlogo"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Seitenlogo"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Theme ändern"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Seitentheme"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Theme dieser Seite."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Angepasster Skin"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Du kannst ein angepasstes StatusNet-Theme als .ZIP-Archiv hochladen."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Hintergrundbild ändern"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Hintergrund"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1203,66 +1305,66 @@ msgstr ""
 "Dateigröße beträgt %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "An"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Aus"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Hintergrundbild ein- oder ausschalten."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Hintergrundbild kacheln"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Farben ändern"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Inhalt"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Seitenleiste"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Text"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Links"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Erweitert"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Eigene CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Standardeinstellungen benutzen"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Standard-Design wiederherstellen"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Standard wiederherstellen"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1272,7 +1374,7 @@ msgstr "Standard wiederherstellen"
 msgid "Save"
 msgstr "Speichern"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Design speichern"
 
@@ -1750,7 +1852,7 @@ msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Service nutzt unbekannte OMB-Protokollversion."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Fehler beim Aktualisieren des entfernten Profils."
 
@@ -1947,7 +2049,7 @@ msgstr "Diesen Benutzer zum Admin ernennen"
 #: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68
 #, php-format
 msgid "%s timeline"
-msgstr "%s Zeitleiste"
+msgstr "%s-Zeitleiste"
 
 #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
 #: actions/grouprss.php:142
@@ -2353,10 +2455,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Kein Benutzername oder ID"
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2602,6 +2700,12 @@ msgstr "Du kannst diesem Benutzer keine Nachricht schicken."
 msgid "No content!"
 msgstr "Kein Inhalt!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr ""
+"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist %d Zeichen."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Kein Empfänger angegeben."
@@ -2767,7 +2871,7 @@ msgstr "Bitte nur %s URLs über einfaches HTTP."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Kein unterstütztes Datenformat."
 
@@ -2916,147 +3020,166 @@ msgstr "Pfad"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Pfad- und Servereinstellungen dieser StatusNet-Website"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Theme-Verzeichnis nicht lesbar: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Avatar-Verzeichnis ist nicht beschreibbar: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Hintergrund-Verzeichnis ist nicht beschreibbar: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Sprachverzeichnis nicht lesbar: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Ungültiger SSL-Server. Die maximale Länge ist 255 Zeichen."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Seite"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Server"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Server-Name der Seite"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Pfad"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Seitenpfad"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Sprachverzeichnis"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Theme-Verzeichnis"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Pfad zu den Sprachen"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Schicke URLs."
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Schicke URLs (lesbarer und besser zu merken) verwenden?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Motiv"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Motiv-Server"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Theme dieser Seite."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Motiv-Pfad"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Theme-Verzeichnis"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatare"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Avatar-Server"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Avatarpfad"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Avatarverzeichnis"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Hintergrundbilder"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Server für Hintergrundbilder"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Pfad zu den Hintergrundbildern"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Hintergrund-Verzeichnis"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nie"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Manchmal"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Immer"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "SSL verwenden"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Wann soll SSL verwendet werden"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-Server"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Seitenpfad"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Theme-Verzeichnis"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Pfad zu den Sprachen"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatare"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Avatar-Server"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Avatarpfad"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Avatarverzeichnis"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Hintergrundbilder"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Anhänge"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nie"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Manchmal"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Immer"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "SSL verwenden"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Wann soll SSL verwendet werden"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Server an den SSL Anfragen gerichtet werden sollen"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Speicherpfade"
 
@@ -3271,7 +3394,7 @@ msgid ""
 "This is the public timeline for %%site.name%% but no one has posted anything "
 "yet."
 msgstr ""
-"Dies ist die öffentliche Zeitlinie von %%site.name%% es wurde allerdings "
+"Dies ist die öffentliche Zeitleiste von %%site.name%%, es wurde allerdings "
 "noch nichts gepostet."
 
 #: actions/public.php:191
@@ -3474,7 +3597,7 @@ msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung."
 
 #: actions/register.php:99
 msgid "Sorry, invalid invitation code."
-msgstr "Entschuldigung, ungültiger Bestätigungscode."
+msgstr "Entschuldigung, ungültiger Einladungscode."
 
 #: actions/register.php:119
 msgid "Registration successful"
@@ -3486,7 +3609,7 @@ msgstr "Registrieren"
 
 #: actions/register.php:142
 msgid "Registration not allowed."
-msgstr "Registrierung nicht erlaubt"
+msgstr "Registrierung nicht erlaubt."
 
 #: actions/register.php:205
 msgid "You can't register if you don't agree to the license."
@@ -3567,7 +3690,7 @@ msgid ""
 "My text and files are available under %s except this private data: password, "
 "email address, IM address, and phone number."
 msgstr ""
-"Abgesehen von folgenden Daten: Passwort, Email Adresse, IM-Adresse und "
+"Abgesehen von den folgenden Daten: Passwort, E-Mail-Adresse, IM-Adresse und "
 "Telefonnummer, sind all meine Texte und Dateien unter %s verfügbar."
 
 #: actions/register.php:583
@@ -3831,7 +3954,7 @@ msgstr "Organisation"
 msgid "Description"
 msgstr "Beschreibung"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistik"
@@ -3974,45 +4097,45 @@ msgstr "Pseudonyme"
 msgid "Group actions"
 msgstr "Gruppenaktionen"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Nachrichtenfeed der Gruppe %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Nachrichtenfeed der Gruppe %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Nachrichtenfeed der Gruppe %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Postausgang von %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Mitglieder"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Alle Mitglieder"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Erstellt"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4027,7 +4150,7 @@ msgstr ""
 "und werde Teil der Gruppe und vielen anderen! ([Mehr Informationen](%%%%doc."
 "help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4040,7 +4163,7 @@ msgstr ""
 "Software [StatusNet](http://status.net/). Seine Mitglieder erstellen kurze "
 "Nachrichten über ihr Leben und Interessen. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Admins"
 
@@ -5000,7 +5123,7 @@ msgid "Plugins"
 msgstr "Erweiterungen"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Version"
 
@@ -5016,9 +5139,9 @@ msgstr "Zu Favoriten hinzufügen"
 #. TRANS: Ntofication given when a user marks a notice as favorite.
 #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
 #: classes/Fave.php:151
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s marked notice %2$s as a favorite."
-msgstr "%s (@%s) hat deine Nachricht als Favorit gespeichert"
+msgstr "%1$s markierte Nachricht %2$s als Favorit."
 
 #. TRANS: Server exception thrown when a URL cannot be processed.
 #: classes/File.php:142
@@ -5083,7 +5206,7 @@ msgstr "Konnte Gruppe nicht verlassen"
 #: classes/Group_member.php:76
 #, php-format
 msgid "Profile ID %s is invalid."
-msgstr ""
+msgstr "Profil-ID %s ist ungültig."
 
 #. TRANS: Exception thrown providing an invalid group ID.
 #. TRANS: %s is the invalid group ID.
@@ -5202,9 +5325,9 @@ msgstr "Problem bei Speichern der Nachricht."
 #. TRANS: Server exception thrown when a reply cannot be saved.
 #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
 #: classes/Notice.php:1120
-#, fuzzy, php-format
+#, php-format
 msgid "Could not save reply for %1$d, %2$d."
-msgstr "Konnte die lokale Gruppen Information nicht speichern."
+msgstr "Konnte Antwort auf %1$d, %2$d nicht speichern."
 
 #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
 #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
@@ -5242,7 +5365,7 @@ msgid "Unable to save tag."
 msgstr "Konnte Seitenbenachrichtigung nicht speichern."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren."
 
@@ -5285,9 +5408,9 @@ msgstr "Folgen"
 #. TRANS: Notification given when one person starts following another.
 #. TRANS: %1$s is the subscriber, %2$s is the subscribed.
 #: classes/Subscription.php:258
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s is now following %2$s."
-msgstr "%1$s ist der Gruppe „%2$s“ beigetreten."
+msgstr "%1$s folgt nun %2$s."
 
 #. TRANS: Notice given on user registration.
 #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
@@ -5363,185 +5486,185 @@ msgid "Untitled page"
 msgstr "Seite ohne Titel"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Hauptnavigation"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Persönliches Profil und Freundes-Zeitleiste"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Eigene"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Ändere deine E-Mail, Avatar, Passwort und Profil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Zum Dienst verbinden"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Verbinden"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Seiteneinstellung ändern"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Admin"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Einladen"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Von der Seite abmelden"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Abmelden"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Neues Benutzerkonto erstellen"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrieren"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Auf der Seite anmelden"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Anmelden"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Hilf mir!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Hilfe"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Suche nach Leuten oder Text"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Suchen"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Seitennachricht"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Lokale Ansichten"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Neue Nachricht"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Unternavigation"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Hilfe"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Über"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "AGB"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privatsphäre"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Quellcode"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontakt"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Plakette"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet-Software-Lizenz"
 
@@ -5549,7 +5672,7 @@ msgstr "StatusNet-Software-Lizenz"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5559,7 +5682,7 @@ msgstr ""
 "site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** ist ein Mikrobloggingdienst."
@@ -5568,7 +5691,7 @@ msgstr "**%%site.name%%** ist ein Mikrobloggingdienst."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5580,20 +5703,20 @@ msgstr ""
 "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "StatusNet-Software-Lizenz"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Inhalte und Daten von %1$s sind privat und vertraulich."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
@@ -5601,7 +5724,7 @@ msgstr ""
 "vorbehalten."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Urheberrecht von Inhalt und Daten liegt bei den Beteiligten. Alle Rechte "
@@ -5609,25 +5732,25 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Alle Inhalte und Daten von %1$s sind unter der %2$s Lizenz verfügbar."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Seitenerstellung"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Später"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Vorher"
 
@@ -5748,33 +5871,33 @@ msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte."
 #. TRANS: OAuth exception thrown when no application is found for a given consumer key.
 #: lib/apiauth.php:175
 msgid "No application for that consumer key."
-msgstr ""
+msgstr "Kein Programm mit diesem Anwender-Schlüssel."
 
 #. TRANS: OAuth exception given when an incorrect access token was given for a user.
 #: lib/apiauth.php:212
 msgid "Bad access token."
-msgstr ""
+msgstr "Schlechter Zugangstoken."
 
 #. TRANS: OAuth exception given when no user was found for a given token (no token was found).
 #: lib/apiauth.php:217
 msgid "No user for that token."
-msgstr ""
+msgstr "Kein Benutzer mit diesem Token."
 
 #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
 #. TRANS: Client error thrown when authentication fails.
 #: lib/apiauth.php:258 lib/apiauth.php:290
 msgid "Could not authenticate you."
-msgstr ""
+msgstr "Konnte dich nicht authentifizieren."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
-msgstr ""
+msgstr "Versuchte, unbekanntes Token ungültig zu machen."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
-msgstr ""
+msgstr "Konnte ungültig gemachtes Token nicht löschen."
 
 #. TRANS: Form legend.
 #: lib/applicationeditform.php:129
@@ -5857,11 +5980,6 @@ msgstr ""
 "Standardeinstellung dieses Programms: Schreibgeschützt oder Lese/"
 "Schreibzugriff"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Abbrechen"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5886,12 +6004,7 @@ msgstr "Widerrufen"
 
 #: lib/atom10feed.php:112
 msgid "author element must contain a name element."
-msgstr ""
-
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Anhänge"
+msgstr "Das „author“-Element muss ein „name“-Element erhaten."
 
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
@@ -6355,14 +6468,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Aktualisierungen via SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Verbindungen"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Programme mit Zugriffserlaubnis"
@@ -7072,7 +7185,7 @@ msgstr "Nachricht senden"
 #: lib/noticeform.php:174
 #, php-format
 msgid "What's up, %s?"
-msgstr "Was ist los, %s?"
+msgstr "Was geht, %s?"
 
 #: lib/noticeform.php:193
 msgid "Attach"
@@ -7163,24 +7276,24 @@ msgstr "Stups"
 msgid "Send a nudge to this user"
 msgstr "Sende diesem Benutzer einen Stups"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Neues Profil konnte nicht angelegt werden."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Fehler beim Einfügen des Avatars."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Fehler beim Einfügen des entfernten Profils."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Doppelte Nachricht."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Konnte neues Abonnement nicht eintragen."
 
@@ -7215,7 +7328,7 @@ msgstr "Deine gesendeten Nachrichten"
 #: lib/personaltagcloudsection.php:56
 #, php-format
 msgid "Tags in %s's notices"
-msgstr "Stichworte in %ss Nachrichten"
+msgstr "Stichworte in den Nachrichten von %s"
 
 #. TRANS: Displayed as version information for a plugin if no version information was found.
 #: lib/plugin.php:121
@@ -7482,9 +7595,9 @@ msgstr "Abbestellen"
 #. TRANS: Exception text shown when no profile can be found for a user.
 #. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
 #: lib/usernoprofileexception.php:60
-#, fuzzy, php-format
+#, php-format
 msgid "User %1$s (%2$d) has no profile record."
-msgstr "Benutzer hat kein Profil."
+msgstr "Benutzer %1$s (%2$d) hat kein Profil."
 
 #: lib/userprofile.php:117
 msgid "Edit Avatar"
@@ -7533,17 +7646,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "vor wenigen Sekunden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "vor einer Minute"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7551,12 +7664,12 @@ msgstr[0] "vor ca. einer Minute"
 msgstr[1] "vor ca. %d Minuten"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "vor einer Stunde"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7564,12 +7677,12 @@ msgstr[0] "vor ca. einer Stunde"
 msgstr[1] "vor ca. %d Stunden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "vor einem Tag"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7577,12 +7690,12 @@ msgstr[0] "vor ca. einem Tag"
 msgstr[1] "vor ca. %d Tagen"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "vor einem Monat"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7590,7 +7703,7 @@ msgstr[0] "vor ca. einem Monat"
 msgstr[1] "vor ca. %d Monaten"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "vor einem Jahr"
 
@@ -7607,7 +7720,7 @@ msgstr "%s ist keine gültige Farbe! Verwenden Sie 3 oder 6 Hex-Zeichen."
 #: scripts/restoreuser.php:82
 #, php-format
 msgid "Backup file for user %s (%s)"
-msgstr ""
+msgstr "Backup-Datei des Benutzers %s (%s)"
 
 #: scripts/restoreuser.php:88
 msgid "No user specified; using backup user."
@@ -7616,4 +7729,32 @@ msgstr "Keine Benutzer-ID angegeben"
 #: scripts/restoreuser.php:94
 #, php-format
 msgid "%d entries in backup."
-msgstr ""
+msgstr "%d Einträge im Backup."
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Die Anfrage %s wurde nicht autorisiert. Bitte gegen einen Zugriffstoken "
+#~ "austauschen."
+
+#~ msgid "Deny"
+#~ msgstr "Ablehnen"
+
+#~ msgid "Path to locales"
+#~ msgstr "Sprachverzeichnis"
+
+#~ msgid "Theme server"
+#~ msgstr "Motiv-Server"
+
+#~ msgid "Theme path"
+#~ msgstr "Motiv-Pfad"
+
+#~ msgid "Background server"
+#~ msgstr "Server für Hintergrundbilder"
+
+#~ msgid "Background path"
+#~ msgstr "Pfad zu den Hintergrundbildern"
+
+#~ msgid "Background directory"
+#~ msgstr "Hintergrund-Verzeichnis"
diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po
index ab2386b198..631b989edc 100644
--- a/locale/en_GB/LC_MESSAGES/statusnet.po
+++ b/locale/en_GB/LC_MESSAGES/statusnet.po
@@ -4,6 +4,7 @@
 # Author: Brion
 # Author: Bruce89
 # Author: CiaranG
+# Author: Lcawte
 # Author: Reedy
 # --
 # This file is distributed under the same license as the StatusNet package.
@@ -12,17 +13,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Core\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:28+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:54+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -93,14 +94,15 @@ msgstr "Save"
 msgid "No such page."
 msgstr "No such page."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +203,13 @@ msgstr "You and friends"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Updates from %1$s and friends on %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +236,7 @@ msgstr "API method not found."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -311,43 +314,60 @@ msgstr "Block user failed."
 msgid "Unblock user failed."
 msgstr "Unblock user failed."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Direct messages from %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "All the direct messages sent from %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Direct messages to %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "All the direct messages sent to %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "No message text!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "That's too long. Max message size is %d chars."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "That's too long. Max message size is %d chars."
+msgstr[1] "That's too long. Max message size is %d chars."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Recipient user not found."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Can't send direct messages to users who aren't your friend."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -524,19 +544,24 @@ msgid "groups on %s"
 msgstr "groups on %s"
 
 #: actions/apimediaupload.php:100
-#, fuzzy
 msgid "Upload failed."
-msgstr "Upload file"
+msgstr "Upload failed."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Invalid login token specified."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "No oauth_token parameter provided."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Invalid token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -554,36 +579,22 @@ msgstr "Invalid token."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "There was a problem with your session token. Try again, please."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Invalid nickname / password!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Database error deleting OAuth application user."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Database error inserting OAuth application user."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"The request token %s has been authorised. Please exchange it for an access "
-"token."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "The request token %s has been denied and revoked."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -592,15 +603,15 @@ msgstr "The request token %s has been denied and revoked."
 msgid "Unexpected form submission."
 msgstr "Unexpected form submission."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "An application would like to connect to your account"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Allow or deny access"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -612,11 +623,11 @@ msgstr ""
 "give access to your %4$s account to third parties you trust."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Account"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -625,23 +636,47 @@ msgid "Nickname"
 msgstr "Nickname"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Password"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Deny"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Cancel"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Allow"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Allow or deny access to your account information."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "IM confirmation cancelled."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "The request token %s has been denied and revoked."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "You are not authorised."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "This method requires a POST or DELETE."
@@ -802,7 +837,8 @@ msgid "Preview"
 msgstr "Preview"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Delete"
 
@@ -858,12 +894,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "No"
@@ -876,12 +913,13 @@ msgstr "Do not block this user"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Yes"
@@ -899,6 +937,7 @@ msgstr "Failed to save block information."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1024,7 +1063,7 @@ msgstr "You are not the owner of this application."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "There was a problem with your session token."
 
@@ -1052,6 +1091,58 @@ msgstr "Do not delete this application"
 msgid "Delete this application"
 msgstr "Delete this application"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "You must be logged in to leave a group."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "No nickname or ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "You are not a member of this group."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Could not update group."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s left group %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Delete user"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Are you sure you want to delete this user? This will clear all data about "
+"the user from the database, without a backup."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Do not delete this notice"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Delete this user"
+
 #. 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
@@ -1128,54 +1219,63 @@ msgstr "Design"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "nvalid logo URL."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "nvalid logo URL."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Theme not available: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Change logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Site logo"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Site logo"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Change theme"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Site theme"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Theme for the site."
 
-#: actions/designadminpanel.php:480
-#, fuzzy
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
-msgstr "Site theme"
+msgstr "Custom theme"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Change background image"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Background"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1185,66 +1285,66 @@ msgstr ""
 "$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "On"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Off"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Turn background image on or off."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Tile background image"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Change colours"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Content"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Sidebar"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Text"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Links"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Use defaults"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Restore default designs"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Reset back to default"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1254,7 +1354,7 @@ msgstr "Reset back to default"
 msgid "Save"
 msgstr "Save"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Save design"
 
@@ -1725,7 +1825,7 @@ msgstr "Couldn't convert request tokens to access tokens."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Remote service uses unknown version of OMB protocol."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Error updating remote profile."
 
@@ -2170,9 +2270,8 @@ msgid "This is your inbox, which lists your incoming private messages."
 msgstr "This is your inbox, which lists your incoming private messages."
 
 #: actions/invite.php:39
-#, fuzzy
 msgid "Invites have been disabled."
-msgstr "Invitations enabled"
+msgstr "Invites have been disabled."
 
 #: actions/invite.php:41
 #, php-format
@@ -2317,10 +2416,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "You must be logged in to join a group."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "No nickname or ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2562,6 +2657,11 @@ msgstr "You can't send a message to this user."
 msgid "No content!"
 msgstr "No content!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "That's too long. Max message size is %d chars."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "No recipient specified."
@@ -2722,7 +2822,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Not a supported data format."
 
@@ -2759,9 +2859,8 @@ msgid "View profile designs"
 msgstr "View profile designs"
 
 #: actions/othersettings.php:123
-#, fuzzy
 msgid "Show or hide profile designs."
-msgstr "View profile designs"
+msgstr "Show or hide profile designs."
 
 #: actions/othersettings.php:153
 msgid "URL shortening service is too long (max 50 chars)."
@@ -2871,155 +2970,166 @@ msgstr ""
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Theme directory not readable: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Avatar directory not writable: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Background directory not writable: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Locales directory not readable: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Site"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Server"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Site path"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Theme directory"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr ""
 
-#: actions/pathsadminpanel.php:264
+#: actions/pathsadminpanel.php:265
 #, fuzzy
-msgid "Theme server"
-msgstr "SSL server"
+msgid "Server for themes"
+msgstr "Theme for the site."
 
-#: actions/pathsadminpanel.php:268
-#, fuzzy
-msgid "Theme path"
-msgstr "Site path"
-
-#: actions/pathsadminpanel.php:272
-#, fuzzy
-msgid "Theme directory"
-msgstr "Avatar directory"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatars"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Avatar server"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Avatar path"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Avatar directory"
-
-#: actions/pathsadminpanel.php:301
-#, fuzzy
-msgid "Backgrounds"
-msgstr "Background"
-
-#: actions/pathsadminpanel.php:305
-#, fuzzy
-msgid "Background server"
-msgstr "Background"
-
-#: actions/pathsadminpanel.php:309
-#, fuzzy
-msgid "Background path"
-msgstr "Background"
-
-#: actions/pathsadminpanel.php:313
-#, fuzzy
-msgid "Background directory"
-msgstr "Background directory not writable: %s."
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Never"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Sometimes"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:329
-#, fuzzy
-msgid "Use SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL server"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Site path"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Theme directory"
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatars"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Avatar server"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Avatar path"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Avatar directory"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Backgrounds"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+#, fuzzy
+msgid "Attachments"
+msgstr "No attachments."
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Never"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Sometimes"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr ""
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Use SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Save paths"
 
@@ -3221,24 +3331,24 @@ msgid "Public Stream Feed (Atom)"
 msgstr "Public Stream Feed (Atom)"
 
 #: actions/public.php:188
-#, fuzzy, php-format
+#, php-format
 msgid ""
 "This is the public timeline for %%site.name%% but no one has posted anything "
 "yet."
 msgstr ""
-"This is the timeline for %s and friends but no one has posted anything yet."
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
 
 #: actions/public.php:191
 msgid "Be the first to post!"
 msgstr ""
 
 #: actions/public.php:195
-#, fuzzy, php-format
+#, php-format
 msgid ""
 "Why not [register an account](%%action.register%%) and be the first to post!"
 msgstr ""
-"Why not [register an account](%%action.register%%) and be the first to add a "
-"notice to your favourites!"
+"Why not [register an account](%%action.register%%) and be the first to post!"
 
 #: actions/public.php:242
 #, php-format
@@ -3283,13 +3393,13 @@ msgid "Be the first to post one!"
 msgstr ""
 
 #: actions/publictagcloud.php:75
-#, fuzzy, php-format
+#, php-format
 msgid ""
 "Why not [register an account](%%action.register%%) and be the first to post "
 "one!"
 msgstr ""
-"Why not [register an account](%%action.register%%) and be the first to add a "
-"notice to your favourites!"
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
 
 #: actions/publictagcloud.php:134
 msgid "Tag cloud"
@@ -3336,9 +3446,8 @@ msgid "You have been identified. Enter a new password below. "
 msgstr ""
 
 #: actions/recoverpassword.php:188
-#, fuzzy
 msgid "Password recovery"
-msgstr "Password recovery requested"
+msgstr "Password recovery"
 
 #: actions/recoverpassword.php:191
 msgid "Nickname or email address"
@@ -3773,7 +3882,7 @@ msgstr "Organization"
 msgid "Description"
 msgstr "Description"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistics"
@@ -3915,65 +4024,65 @@ msgstr ""
 msgid "Group actions"
 msgstr "Group actions"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Notice feed for %s group (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Notice feed for %s group (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Notice feed for %s group (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Outbox for %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Members"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "All members"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Created"
 
-#: actions/showgroup.php:455
-#, php-format
-msgid ""
-"**%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%%%%))"
-msgstr ""
-"**%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%%%%))"
-
 #: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%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%%%%))"
+msgstr ""
+"**%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%%%%))"
+
+#: actions/showgroup.php:467
+#, php-format
+msgid ""
+"**%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. "
 msgstr ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3981,7 +4090,7 @@ msgstr ""
 "[StatusNet](http://status.net/) tool. Its members share short messages about "
 "their life and interests. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Admins"
 
@@ -4924,7 +5033,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Version"
 
@@ -5158,7 +5267,7 @@ msgid "Unable to save tag."
 msgstr "Unable to save site notice."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "You have been banned from subscribing."
 
@@ -5280,185 +5389,185 @@ msgid "Untitled page"
 msgstr "Untitled page"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Primary site navigation"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Personal profile and friends timeline"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personal"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Change your email, avatar, password, profile"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Connect to services"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Connect"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Change site configuration"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Admin"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Invite friends and colleagues to join you on %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Invite"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Logout from the site"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Logout"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Create an account"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Register"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Login to the site"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Login"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Help me!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Help"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Search for people or text"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Search"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Site notice"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Local views"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Page notice"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Secondary site navigation"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Help"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "About"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "F.A.Q."
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privacy"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Source"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contact"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Badge"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet software licence"
 
@@ -5466,7 +5575,7 @@ msgstr "StatusNet software licence"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5476,7 +5585,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** is a microblogging service."
@@ -5485,7 +5594,7 @@ msgstr "**%%site.name%%** is a microblogging service."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5497,50 +5606,50 @@ msgstr ""
 "org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Site content license"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "All %1$s content and data are available under the %2$s licence."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Pagination"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "After"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Before"
 
@@ -5680,12 +5789,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5770,11 +5879,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Cancel"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5801,12 +5905,6 @@ msgstr "Revoke"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-#, fuzzy
-msgid "Attachments"
-msgstr "No attachments."
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 #, fuzzy
@@ -6268,14 +6366,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Updates by SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Connections"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Authorised connected applications"
@@ -6981,24 +7079,24 @@ msgstr "Nudge"
 msgid "Send a nudge to this user"
 msgstr "Send a nudge to this user"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Couldn't insert new subscription."
 
@@ -7353,17 +7451,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "a few seconds ago"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "about a minute ago"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7371,12 +7469,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "about an hour ago"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7384,12 +7482,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "about a day ago"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7397,12 +7495,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "about a month ago"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7410,7 +7508,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "about a year ago"
 
@@ -7438,3 +7536,28 @@ msgstr "No user ID specified."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "The request token %s has been authorised. Please exchange it for an "
+#~ "access token."
+
+#~ msgid "Deny"
+#~ msgstr "Deny"
+
+#~ msgid "Theme server"
+#~ msgstr "Theme server"
+
+#~ msgid "Theme path"
+#~ msgstr "Theme path"
+
+#~ msgid "Background server"
+#~ msgstr "Background server"
+
+#~ msgid "Background path"
+#~ msgstr "Background path"
+
+#~ msgid "Background directory"
+#~ msgstr "Background directory"
diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po
index e69920f845..3a497635f6 100644
--- a/locale/eo/LC_MESSAGES/statusnet.po
+++ b/locale/eo/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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:29+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:40:58+0000\n"
 "Language-Team: Esperanto \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -95,14 +95,15 @@ msgstr "Konservu"
 msgid "No such page."
 msgstr "Ne estas tiu paĝo."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -203,12 +204,13 @@ msgstr "Vi kaj amikoj"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Ĝisdatiĝoj de %1$s kaj amikoj ĉe %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -235,7 +237,7 @@ msgstr "Metodo de API ne troviĝas."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -311,43 +313,59 @@ msgstr "Ne sukcesis bloki uzanton."
 msgid "Unblock user failed."
 msgstr "Ne sukcesis malbloki uzanton."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Rektaj mesaĝoj de %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Ĉiuj rektaj mesaĝoj senditaj de %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Rektaj mesaĝoj al %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Ĉiuj rektaj mesaĝoj senditaj al %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Sen mesaĝteksto!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Tro longas. Mesaĝa longlimo estas %d signoj."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Tro longas. Mesaĝa longlimo estas %d signoj."
+msgstr[1] "Tro longas. Mesaĝa longlimo estas %d signoj."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Ricevonta uzanto ne troviĝas."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Vi ne povas sendi rektan mesaĝon al uzanto kiu ne estas via amiko."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Ne sendu mesaĝon al vi mem! Simple suspiru anstataŭ."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -528,15 +546,21 @@ msgstr "grupoj ĉe %s"
 msgid "Upload failed."
 msgstr "Malsukcesis alŝuti"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Specifita ensalutado-ĵetono nevalidas."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Ne oauth_token parametro provizita."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Nevalida ĵetono"
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -554,36 +578,22 @@ msgstr "Nevalida ĵetono"
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Estis problemo pri via seanco. Bonvolu provi refoje."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Nevalida kromnomo / pasvorto!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Datumbaza eraro forigi la uzanton de *OAuth-aplikaĵo."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"La demanda ĵetono %s estis rajtigita. Bonvolu interŝanĝi ĝin por atinga "
-"ĵetono."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "La demanda token %s estis neita kaj revokita."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -592,15 +602,15 @@ msgstr "La demanda token %s estis neita kaj revokita."
 msgid "Unexpected form submission."
 msgstr "Neatendita formo-sendo."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Aplikaĵo volas konekti al via konto"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Permesi aŭ malpermesi atingon"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -612,11 +622,11 @@ msgstr ""
 "via %4$s konto al triaj partioj, kiujn vi fidas."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Konto"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -625,23 +635,47 @@ msgid "Nickname"
 msgstr "Kromnomo"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Pasvorto"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Malpermesi"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Nuligi"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Permesi"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Permesi aŭ malpermesi atingon al via kontdatumo."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Tujmesaĝila konfirmo nuligita."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "La demanda token %s estis neita kaj revokita."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Vi ne estas rajtigita."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Ĉi tiu metodo bezonas POST aǔ DELETE."
@@ -802,7 +836,8 @@ msgid "Preview"
 msgstr "Antaŭrigardo"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Forigi"
 
@@ -857,12 +892,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Ne"
@@ -875,12 +911,13 @@ msgstr "Ne bloki la uzanton"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Jes"
@@ -898,6 +935,7 @@ msgstr "Eraris konservi blokado-informon."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1023,7 +1061,7 @@ msgstr "Vi ne estas la posedanto de ĉi tiu aplikaĵo."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Problemo okazas pri via seancĵetono."
 
@@ -1050,6 +1088,58 @@ msgstr "Ne forigu ĉi tiun aplikaĵon."
 msgid "Delete this application"
 msgstr "Viŝi ĉi tiun aplikon"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Ensalutu por eksaniĝi."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Ne estas alinomo aŭ ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Vi ne estas grupano."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Malsukcesis ĝisdatigi grupon."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s eksaniĝis de grupo %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Forigi uzanton"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Ĉu vi certe volas forigi la uzanton? Ĉiu datumo pri la uzanto viŝiĝos de la "
+"datumbazo sen sekurkopio."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Ne forigi la avizon"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Forigi la uzanton"
+
 #. 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
@@ -1125,53 +1215,63 @@ msgstr "Aspekto"
 msgid "Design settings for this StatusNet site"
 msgstr "Desegna agordo por ĉi tiu StatusNet-retejo"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "URL por la emblemo nevalida."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "URL por la emblemo nevalida."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Desegno ne havebla: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Ŝanĝi emblemon"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Reteja emblemo"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Reteja emblemo"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Ŝanĝi desegnon"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Reteja desegno"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Desegno por la retejo"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Propra desegno"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Vi povas alŝuti propran StatusNet-desegnon kiel .zip-dosiero"
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Ŝanĝi fonbildon"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Fono"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1179,66 +1279,66 @@ msgid ""
 msgstr "Vi povas alŝuti fonbildon por la retejo. Dosiero-grandlimo estas %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "En"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "For"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Aktivigi aŭ senaktivigi fonbildon"
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Ripeti la fonbildon"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Ŝanĝi kolorojn"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Enhavo"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Flanka strio"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Teksto"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Ligiloj"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Speciala"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Propra CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Uzu defaŭlton"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Restaŭri defaŭltajn desegnojn"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Redefaŭltiĝi"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1248,7 +1348,7 @@ msgstr "Redefaŭltiĝi"
 msgid "Save"
 msgstr "Konservi"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Savi desegnon"
 
@@ -1718,7 +1818,7 @@ msgstr "Malsukcesis interŝanĝi petĵetonon al atingoĵetono."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Fora servo uzas nekonatan version de OMB-protokolo."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Eraro je ĝisdatigo de fora profilo."
 
@@ -2304,10 +2404,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Ensalutu por aniĝi al grupo."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Ne estas alinomo aŭ ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2548,6 +2644,11 @@ msgstr "Vi ne povas sendi mesaĝon al la uzanto."
 msgid "No content!"
 msgstr "Neniu enhavo!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Tro longas. Mesaĝa longlimo estas %d signoj."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Neniu ricevonto speifiĝas."
@@ -2707,7 +2808,7 @@ msgstr "Bonvolu, nur %s-URL per plata HTTP."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Datumformato ne subteniĝas."
 
@@ -2856,147 +2957,166 @@ msgstr "Vojoj"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Desegno adresaro ne havebla: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Avatara adresaro ne skribebla: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Fona adresaro ne skribebla: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Lokaĵara adresaro ne havebla: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Nevalida SSL-servilo. La longlimo estas 225 literoj."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Retejo"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Servilo"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Gastigserva Nomo de la retejo"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Vojo"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Reteja vojo"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Lokigilo al lokaĵaro"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Tema adresaro"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Adresara lokigilo al lokaĵaro"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Tajlora URL"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Ĉu uzi tajloran (pli facile legebla kaj memorebla) URL?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Temo"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Tema servilo"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Desegno por la retejo"
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Temo-lokigilo"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Tema adresaro"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avataroj"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Avatara servilo"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Avataro-lokigilo"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Avatara adresaro"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Fono"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Fono-lokigilo"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Fono-lokigilo"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Fona adresaro"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "\"SSL\""
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Neniam"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Kelkfoje"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Ĉiam"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Uzi \"SSL\""
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Kiam uzi \"SSL\""
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "\"SSL\"a servilo"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Reteja vojo"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Tema adresaro"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Adresara lokigilo al lokaĵaro"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avataroj"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Avatara servilo"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Avataro-lokigilo"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Avatara adresaro"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Fono"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Aldonaĵo"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "\"SSL\""
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Neniam"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Kelkfoje"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Ĉiam"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Uzi \"SSL\""
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Kiam uzi \"SSL\""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Servilo, kien orienti \"SSL\"-peton"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Konservu lokigilon"
 
@@ -3751,7 +3871,7 @@ msgstr "Organizaĵo"
 msgid "Description"
 msgstr "Priskribo"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistiko"
@@ -3891,45 +4011,45 @@ msgstr "Alnomo"
 msgid "Group actions"
 msgstr "Grupaj agoj"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Avizofluo de grupo %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Avizofluo de grupo %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Avizofluo de grupo %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Foramiko de grupo %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Grupanoj"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Ĉiuj grupanoj"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Kreita"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3943,7 +4063,7 @@ 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:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3956,7 +4076,7 @@ msgstr ""
 "Molvaro [StatusNet](*http://*status.*net/), kie anoj konigas mesaĝetojn pri "
 "siaj vivoj kaj ŝatokupoj. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administrantoj"
 
@@ -4890,7 +5010,7 @@ msgid "Plugins"
 msgstr "Kromprogramo"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versio"
 
@@ -5122,7 +5242,7 @@ msgid "Unable to save tag."
 msgstr "Malsukcesis konservi etikedon."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Vi esatas blokita de aboni."
 
@@ -5242,185 +5362,185 @@ msgid "Untitled page"
 msgstr "Sentitola paĝo"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Unua reteja navigado"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Tempstrio pri vi kaj amikoj"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Persona"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Ŝanĝu la retpoŝtadreson, vizaĝbildon, pasvorton aŭ la profilon"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Konekti al servoj"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Konekti"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Ŝanĝi agordojn de la retejo"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administri"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Inviti amikojn kaj kolegojn al %s kun vi"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Inviti"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Elsaluti el la retejo"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr " Elsaluti"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Krei konton"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registriĝi"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Ensaluti al la retejo"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Ensaluti"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Helpu min!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Helpo"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Serĉi homon aŭ tekston"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Serĉi"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Reteja anonco"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Loka vido"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Paĝa anonco"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Dua reteja navigado"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Helpo"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Enkonduko"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Oftaj demandoj"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Serva Kondiĉo"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privateco"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Fontkodo"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontakto"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Insigno"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licenco de la programaro StatusNet"
 
@@ -5428,7 +5548,7 @@ msgstr "Licenco de la programaro StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5438,7 +5558,7 @@ msgstr ""
 "site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** estas mikrobloga servo."
@@ -5447,7 +5567,7 @@ msgstr "**%%site.name%%** estas mikrobloga servo."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5459,27 +5579,27 @@ msgstr ""
 "licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Reteja enhava permesilo"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Enhavo kaj datumo de %1$s estas privata kaj konfidenca."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 "Enhava kaj datuma aŭtorrajto apartenas al %1$s. Ĉiuj rajtoj rezervitaj."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Enhava kaj datuma aŭtorrajto apartenas al kontribuintoj. Ĉiuj rajtoj "
@@ -5487,25 +5607,25 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Ĉiuj enhavo kaj datumo ĉe %1$s estas havebla sub permesilo %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paĝado"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Poste"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Antaŭe"
 
@@ -5645,12 +5765,12 @@ msgid "Could not authenticate you."
 msgstr "Malsukcesis aŭtentigi vin."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Provis revoki nekonatan ĵetonon."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Malsukcesis forigi revokitan ĵetonon."
 
@@ -5733,11 +5853,6 @@ msgstr "Leg-skribe"
 msgid "Default access for this application: read-only, or read-write"
 msgstr "Defaŭta aliro por la aplikaĵo: nur-lege aŭ leg-skribe."
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Nuligi"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5764,11 +5879,6 @@ msgstr "Revoki"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Aldonaĵo"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6231,14 +6341,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Ĝisdatiĝo per SMM"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Konektoj"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Konektitaj aplikaĵoj rajtigitaj"
@@ -7036,24 +7146,24 @@ msgstr "Puŝeti"
 msgid "Send a nudge to this user"
 msgstr "Sendi puŝeton al la uzanto"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Eraris enmeti novan profilon"
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Eraris enmeti novan vizaĝbildon."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Eraris enmeti foran profilon."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Refoja avizo."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Eraris enmeti novan abonon."
 
@@ -7407,17 +7517,17 @@ msgid "Moderator"
 msgstr "Moderanto"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "antaŭ kelkaj sekundoj"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "antaŭ ĉirkaŭ unu minuto"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7425,12 +7535,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu minuto"
 msgstr[1] "antaŭ ĉirkaŭ %d minutoj"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "antaŭ ĉirkaŭ unu horo"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7438,12 +7548,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu horo"
 msgstr[1] "antaŭ ĉirkaŭ %d horoj"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "antaŭ ĉirkaŭ unu tago"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7451,12 +7561,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu tago"
 msgstr[1] "antaŭ ĉirkaŭ %d tagoj"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "Antaŭ ĉrikaŭ unu monato"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7464,7 +7574,7 @@ msgstr[0] "antaŭ ĉirkaŭ unu monato"
 msgstr[1] "antaŭ ĉirkaŭ %d monatoj"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "antaŭ ĉirkaŭ unu jaro"
 
@@ -7492,3 +7602,31 @@ msgstr "Neniu uzanto-ID specifiĝas."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "La demanda ĵetono %s estis rajtigita. Bonvolu interŝanĝi ĝin por atinga "
+#~ "ĵetono."
+
+#~ msgid "Deny"
+#~ msgstr "Malpermesi"
+
+#~ msgid "Path to locales"
+#~ msgstr "Lokigilo al lokaĵaro"
+
+#~ msgid "Theme server"
+#~ msgstr "Tema servilo"
+
+#~ msgid "Theme path"
+#~ msgstr "Temo-lokigilo"
+
+#~ msgid "Background server"
+#~ msgstr "Fono-lokigilo"
+
+#~ msgid "Background path"
+#~ msgstr "Fono-lokigilo"
+
+#~ msgid "Background directory"
+#~ msgstr "Fona adresaro"
diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po
index 26c96c266d..2529b9d248 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:31+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:02+0000\n"
 "Language-Team: Spanish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -97,14 +97,15 @@ msgstr "Guardar"
 msgid "No such page."
 msgstr "No existe tal página."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -206,12 +207,13 @@ msgstr "Tú y tus amistades"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -238,7 +240,7 @@ msgstr "Método de API no encontrado."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -314,43 +316,59 @@ msgstr "Falló bloquear usuario."
 msgid "Unblock user failed."
 msgstr "Falló desbloquear usuario."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Mensajes directos de %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Todos los mensajes directos enviados desde %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Mensajes directos a %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Todos los mensajes directos enviados a %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "¡Sin texto de mensaje!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres."
+msgstr[1] "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "No se encuentra usuario receptor."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "No te auto envíes un mensaje; dícetelo a ti mismo."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -532,15 +550,21 @@ msgstr "Grupos en %s"
 msgid "Upload failed."
 msgstr "Carga falló."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Token de acceso inválido especificado."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "No se ha provisto de un parámetro oauth_token."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Token inválido."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -559,38 +583,24 @@ msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 "Hubo un problema con tu clave de sesión.  Por favor, intenta nuevamente."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "¡Usuario o contraseña inválidos!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr ""
 "Error de la base de datos durante la eliminación del usuario de la "
 "aplicación OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Error de base de datos al insertar usuario de la aplicación OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"El token de solicitud %s ha sido autorizado. Por favor, cámbialo por un "
-"token de acceso."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "El token de solicitud %2 ha sido denegado y revocado."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -599,15 +609,15 @@ msgstr "El token de solicitud %2 ha sido denegado y revocado."
 msgid "Unexpected form submission."
 msgstr "Envío de formulario inesperado."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Una aplicación quisiera conectarse a tu cuenta"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Permitir o denegar el acceso"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -619,11 +629,11 @@ msgstr ""
 "debes dar acceso a tu cuenta %4$s a terceras partes en las que confíes."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Cuenta"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -632,23 +642,47 @@ msgid "Nickname"
 msgstr "Usuario"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Contraseña"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Denegar"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Permitir"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Permitir o denegar el acceso a la información de tu cuenta."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Confirmación de mensajería instantánea cancelada."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "El token de solicitud %2 ha sido denegado y revocado."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "No estás autorizado."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Este método requiere un PUBLICAR O ELIMINAR"
@@ -810,7 +844,8 @@ msgid "Preview"
 msgstr "Vista previa"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Borrar"
 
@@ -866,12 +901,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "No"
@@ -884,12 +920,13 @@ msgstr "No bloquear a este usuario"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Sí"
@@ -907,6 +944,7 @@ msgstr "No se guardó información de bloqueo."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1033,7 +1071,7 @@ msgstr "No eres el propietario de esta aplicación."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Hubo problemas con tu clave de sesión."
 
@@ -1061,6 +1099,58 @@ msgstr "No eliminar esta aplicación"
 msgid "Delete this application"
 msgstr "Borrar esta aplicación"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Debes estar conectado para dejar un grupo."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Ningún nombre de usuario o ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "No eres miembro de este grupo."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "No se pudo actualizar el grupo."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s ha dejado el grupo %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Borrar usuario"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"¿Realmente deseas eliminar este usuario? Esto borrará de la base de datos "
+"todos los datos sobre el usuario, sin dejar una copia de seguridad."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "No eliminar este mensaje"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Borrar este usuario"
+
 #. 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
@@ -1137,53 +1227,63 @@ msgstr "Diseño"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "URL de logotipo inválido."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "URL de logotipo inválido."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Tema no disponible: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Cambiar logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo del sitio"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo del sitio"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Cambiar el tema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Tema del sitio"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Tema para el sitio."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Personalizar tema"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Puedes subir un tema personalizado StatusNet como un archivo .ZIP."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Cambiar la imagen de fondo"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Fondo"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1193,66 +1293,66 @@ msgstr ""
 "es %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Activar"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Desactivar"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Activar o desactivar la imagen de fondo."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Imagen de fondo en mosaico"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Cambiar colores"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Contenido"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barra lateral"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Texto"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Vínculos"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avanzado"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Personalizar CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Utilizar los valores predeterminados"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Restaurar los diseños predeterminados"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Volver a los valores predeterminados"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1262,7 +1362,7 @@ msgstr "Volver a los valores predeterminados"
 msgid "Save"
 msgstr "Guardar"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Guardar el diseño"
 
@@ -1738,7 +1838,7 @@ msgstr "No se pudo convertir el token de solicitud en token de acceso."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "El servicio remoto utiliza una versión desconocida del protocolo OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Error al actualizar el perfil remoto."
 
@@ -2336,10 +2436,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Debes estar conectado para unirte a un grupo."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Ningún nombre de usuario o ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2585,6 +2681,11 @@ msgstr "No puedes enviar mensaje a este usuario."
 msgid "No content!"
 msgstr "¡Ningún contenido!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "No se especificó receptor."
@@ -2748,7 +2849,7 @@ msgstr "Solamente %s URL sobre HTTP simples, por favor."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "No es un formato de datos compatible."
 
@@ -2897,147 +2998,166 @@ msgstr "Rutas"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Directorio de temas ilegible: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Directorio de avatares no escribible: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Directorio de fondo no escribible: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Directorio de configuración regional ilegible: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Servidor SSL no válido. La longitud máxima es de 255 caracteres."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Sitio"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Servidor"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Nombre del host del servidor del sitio."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Ruta"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Ruta del sitio"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Ruta de las configuraciones locales"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Directorio de temas"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Ruta del directorio de las configuraciones locales"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "URL agradables"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "¿Usar URL amigables (más legibles y memorizables)?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Tema"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Servidor de los temas"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Tema para el sitio."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Ruta del tema"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Directorio de temas"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Imágenes"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Servidor de la imagen"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Ruta de la imagen"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Directorio de la imagen"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Fondos"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Servidor de fondo"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Ruta del fondo"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Directorio del fondo"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nunca"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "A veces"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Siempre"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Usar SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Cuándo utilizar SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Servidor SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Ruta del sitio"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Directorio de temas"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Ruta del directorio de las configuraciones locales"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Imágenes"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Servidor de la imagen"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Ruta de la imagen"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Directorio de la imagen"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Fondos"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Adjuntos"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nunca"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "A veces"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Siempre"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Usar SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Cuándo utilizar SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Servidor hacia el cual dirigir las solicitudes SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Guardar rutas"
 
@@ -3817,7 +3937,7 @@ msgstr "Organización"
 msgid "Description"
 msgstr "Descripción"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Estadísticas"
@@ -3959,45 +4079,45 @@ msgstr "Alias"
 msgid "Group actions"
 msgstr "Acciones del grupo"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Canal de mensajes del grupo %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Canal de mensajes del grupo %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Canal de mensajes del grupo %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Amistades de amistades del grupo %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Miembros"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Todos los miembros"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Creado"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4013,7 +4133,7 @@ msgstr ""
 "action.register%%%%) para formar parte de este y muchos más grupos! ([Más "
 "información](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4026,7 +4146,7 @@ msgstr ""
 "herramienta de software libre [StatusNet](http://status.net/). Sus miembros "
 "comparten mensajes cortos acerca de su vida e intereses. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administradores"
 
@@ -4985,7 +5105,7 @@ msgid "Plugins"
 msgstr "Complementos"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versión"
 
@@ -5221,7 +5341,7 @@ msgid "Unable to save tag."
 msgstr "Incapaz de grabar etiqueta."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Se te ha prohibido la suscripción."
 
@@ -5342,185 +5462,185 @@ msgid "Untitled page"
 msgstr "Página sin título"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Navegación de sitio primario"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Perfil personal y línea temporal de amistades"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personal"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Cambia tu correo electrónico, imagen, contraseña, perfil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Conectar a los servicios"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Conectarse"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Cambiar la configuración del sitio"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Admin"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Invita a amistades y compañeros a unirse a tí en %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Invitar"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Cerrar sesión en el sitio"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Cerrar sesión"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Crear una cuenta"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrarse"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Iniciar sesión en el sitio"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Inicio de sesión"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "¡Ayúdame!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Ayuda"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Buscar personas o texto"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Buscar"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Mensaje de sitio"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Vistas locales"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Mensaje de página"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Navegación de sitio secundario"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Ayuda"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Acerca de"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Preguntas Frecuentes"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "TOS"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privacidad"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Fuente"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Ponerse en contacto"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Insignia"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licencia de software de StatusNet"
 
@@ -5528,7 +5648,7 @@ msgstr "Licencia de software de StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5538,7 +5658,7 @@ msgstr ""
 "[%%site.broughtby%%**](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** es un servicio de microblogueo."
@@ -5547,7 +5667,7 @@ msgstr "**%%site.name%%** es un servicio de microblogueo."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5559,27 +5679,27 @@ msgstr ""
 "licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licencia de contenido del sitio"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "El contenido y datos de %1$s son privados y confidenciales."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 "Copyright del contenido y los datos de%1$s. Todos los derechos reservados."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Derechos de autor de contenido y datos por los colaboradores. Todos los "
@@ -5587,7 +5707,7 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
@@ -5595,19 +5715,19 @@ msgstr ""
 "$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paginación"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Después"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Antes"
 
@@ -5751,12 +5871,12 @@ msgid "Could not authenticate you."
 msgstr "No ha sido posible autenticarte."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Se intentó revocar un token desconocido."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "No se pudo eliminar el token revocado."
 
@@ -5840,11 +5960,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Cancelar"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5871,11 +5986,6 @@ msgstr "Revocar"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Adjuntos"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6339,14 +6449,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Actualizaciones por sms"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Conecciones"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Aplicaciones conectadas autorizadas"
@@ -7151,24 +7261,24 @@ msgstr "Dar un toque a "
 msgid "Send a nudge to this user"
 msgstr "Dar un toque a este usuario"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Error al insertar un nuevo perfil."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Error al insertar el avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Error al insertar el perfil remoto."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Mensaje duplicado."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "No se pudo insertar una nueva suscripción."
 
@@ -7524,17 +7634,17 @@ msgid "Moderator"
 msgstr "Moderador"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "hace unos segundos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "hace un minuto"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7542,12 +7652,12 @@ msgstr[0] "hace aproximadamente un minuto"
 msgstr[1] "hace aproximadamente %d minutos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "hace una hora"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7555,12 +7665,12 @@ msgstr[0] "hace aproximadamente una hora"
 msgstr[1] "hace aproximadamente %d horas"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "hace un día"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7568,12 +7678,12 @@ msgstr[0] "hace aproximadamente un día"
 msgstr[1] "hace aproximadamente %d días"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "hace un mes"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7581,7 +7691,7 @@ msgstr[0] "hace aproximadamente un mes"
 msgstr[1] "hace aproximadamente %d meses"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "hace un año"
 
@@ -7609,3 +7719,31 @@ msgstr "No se ha especificado ID de usuario."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "El token de solicitud %s ha sido autorizado. Por favor, cámbialo por un "
+#~ "token de acceso."
+
+#~ msgid "Deny"
+#~ msgstr "Denegar"
+
+#~ msgid "Path to locales"
+#~ msgstr "Ruta de las configuraciones locales"
+
+#~ msgid "Theme server"
+#~ msgstr "Servidor de los temas"
+
+#~ msgid "Theme path"
+#~ msgstr "Ruta del tema"
+
+#~ msgid "Background server"
+#~ msgstr "Servidor de fondo"
+
+#~ msgid "Background path"
+#~ msgstr "Ruta del fondo"
+
+#~ msgid "Background directory"
+#~ msgstr "Directorio del fondo"
diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po
index ecfa7c7569..48666f24d8 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:32+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:04+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
-"X-POT-Import-Date: 2010-10-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -96,14 +96,15 @@ msgstr "ذخیره"
 msgid "No such page."
 msgstr "چنین صفحه‌ای وجود ندارد."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -203,12 +204,13 @@ msgstr "شما و دوستان"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "به روز رسانی از %1$s و دوستان در %2$s"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -235,7 +237,7 @@ msgstr "رابط مورد نظر پیدا نشد."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -309,43 +311,58 @@ msgstr "مسدود کردن کاربر شکست خورد."
 msgid "Unblock user failed."
 msgstr "باز کردن کاربر ناموفق بود."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "پیام‌های مستقیم از %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "تمام پیام‌های مستقیم فرستاده‌شده از %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "پیام‌های مستقیم به %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "تمام پیام‌های مستقیم فرستاده‌شده به %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "هیچ پیام متنی وجود ندارد!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "این بسیار طولانی است. بیشینهٔ اندازهٔ پیام %d نویسه است."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "این بسیار طولانی است. بیشینهٔ اندازهٔ پیام %d نویسه است."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "کاربر گیرنده یافت نشد."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "نمی‌توان پیام مستقیم را به کاربرانی که دوست شما نیستند، فرستاد."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "یک پیام را به خودتان نفرستید؛ در عوض آن را آهسته برای خود بگویید."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -526,15 +543,21 @@ msgstr "گروه‌ها در %s"
 msgid "Upload failed."
 msgstr "بارگذاری شکست خورد."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "رمز ورود مشخص شده نامعتبر است."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "هیچ پارامتر oauth_token آماده نشده است."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "رمز نامعتبر است."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -552,35 +575,22 @@ msgstr "رمز نامعتبر است."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "مشکلی در دریافت نشست شما وجود دارد. لطفا بعدا سعی کنید."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "نام کاربری یا گذرواژه نامعتبر است!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "هنگام حذف‌کردن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"نشانهٔ درخواست %s تایید شد. لطفا آن را برای یک نشانهٔ دسترسی مبادله کنید."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "نشانهٔ درخواست %s پذیرفته نشد و لغو شد."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -589,15 +599,15 @@ msgstr "نشانهٔ درخواست %s پذیرفته نشد و لغو شد."
 msgid "Unexpected form submission."
 msgstr "ارسال غیر قابل انتظار فرم."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "یک برنامه می‌خواهد که به حساب شما وصل شود"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "اجازه‌دادن (به) یا جلوگیری از دسترسی"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -610,11 +620,11 @@ msgstr ""
 "بدهید."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "حساب کاربری"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -623,23 +633,47 @@ msgid "Nickname"
 msgstr "نام کاربری"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "گذرواژه"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "رد کردن"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "انصراف"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "اجازه دادن"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "به دسترسی به اطلاعات حسابتان اجازه بدهید یا از آن جلوگیری کنید."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "تایید پیام‌رسان فوری لغو شد."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "نشانهٔ درخواست %s پذیرفته نشد و لغو شد."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "شما شناسایی نشده اید."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "این روش نیازمند POST یا DELETE است."
@@ -801,7 +835,8 @@ msgid "Preview"
 msgstr "پیش‌نمایش"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "حذف"
 
@@ -859,12 +894,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "خیر"
@@ -877,12 +913,13 @@ msgstr "کاربر را مسدود نکن"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "بله"
@@ -900,6 +937,7 @@ msgstr "ذخیرهٔ ردیف اطلاعات شکست خورد."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1025,7 +1063,7 @@ msgstr "شما مالک این برنامه نیستید."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "یک مشکل با رمز نشست شما وجود داشت."
 
@@ -1053,6 +1091,58 @@ msgstr "این برنامه حذف نشود"
 msgid "Delete this application"
 msgstr "این برنامه حذف شود"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "برای ترک یک گروه، شما باید وارد شده باشید."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "نام‌مستعار یا شناسه‌ای وجود ندارد."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "شما یک عضو این گروه نیستید."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s گروه %2$s را ترک کرد"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "حذف کاربر"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"آیا مطمئن هستید که می‌خواهید این کاربر را پاک کنید؟ با این کار تمام اطلاعات "
+"پاک و بدون برگشت خواهند بود."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "این پیام را پاک نکن"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "حذف این کاربر"
+
 #. 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
@@ -1129,55 +1219,65 @@ msgstr "طرح"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "نشانی اینترنتی نشان نامعتبر است."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "نشانی اینترنتی نشان نامعتبر است."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "پوسته در دسترس نیست: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "تغییر نشان"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "نشان وب‌گاه"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "نشان وب‌گاه"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "تغییر پوسته"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "پوستهٔ وب‌گاه"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "پوسته برای وب‌گاه"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "پوستهٔ اختصاصی"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 "شما می‌توانید یک پوستهٔ اختصاصی StatusNet را به‌عنوان یک آرشیو .ZIP بارگذاری "
 "کنید."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "تغییر تصویر پیش‌زمینه"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "پیش‌زمینه"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1187,66 +1287,66 @@ msgstr ""
 "پرونده %1 $s است."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "روشن"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "خاموش"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "تصویر پیش‌زمینه را فعال یا غیرفعال کنید."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "تصویر پیش‌زمینهٔ موزاییکی"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "تغییر رنگ‌ها"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "محتوا"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "ستون کناری"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "متن"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "پیوندها"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "پیشرفته"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS اختصاصی"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "استفاده‌کردن از پیش‌فرض‌ها"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "بازگرداندن طرح‌های پیش‌فرض"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "برگشت به حالت پیش گزیده"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1256,7 +1356,7 @@ msgstr "برگشت به حالت پیش گزیده"
 msgid "Save"
 msgstr "ذخیره‌کردن"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "ذخیره‌کردن طرح"
 
@@ -1733,7 +1833,7 @@ msgstr "نمی‌توان نشانهٔ درخواست شما را به نشان
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "خدمات مورد نظر از نسخهٔ نامفهومی از قرارداد OMB استفاده می‌کند."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور."
 
@@ -2320,10 +2420,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "برای پیوستن به یک گروه، باید وارد شده باشید."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "نام‌مستعار یا شناسه‌ای وجود ندارد."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2565,6 +2661,11 @@ msgstr "شما نمی توانید به این کاربر پیام بفرستی
 msgid "No content!"
 msgstr "محتوایی وحود ندارد!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "این بسیار طولانی است. بیشینهٔ اندازهٔ پیام %d نویسه است."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "هیچ گیرنده ای مشخص نشده"
@@ -2725,7 +2826,7 @@ msgstr "لطفا تنها از نشانی‌های اینترنتی %s از را
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست."
 
@@ -2875,147 +2976,166 @@ msgstr "مسیر ها"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "شاخهٔ پوسته‌ها قابل خواندن نیست: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "شاخهٔ تصویر چهره‌ها قابل نوشتن نیست: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "شاخهٔ پس زمینه‌ها قابل نوشتن نیست: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "پوشهٔ تنظیمات محلی قابل خواندن نیست: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "کارگزار SSL نامعتبر است. بیشینهٔ طول نام ۲۵۵ نویسه است."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "وب‌گاه"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "کارگزار"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "نام میزبان کارگزار وب‌گاه."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "مسیر"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "مسیر وب‌گاه"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "نشانی تنظیمات محلی"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "شاخهٔ پوسته"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "مسیر پوشه برای زبان‌های محلی"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "نشانی‌های تمیز"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "از نشانی‌های تمیز (خواناتر و ماندگارتر در ذهن) استفاده شود؟"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "پوسته"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "کارگزار پوسته"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "پوسته برای وب‌گاه"
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "مسیر پوسته"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "شاخهٔ پوسته"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "چهره‌ها"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "کارگزار چهره‌ها"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "مسیر نیم‌رخ"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "شاخهٔ نیم‌رخ"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "پس زمینه‌ها"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "کارگذار تصاویر پیش‌زمینه"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "مسیر تصاویر پیش‌زمینه"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "شاخهٔ تصاویر پیش‌زمینه"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "هیچ وقت"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "گاهی اوقات"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "برای همیشه"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "استفاده از SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "زمان استفاده از SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "کارگزار SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "مسیر وب‌گاه"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "شاخهٔ پوسته"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "مسیر پوشه برای زبان‌های محلی"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "چهره‌ها"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "کارگزار چهره‌ها"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "مسیر نیم‌رخ"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "شاخهٔ نیم‌رخ"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "پس زمینه‌ها"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "ضمائم"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "هیچ وقت"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "گاهی اوقات"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "برای همیشه"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "استفاده از SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "زمان استفاده از SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "کارگزار برای هدایت درخواست‌های SSL به"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "نشانی ذخیره سازی"
 
@@ -3776,7 +3896,7 @@ msgstr "سازمان"
 msgid "Description"
 msgstr "توصیف"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "آمار"
@@ -3918,45 +4038,45 @@ msgstr "نام های مستعار"
 msgid "Group actions"
 msgstr "اعمال گروه"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "خوراک پیام برای گروه %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "خوراک پیام برای گروه %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "خوراک پیام برای گروه %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF برای گروه %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "اعضا"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "همهٔ اعضا"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "ساخته شد"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3972,7 +4092,7 @@ msgstr ""
 "می‌گذارند. [اکنون بپیوندید ](%%%%action.register%%%%) تا یکی از اعضای این "
 "گروه و بلکه بیش‌تر بشوید! ([بیش‌تر بخوانید](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3986,7 +4106,7 @@ msgstr ""
 "است. کاربران آن پیام‌های کوتاهی را دربارهٔ زندگی و علاقه‌مندی‌هایشان به اشتراک "
 "می‌گذارند. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "مدیران"
 
@@ -4931,7 +5051,7 @@ msgid "Plugins"
 msgstr "افزونه‌ها"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "نسخه"
 
@@ -5171,7 +5291,7 @@ msgid "Unable to save tag."
 msgstr "نمی‌توان پیام وب‌گاه را ذخیره کرد."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "شما از اشتراک منع شده‌اید."
 
@@ -5292,185 +5412,185 @@ msgid "Untitled page"
 msgstr "صفحهٔ بدون عنوان"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "مسیریابی اصلی وب‌گاه"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "نمایهٔ شخصی و خط‌زمانی دوستان"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "شخصی"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "پست الکترونیکی، تصویر، گذرواژه یا نمایهٔ خودتان را تغییر دهید"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "اتصال به سرویس‌ها"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "وصل‌شدن"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "تغییر پیکربندی وب‌گاه"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "مدیر"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "دوستان و همکاران‌تان را دعوت کنید تا به شما در %s بپیوندند"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "دعوت‌کردن"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "خارج‌شدن از وب‌گاه"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "خروج"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "ساختن یک جساب‌کاربری"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "ثبت‌نام"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "ورود به وب‌گاه"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "ورود"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "به من کمک کنید!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "کمک"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "جست‌وجو برای افراد یا متن"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "جست‌وجو"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "پیام وب‌گاه"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "دید محلی"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "پیام صفحه"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "مسیریابی فرعی وب‌گاه"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "کمک"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "دربارهٔ"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "سوال‌های رایج"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "شرایط سرویس"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "خصوصی"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "منبع"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "تماس"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "نشان"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet مجوز نرم افزار"
 
@@ -5478,7 +5598,7 @@ msgstr "StatusNet مجوز نرم افزار"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5488,7 +5608,7 @@ msgstr ""
 "broughtbyurl%%) برای شما راه‌اندازی شده است."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است."
@@ -5497,7 +5617,7 @@ msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5509,50 +5629,50 @@ msgstr ""
 "org/licensing/licenses/agpl-3.0.html) در دسترس است."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "مجوز محتویات وب‌گاه"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "محتویات و داده‌های %1$s خصوصی و محرمانه هستند."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "حق تکثیر محتوا و داده‌ها با %1$s است. تمام حقوق محفوظ است."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr "حق تکثیر محتوا و داده‌ها با مشارکت‌کنندگان است. تمام حقوق محفوظ است."
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "تمام محتویات و داده‌های %1$s زیر مجوز %2$s در دسترس هستند."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "صفحه بندى"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "پس از"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "قبل از"
 
@@ -5695,12 +5815,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5782,11 +5902,6 @@ msgstr "خواندن-نوشتن"
 msgid "Default access for this application: read-only, or read-write"
 msgstr "دسترسی پیش‌فرض برای این برنامه: تنها خواندنی یا خواندن-نوشتن"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "انصراف"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5813,11 +5928,6 @@ msgstr "لغو کردن"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "ضمائم"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6282,14 +6392,14 @@ msgstr "پیامک"
 msgid "Updates by SMS"
 msgstr "به‌روزرسانی با پیامک"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "اتصال‌ها"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "برنامه‌های وصل‌شدهٔ مجاز"
@@ -7083,24 +7193,24 @@ msgstr "یادآوری‌کردن"
 msgid "Send a nudge to this user"
 msgstr "یک یادآوری به این کاربر فرستاده شود"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "نمی‌توان اشتراک تازه‌ای افزود."
 
@@ -7457,60 +7567,60 @@ msgid "Moderator"
 msgstr "مدیر"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "چند ثانیه پیش"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "حدود یک دقیقه پیش"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "حدود یک ساعت پیش"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "حدود یک روز پیش"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "حدود یک ماه پیش"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "حدود یک سال پیش"
 
@@ -7538,3 +7648,30 @@ msgstr "هیچ شناسهٔ کاربری مشخص نشده است."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "نشانهٔ درخواست %s تایید شد. لطفا آن را برای یک نشانهٔ دسترسی مبادله کنید."
+
+#~ msgid "Deny"
+#~ msgstr "رد کردن"
+
+#~ msgid "Path to locales"
+#~ msgstr "نشانی تنظیمات محلی"
+
+#~ msgid "Theme server"
+#~ msgstr "کارگزار پوسته"
+
+#~ msgid "Theme path"
+#~ msgstr "مسیر پوسته"
+
+#~ msgid "Background server"
+#~ msgstr "کارگذار تصاویر پیش‌زمینه"
+
+#~ msgid "Background path"
+#~ msgstr "مسیر تصاویر پیش‌زمینه"
+
+#~ msgid "Background directory"
+#~ msgstr "شاخهٔ تصاویر پیش‌زمینه"
diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po
index f239374cad..3f7eca4428 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:33+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:10+0000\n"
 "Language-Team: Finnish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -101,14 +101,15 @@ msgstr "Tallenna"
 msgid "No such page."
 msgstr "Sivua ei ole."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -208,12 +209,13 @@ msgstr "Sinä ja kaverisi"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -240,7 +242,7 @@ msgstr "API-metodia ei löytynyt."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -313,45 +315,61 @@ msgstr "Käyttäjän esto epäonnistui."
 msgid "Unblock user failed."
 msgstr "Käyttäjän eston poisto epäonnistui."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Suorat viestit käyttäjälle %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Kaikki suorat viestit käytäjältä %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Suorat viestit käyttäjälle %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Kaikki suorat viestit käyttäjälle %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Viestissä ei ole tekstiä!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä."
+msgstr[1] "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Vastaanottajaa ei löytynyt."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 #, fuzzy
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -536,16 +554,21 @@ msgstr "Ryhmän toiminnot"
 msgid "Upload failed."
 msgstr "Komento epäonnistui"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Päivityksen sisältö ei kelpaa"
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
 #, fuzzy
-msgid "Invalid token."
+msgid "Invalid request token."
 msgstr "Koko ei kelpaa."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -565,37 +588,25 @@ msgstr ""
 "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit "
 "uudelleen."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 #, fuzzy
 msgid "Invalid nickname / password!"
 msgstr "Käyttäjätunnus tai salasana ei kelpaa."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 #, fuzzy
 msgid "Database error deleting OAuth application user."
 msgstr "Virhe tapahtui käyttäjän asettamisessa."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 #, fuzzy
 msgid "Database error inserting OAuth application user."
 msgstr "Tietokantavirhe tallennettaessa risutagiä: %s"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -604,15 +615,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Odottamaton lomakkeen lähetys."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr ""
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -621,11 +632,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Käyttäjätili"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -634,23 +645,45 @@ msgid "Nickname"
 msgstr "Tunnus"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Salasana"
 
-#: actions/apioauthauthorize.php:328
-#, fuzzy
-msgid "Deny"
-msgstr "Ulkoasu"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Peruuta"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 #, fuzzy
 msgid "Allow"
 msgstr "Kaikki"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+msgid "Authorize access to your account information."
+msgstr ""
+
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Varmistuskoodia ei ole annettu."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Sinulla ei ole valtuutusta tähän."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
@@ -815,7 +848,8 @@ msgid "Preview"
 msgstr "Esikatselu"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Poista"
 
@@ -869,12 +903,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Huomaa"
@@ -887,12 +922,13 @@ msgstr "Älä estä tätä käyttäjää"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
 msgid "Yes"
@@ -911,6 +947,7 @@ msgstr "Käyttäjän estotiedon tallennus epäonnistui."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1037,7 +1074,7 @@ msgstr "Sinä et kuulu tähän ryhmään."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Istuntoavaimesi kanssa oli ongelma."
 
@@ -1065,6 +1102,56 @@ msgstr "Älä poista tätä päivitystä"
 msgid "Delete this application"
 msgstr "Poista tämä päivitys"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "Tunnusta ei ole."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Sinä et kuulu tähän ryhmään."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Ei voitu päivittää ryhmää."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "Käyttäjän %1$s päivitys %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Poista käyttäjä"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Älä poista tätä päivitystä"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Poista käyttäjä"
+
 #. 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
@@ -1139,58 +1226,68 @@ msgstr "Ulkoasu"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 #, fuzzy
 msgid "Invalid logo URL."
 msgstr "Koko ei kelpaa."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Koko ei kelpaa."
+
+#: actions/designadminpanel.php:341
 #, fuzzy, php-format
 msgid "Theme not available: %s."
 msgstr "Pikaviestin ei ole käytettävissä."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Vaihda väriä"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Palvelun ilmoitus"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Palvelun ilmoitus"
+
+#: actions/designadminpanel.php:466
 #, fuzzy
 msgid "Change theme"
 msgstr "Vaihda"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 #, fuzzy
 msgid "Site theme"
 msgstr "Palvelun ilmoitus"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 #, fuzzy
 msgid "Theme for the site."
 msgstr "Kirjaudu ulos palvelusta"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "Palvelun ilmoitus"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Vaihda tautakuva"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Tausta"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, fuzzy, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1198,71 +1295,71 @@ msgid ""
 msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "On"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Off"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 #, fuzzy
 msgid "Turn background image on or off."
 msgstr "Vaihda tautakuva"
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 #, fuzzy
 msgid "Tile background image"
 msgstr "Vaihda tautakuva"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Vaihda väriä"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Sisältö"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 #, fuzzy
 msgid "Sidebar"
 msgstr "Haku"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Teksti"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Linkit"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Käytä oletusasetuksia"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 #, fuzzy
 msgid "Restore default designs"
 msgstr "Käytä oletusasetuksia"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 #, fuzzy
 msgid "Reset back to default"
 msgstr "Käytä oletusasetuksia"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1272,7 +1369,7 @@ msgstr "Käytä oletusasetuksia"
 msgid "Save"
 msgstr "Tallenna"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 #, fuzzy
 msgid "Save design"
 msgstr "Ryhmän ulkoasu"
@@ -1764,7 +1861,7 @@ msgstr "Ei saatu request tokenia."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Tuntematon OMB-protokollan versio."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "Virhe tapahtui etäprofiilin päivittämisessä"
@@ -2354,11 +2451,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "Tunnusta ei ole."
-
 #: actions/joingroup.php:141
 #, fuzzy, php-format
 msgid "%1$s joined group %2$s"
@@ -2610,6 +2702,11 @@ msgstr "Et voi lähettää viestiä tälle käyttäjälle."
 msgid "No content!"
 msgstr "Ei sisältöä!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Vastaanottajaa ei ole määritelty."
@@ -2774,7 +2871,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Tuo ei ole tuettu tietomuoto."
 
@@ -2926,159 +3023,178 @@ msgstr "Polut"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, fuzzy, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Pikaviestin ei ole käytettävissä."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, fuzzy, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Pikaviestin ei ole käytettävissä."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "Taustakuvan hakemisto"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Pikaviestin ei ole käytettävissä."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 #, fuzzy
 msgid "Site"
 msgstr "Kutsu"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 #, fuzzy
 msgid "Server"
 msgstr "Palauta"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 #, fuzzy
 msgid "Path"
 msgstr "Polut"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 #, fuzzy
 msgid "Site path"
 msgstr "Palvelun ilmoitus"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Taustakuvan hakemisto"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr ""
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Kirjaudu ulos palvelusta"
+
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:279
-#, fuzzy
-msgid "Avatars"
-msgstr "Kuva"
-
-#: actions/pathsadminpanel.php:284
-#, fuzzy
-msgid "Avatar server"
-msgstr "Profiilikuva-asetukset"
-
-#: actions/pathsadminpanel.php:288
-#, fuzzy
-msgid "Avatar path"
-msgstr "Kuva päivitetty."
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Taustakuvan hakemisto"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Taustakuvat"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Taustakuvapalvelin"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Taustakuvan hakemistopolku"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Taustakuvan hakemisto"
-
-#: actions/pathsadminpanel.php:320
-#, fuzzy
-msgid "SSL"
-msgstr "SMS"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-#, fuzzy
-msgid "Never"
-msgstr "Palauta"
-
-#: actions/pathsadminpanel.php:324
-#, fuzzy
-msgid "Sometimes"
-msgstr "Päivitykset"
-
-#: actions/pathsadminpanel.php:325
-#, fuzzy
-msgid "Always"
-msgstr "Aliakset"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 #, fuzzy
 msgid "SSL server"
 msgstr "Palauta"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Palvelun ilmoitus"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Taustakuvan hakemisto"
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+#, fuzzy
+msgid "Avatars"
+msgstr "Kuva"
+
+#: actions/pathsadminpanel.php:293
+#, fuzzy
+msgid "Avatar server"
+msgstr "Profiilikuva-asetukset"
+
+#: actions/pathsadminpanel.php:297
+#, fuzzy
+msgid "Avatar path"
+msgstr "Kuva päivitetty."
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Taustakuvan hakemisto"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Taustakuvat"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+#, fuzzy
+msgid "Attachments"
+msgstr "Liitettä ei ole."
+
+#: actions/pathsadminpanel.php:366
+#, fuzzy
+msgid "SSL"
+msgstr "SMS"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+#, fuzzy
+msgid "Never"
+msgstr "Palauta"
+
+#: actions/pathsadminpanel.php:371
+#, fuzzy
+msgid "Sometimes"
+msgstr "Päivitykset"
+
+#: actions/pathsadminpanel.php:372
+#, fuzzy
+msgid "Always"
+msgstr "Aliakset"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 #, fuzzy
 msgid "Save paths"
 msgstr "Palvelun ilmoitus"
@@ -3861,7 +3977,7 @@ msgstr "Sivutus"
 msgid "Description"
 msgstr "Kuvaus"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Tilastot"
@@ -3995,46 +4111,46 @@ msgstr "Aliakset"
 msgid "Group actions"
 msgstr "Ryhmän toiminnot"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, 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:344
+#: actions/showgroup.php:350
 #, 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:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Syöte ryhmän %s päivityksille (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Käyttäjän %s lähetetyt viestit"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Jäsenet"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Kaikki jäsenet"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Luotu"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4044,7 +4160,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4055,7 +4171,7 @@ msgstr ""
 "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]"
 "(http://en.wikipedia.org/wiki/Micro-blogging)"
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Ylläpitäjät"
 
@@ -5008,7 +5124,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 #, fuzzy
 msgid "Version"
 msgstr "Omat"
@@ -5250,7 +5366,7 @@ msgid "Unable to save tag."
 msgstr "Tagien tallennus epäonnistui."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 #, fuzzy
 msgid "You have been banned from subscribing."
 msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä."
@@ -5375,44 +5491,44 @@ msgid "Untitled page"
 msgstr "Nimetön sivu"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Ensisijainen sivunavigointi"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Henkilökohtainen profiili ja kavereiden aikajana"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 #, fuzzy
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Omat"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Vaihda salasanasi"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Ei voitu uudelleenohjata palvelimelle: %s"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Yhdistä"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
@@ -5420,82 +5536,82 @@ msgstr "Ensisijainen sivunavigointi"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 #, fuzzy
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Ylläpito"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, fuzzy, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 #, fuzzy
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Kutsu"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Kirjaudu sisään"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Kirjaudu ulos"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Luo uusi ryhmä"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 #, fuzzy
 msgctxt "MENU"
 msgid "Register"
 msgstr "Rekisteröidy"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Kirjaudu sisään"
 
-#: lib/action.php:503
+#: lib/action.php:531
 #, fuzzy
 msgctxt "MENU"
 msgid "Login"
 msgstr "Kirjaudu sisään"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Ohjeet"
 
-#: lib/action.php:509
+#: lib/action.php:537
 #, fuzzy
 msgctxt "MENU"
 msgid "Help"
 msgstr "Ohjeet"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Hae lisää ryhmiä"
 
-#: lib/action.php:515
+#: lib/action.php:543
 #, fuzzy
 msgctxt "MENU"
 msgid "Search"
@@ -5503,68 +5619,68 @@ msgstr "Haku"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Palvelun ilmoitus"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Paikalliset näkymät"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Sivuilmoitus"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Toissijainen sivunavigointi"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Ohjeet"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Tietoa"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "UKK"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Yksityisyys"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Lähdekoodi"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Ota yhteyttä"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 #, fuzzy
 msgid "Badge"
 msgstr "Tönäise"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet-ohjelmiston lisenssi"
 
@@ -5572,7 +5688,7 @@ msgstr "StatusNet-ohjelmiston lisenssi"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5582,7 +5698,7 @@ msgstr ""
 "site.broughtbyurl%%). "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** on mikroblogipalvelu."
@@ -5591,7 +5707,7 @@ msgstr "**%%site.name%%** on mikroblogipalvelu."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5603,51 +5719,51 @@ msgstr ""
 "www.fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 #, fuzzy
 msgid "Site content license"
 msgstr "StatusNet-ohjelmiston lisenssi"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Sivutus"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Myöhemmin"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Aiemmin"
 
@@ -5802,12 +5918,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5893,11 +6009,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Peruuta"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5925,12 +6036,6 @@ msgstr "Poista"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-#, fuzzy
-msgid "Attachments"
-msgstr "Liitettä ei ole."
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 #, fuzzy
@@ -6363,14 +6468,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Päivitykset SMS:llä"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Yhdistä"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr ""
@@ -7088,24 +7193,24 @@ msgstr "Tönäise"
 msgid "Send a nudge to this user"
 msgstr "Lähetä tönäisy tälle käyttäjälle"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Ei voitu lisätä uutta tilausta."
 
@@ -7474,17 +7579,17 @@ msgid "Moderator"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "muutama sekunti sitten"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "noin minuutti sitten"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7492,12 +7597,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "noin tunti sitten"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7505,12 +7610,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "noin päivä sitten"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7518,12 +7623,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "noin kuukausi sitten"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7531,7 +7636,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "noin vuosi sitten"
 
@@ -7559,3 +7664,16 @@ msgstr "Ryhmää ei ole määritelty."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#, fuzzy
+#~ msgid "Deny"
+#~ msgstr "Ulkoasu"
+
+#~ msgid "Background server"
+#~ msgstr "Taustakuvapalvelin"
+
+#~ msgid "Background path"
+#~ msgstr "Taustakuvan hakemistopolku"
+
+#~ msgid "Background directory"
+#~ msgstr "Taustakuvan hakemisto"
diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po
index 56b5a6eee7..eff3fc35b9 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:35+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:14+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -101,14 +101,15 @@ msgstr "Enregistrer"
 msgid "No such page."
 msgstr "Page non trouvée."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -211,12 +212,13 @@ msgstr "Vous et vos amis"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Statuts de %1$s et ses amis dans %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -243,7 +245,7 @@ msgstr "Méthode API non trouvée !"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -319,45 +321,64 @@ msgstr "Le blocage de l’utilisateur a échoué."
 msgid "Unblock user failed."
 msgstr "Le déblocage de l’utilisateur a échoué."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Messages direct depuis %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Tous les messages directs envoyés par %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Messages directs envoyés à %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Tous les messages directs envoyés à %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Message sans texte !"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "C’est trop long ! La taille maximale du message est de %d caractères."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+"C’est trop long ! La taille maximale du message est de %d caractères."
+msgstr[1] ""
+"C’est trop long ! La taille maximale du message est de %d caractères."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Destinataire non trouvé."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Vous ne pouvez envoyer des messages personnels qu’aux utilisateurs inscrits "
 "comme amis."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"N’envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -539,15 +560,21 @@ msgstr "groupes sur %s"
 msgid "Upload failed."
 msgstr "Échec du téléversement."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Jeton d’identification invalide."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Paramètre oauth_token non fourni."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Jeton incorrect."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -567,39 +594,25 @@ msgstr ""
 "Un problème est survenu avec votre jeton de session. Veuillez essayer à "
 "nouveau."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Pseudo ou mot de passe incorrect !"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr ""
 "Erreur de la base de données lors de la suppression de l’utilisateur de "
 "l’application OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 "Erreur de base de donnée en insérant l’utilisateur de l’application OAuth"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Le jeton de connexion %s a été autorisé. Merci de l’échanger contre un jeton "
-"d’accès."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Le jeton de connexion %s a été refusé et révoqué."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -608,16 +621,16 @@ msgstr "Le jeton de connexion %s a été refusé et révoqué."
 msgid "Unexpected form submission."
 msgstr "Soumission de formulaire inattendue."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 "Une application vous demande l’autorisation de se connecter à votre compte"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Autoriser ou refuser l’accès"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -630,11 +643,11 @@ msgstr ""
 "confiance."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Compte"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -643,23 +656,47 @@ msgid "Nickname"
 msgstr "Pseudo"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Mot de passe"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Refuser"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Annuler"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Autoriser"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Autoriser ou refuser l’accès à votre compte."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Confirmation de messagerie instantanée annulée."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Le jeton de connexion %s a été refusé et révoqué."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Vous n’êtes pas autorisé."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Ce processus requiert un POST ou un DELETE."
@@ -824,7 +861,8 @@ msgid "Preview"
 msgstr "Aperçu"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Supprimer"
 
@@ -880,12 +918,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Non"
@@ -898,12 +937,13 @@ msgstr "Ne pas bloquer cet utilisateur"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Oui"
@@ -921,6 +961,7 @@ msgstr "Impossible d’enregistrer les informations de blocage."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1046,7 +1087,7 @@ msgstr "Vous n’êtes pas le propriétaire de cette application."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Un problème est survenu avec votre jeton de session."
 
@@ -1074,6 +1115,58 @@ msgstr "Ne pas supprimer cette application"
 msgid "Delete this application"
 msgstr "Supprimer cette application"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Vous devez ouvrir une session pour quitter un groupe."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Aucun pseudo ou ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Vous n’êtes pas membre de ce groupe."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Impossible de mettre à jour le groupe."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s a quitté le groupe %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Supprimer l’utilisateur"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Voulez-vous vraiment supprimer cet utilisateur ? Ceci effacera toutes les "
+"données à son propos de la base de données, sans sauvegarde."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Ne pas supprimer cet avis"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Supprimer cet utilisateur"
+
 #. 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
@@ -1150,54 +1243,64 @@ msgstr "Conception"
 msgid "Design settings for this StatusNet site"
 msgstr "Paramètres de conception pour ce site StatusNet"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "URL du logo invalide."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "URL du logo invalide."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Le thème n’est pas disponible : %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Modifier le logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo du site"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo du site"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Modifier le thème"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Thème du site"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Thème pour le site."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Thème personnalisé"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 "Vous pouvez importer un thème StatusNet personnalisé dans une archive .ZIP."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Changer l’image d’arrière plan"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Arrière plan"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1207,66 +1310,66 @@ msgstr ""
 "maximale du fichier est de %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Activé"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Désactivé"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Activer ou désactiver l’image d’arrière plan."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Répéter l’image d’arrière plan"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Modifier les couleurs"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Contenu"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barre latérale"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Texte"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Liens"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avancé"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS personnalisé"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Utiliser les valeurs par défaut"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Restaurer les conceptions par défaut"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Revenir aux valeurs par défaut"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1276,7 +1379,7 @@ msgstr "Revenir aux valeurs par défaut"
 msgid "Save"
 msgstr "Enregistrer"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Sauvegarder la conception"
 
@@ -1750,7 +1853,7 @@ msgstr "Impossible de convertir le jeton de requête en jeton d’accès."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Le service distant utilise une version inconnue du protocole OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Erreur lors de la mise à jour du profil distant."
 
@@ -2356,10 +2459,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Vous devez ouvrir une session pour rejoindre un groupe."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Aucun pseudo ou ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2611,6 +2710,11 @@ msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur."
 msgid "No content!"
 msgstr "Aucun contenu !"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "C’est trop long ! La taille maximale du message est de %d caractères."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Aucun destinataire n’a été spécifié."
@@ -2775,7 +2879,7 @@ msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Format de données non supporté."
 
@@ -2924,147 +3028,166 @@ msgstr "Chemins"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Paramètres de chemin et serveur pour ce site StatusNet"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Dossier des thème non lisible : %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Dossier des avatars non inscriptible : %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Dossier des arrière plans non inscriptible : %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Dossier des paramètres régionaux non lisible : %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Serveur SSL invalide. La longueur maximale est de 255 caractères."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Site"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Serveur"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Nom d’hôte du serveur du site."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Chemin"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Chemin du site"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Chemin vers les paramètres régionaux"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Dossier des thèmes"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Chemin de dossier vers les paramètres régionaux"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Jolies URL"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Utiliser des jolies URL (plus lisibles et faciles à mémoriser) ?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Thème"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Serveur de thèmes"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Thème pour le site."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Chemin des thèmes"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Dossier des thèmes"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatars"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Serveur d’avatar"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Chemin des avatars"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Dossier des avatars"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Arrière plans"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Serveur des arrière plans"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Chemin des arrière plans"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Dossier des arrière plans"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Jamais"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Quelquefois"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Toujours"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Utiliser SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Quand utiliser SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Serveur SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Chemin du site"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Dossier des thèmes"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Chemin de dossier vers les paramètres régionaux"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatars"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Serveur d’avatar"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Chemin des avatars"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Dossier des avatars"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Arrière plans"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Pièces jointes"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Jamais"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Quelquefois"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Toujours"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Utiliser SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Quand utiliser SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Serveur vers lequel rediriger les requêtes SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Enregistrer les chemins."
 
@@ -3844,7 +3967,7 @@ msgstr "Organisation"
 msgid "Description"
 msgstr "Description"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistiques"
@@ -3987,45 +4110,45 @@ msgstr "Alias"
 msgid "Group actions"
 msgstr "Actions du groupe"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Fil des avis du groupe %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Fil des avis du groupe %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Fil des avis du groupe %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "ami d’un ami pour le groupe %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Membres"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Tous les membres"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Créé"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4041,7 +4164,7 @@ msgstr ""
 "action.register%%%%) pour devenir membre de ce groupe et bien plus ! ([En "
 "lire plus](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4054,7 +4177,7 @@ msgstr ""
 "logiciel libre [StatusNet](http://status.net/). Ses membres partagent des "
 "messages courts à propos de leur vie et leurs intérêts. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administrateurs"
 
@@ -5023,7 +5146,7 @@ msgid "Plugins"
 msgstr "Extensions"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Version"
 
@@ -5261,7 +5384,7 @@ msgid "Unable to save tag."
 msgstr "Impossible d’enregistrer l’étiquette."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Il vous a été interdit de vous abonner."
 
@@ -5381,185 +5504,185 @@ msgid "Untitled page"
 msgstr "Page sans nom"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Navigation primaire du site"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Profil personnel et flux des amis"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personnel"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Modifier votre adresse électronique, avatar, mot de passe, profil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Se connecter aux services"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Connexion"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Modifier la configuration du site"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administrer"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Inviter des amis et collègues à vous rejoindre sur %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Inviter"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Fermer la session"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Déconnexion"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Créer un compte"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "S’inscrire"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Ouvrir une session"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Connexion"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "À l’aide !"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Aide"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Rechercher des personnes ou du texte"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Rechercher"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Notice du site"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Vues locales"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Avis de la page"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Navigation secondaire du site"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Aide"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "À propos"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "CGU"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Confidentialité"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Source"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contact"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Insigne"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licence du logiciel StatusNet"
 
@@ -5567,7 +5690,7 @@ msgstr "Licence du logiciel StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5577,7 +5700,7 @@ msgstr ""
 "%site.broughtby%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** est un service de micro-blogging."
@@ -5586,7 +5709,7 @@ msgstr "**%%site.name%%** est un service de micro-blogging."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5598,20 +5721,20 @@ msgstr ""
 "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licence du contenu du site"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Le contenu et les données de %1$s sont privés et confidentiels."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
@@ -5619,7 +5742,7 @@ msgstr ""
 "réservés."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Le contenu et les données sont sous le droit d’auteur du contributeur. Tous "
@@ -5627,26 +5750,26 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 "Tous les contenus %1$s et les données sont disponibles sous la licence %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Pagination"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Après"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Avant"
 
@@ -5788,12 +5911,12 @@ msgid "Could not authenticate you."
 msgstr "Impossible de vous authentifier."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Révocation essayée d’un jeton inconnu."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Impossible de supprimer un jeton révoqué."
 
@@ -5878,11 +6001,6 @@ msgstr ""
 "Accès par défaut pour cette application : en lecture seule ou en lecture-"
 "écriture"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Annuler"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5909,11 +6027,6 @@ msgstr "Révoquer"
 msgid "author element must contain a name element."
 msgstr "l’élément « auteur » doit contenir un élément « nom »."
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Pièces jointes"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6383,14 +6496,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Suivi des avis par SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Connexions"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Applications autorisées connectées"
@@ -7196,24 +7309,24 @@ msgstr "Clin d’œil"
 msgid "Send a nudge to this user"
 msgstr "Envoyer un clin d’œil à cet utilisateur"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Erreur lors de l’insertion du nouveau profil."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Erreur lors de l’insertion de l’avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Erreur lors de l’insertion du profil distant."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Avis en doublon."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Impossible d’insérer un nouvel abonnement."
 
@@ -7572,17 +7685,17 @@ msgid "Moderator"
 msgstr "Modérateur"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "il y a quelques secondes"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "il y a 1 minute"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7590,12 +7703,12 @@ msgstr[0] "une minute"
 msgstr[1] "%d minutes"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "il y a 1 heure"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7603,12 +7716,12 @@ msgstr[0] "une heure"
 msgstr[1] "%d heures"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "il y a 1 jour"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7616,12 +7729,12 @@ msgstr[0] "un jour"
 msgstr[1] "%d jours"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "il y a 1 mois"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7629,7 +7742,7 @@ msgstr[0] "un"
 msgstr[1] "%d"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "il y a environ 1 an"
 
@@ -7657,3 +7770,31 @@ 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 ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Le jeton de connexion %s a été autorisé. Merci de l’échanger contre un "
+#~ "jeton d’accès."
+
+#~ msgid "Deny"
+#~ msgstr "Refuser"
+
+#~ msgid "Path to locales"
+#~ msgstr "Chemin vers les paramètres régionaux"
+
+#~ msgid "Theme server"
+#~ msgstr "Serveur de thèmes"
+
+#~ msgid "Theme path"
+#~ msgstr "Chemin des thèmes"
+
+#~ msgid "Background server"
+#~ msgstr "Serveur des arrière plans"
+
+#~ msgid "Background path"
+#~ msgstr "Chemin des arrière plans"
+
+#~ msgid "Background directory"
+#~ msgstr "Dossier des arrière plans"
diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po
index 924661cb26..e748ee9998 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:42+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41: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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -99,14 +99,15 @@ msgstr "Gardar"
 msgid "No such page."
 msgstr "Non existe a etiqueta."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +202,13 @@ msgstr "%s e amigos"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Actualizacións dende %1$s e amigos en %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -234,7 +236,7 @@ msgstr "Método da API non atopado"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -311,44 +313,65 @@ msgstr "Bloqueo de usuario fallido."
 msgid "Unblock user failed."
 msgstr "Desbloqueo de usuario fallido."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, fuzzy, php-format
 msgid "Direct messages from %s"
 msgstr "Mensaxes directas para %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Tódalas mensaxes directas enviadas dende %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Mensaxes directas para %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Tódalas mensaxes directas enviadas a %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Non hai mensaxes de texto!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Podes actualizar a túa información do perfil persoal aquí"
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Podes actualizar a túa información do perfil persoal aquí"
+msgstr[1] "Podes actualizar a túa información do perfil persoal aquí"
+msgstr[2] "Podes actualizar a túa información do perfil persoal aquí"
+msgstr[3] "Podes actualizar a túa información do perfil persoal aquí"
+msgstr[4] "Podes actualizar a túa información do perfil persoal aquí"
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Usuario destinatario non atopado."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón "
+"vante tomar por tolo."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -534,16 +557,21 @@ msgstr "Outras opcions"
 msgid "Upload failed."
 msgstr "Comando fallido"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Contido do chío inválido"
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
 #, fuzzy
-msgid "Invalid token."
+msgid "Invalid request token."
 msgstr "Tamaño inválido."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -561,37 +589,25 @@ msgstr "Tamaño inválido."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 #, fuzzy
 msgid "Invalid nickname / password!"
 msgstr "Usuario ou contrasinal inválidos."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 #, fuzzy
 msgid "Database error deleting OAuth application user."
 msgstr "Acounteceu un erro configurando o usuario."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 #, fuzzy
 msgid "Database error inserting OAuth application user."
 msgstr "Erro ó inserir o hashtag na BD: %s"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -600,15 +616,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Envio de formulario non esperada."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr ""
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -617,12 +633,12 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 #, fuzzy
 msgid "Account"
 msgstr "Sobre"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -631,22 +647,45 @@ msgid "Nickname"
 msgstr "Alcume"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Contrasinal"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr ""
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 #, fuzzy
 msgid "Allow"
 msgstr "Todos"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+msgid "Authorize access to your account information."
+msgstr ""
+
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Sen código de confirmación."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Non estás suscrito a ese perfil"
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
@@ -812,7 +851,8 @@ msgid "Preview"
 msgstr ""
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Eliminar chío"
 
@@ -870,12 +910,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 #, fuzzy
 msgctxt "BUTTON"
 msgid "No"
@@ -890,12 +931,13 @@ msgstr "Bloquear usuario"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
 msgid "Yes"
@@ -915,6 +957,7 @@ msgstr "Erro ao gardar información de bloqueo."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1046,7 +1089,7 @@ msgstr "Non estás suscrito a ese perfil"
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 #, fuzzy
 msgid "There was a problem with your session token."
 msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..."
@@ -1075,6 +1118,56 @@ msgstr "Non se pode eliminar este chíos."
 msgid "Delete this application"
 msgstr "Eliminar chío"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s"
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "Sen alcume."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Non estás suscrito a ese perfil"
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Non se puido actualizar o usuario."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "Estado de %1$s en  %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Eliminar chío"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Non se pode eliminar este chíos."
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Eliminar chío"
+
 #. 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
@@ -1155,58 +1248,68 @@ msgstr ""
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 #, fuzzy
 msgid "Invalid logo URL."
 msgstr "Tamaño inválido."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Tamaño inválido."
+
+#: actions/designadminpanel.php:341
 #, fuzzy, php-format
 msgid "Theme not available: %s."
 msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Modificado"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 #, fuzzy
 msgid "Site logo"
 msgstr "Invitar"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Invitar"
+
+#: actions/designadminpanel.php:466
 #, fuzzy
 msgid "Change theme"
 msgstr "Modificado"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 #, fuzzy
 msgid "Site theme"
 msgstr "Novo chío"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr ""
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "Novo chío"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr ""
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr ""
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, fuzzy, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1214,69 +1317,69 @@ msgid ""
 msgstr "Podes actualizar a túa información do perfil persoal aquí"
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr ""
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr ""
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr ""
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr ""
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 #, fuzzy
 msgid "Change colours"
 msgstr "Cambiar contrasinal"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 #, fuzzy
 msgid "Content"
 msgstr "Conectar"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 #, fuzzy
 msgid "Sidebar"
 msgstr "Buscar"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Texto"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Inicio de sesión"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr ""
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr ""
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr ""
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1286,7 +1389,7 @@ msgstr ""
 msgid "Save"
 msgstr "Gardar"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr ""
 
@@ -1784,7 +1887,7 @@ msgstr "Non se pode convertir o token da petición a tokens de acceso."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Versión de protocolo OMB descoñecida."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "Acounteceu un erro actualizando o perfil remoto"
@@ -2380,11 +2483,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s"
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "Sen alcume."
-
 #: actions/joingroup.php:141
 #, fuzzy, php-format
 msgid "%1$s joined group %2$s"
@@ -2636,6 +2734,11 @@ msgstr "Non podes enviar mensaxes a este usurio."
 msgid "No content!"
 msgstr "Sen contido!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Podes actualizar a túa información do perfil persoal aquí"
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Non se especificou ningún destinatario"
@@ -2798,7 +2901,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Non é un formato de datos soportado."
 
@@ -2953,157 +3056,174 @@ msgstr ""
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, fuzzy, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, fuzzy, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 #, fuzzy
 msgid "Site"
 msgstr "Invitar"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 #, fuzzy
 msgid "Server"
 msgstr "Recuperar"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 #, fuzzy
 msgid "Site path"
 msgstr "Novo chío"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Avatar actualizado."
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr ""
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
+#: actions/pathsadminpanel.php:265
+msgid "Server for themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:279
-#, fuzzy
-msgid "Avatars"
-msgstr "Avatar"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Avatar"
-
-#: actions/pathsadminpanel.php:288
-#, fuzzy
-msgid "Avatar path"
-msgstr "Avatar actualizado."
-
-#: actions/pathsadminpanel.php:292
-#, fuzzy
-msgid "Avatar directory"
-msgstr "Avatar actualizado."
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr ""
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr ""
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:320
-#, fuzzy
-msgid "SSL"
-msgstr "SMS"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-#, fuzzy
-msgid "Never"
-msgstr "Recuperar"
-
-#: actions/pathsadminpanel.php:324
-#, fuzzy
-msgid "Sometimes"
-msgstr "Chíos"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr ""
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 #, fuzzy
 msgid "SSL server"
 msgstr "Recuperar"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Novo chío"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Avatar actualizado."
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+#, fuzzy
+msgid "Avatars"
+msgstr "Avatar"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Avatar"
+
+#: actions/pathsadminpanel.php:297
+#, fuzzy
+msgid "Avatar path"
+msgstr "Avatar actualizado."
+
+#: actions/pathsadminpanel.php:301
+#, fuzzy
+msgid "Avatar directory"
+msgstr "Avatar actualizado."
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr ""
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr ""
+
+#: actions/pathsadminpanel.php:366
+#, fuzzy
+msgid "SSL"
+msgstr "SMS"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+#, fuzzy
+msgid "Never"
+msgstr "Recuperar"
+
+#: actions/pathsadminpanel.php:371
+#, fuzzy
+msgid "Sometimes"
+msgstr "Chíos"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr ""
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 #, fuzzy
 msgid "Save paths"
 msgstr "Novo chío"
@@ -3885,7 +4005,7 @@ msgstr "Invitación(s) enviada(s)."
 msgid "Description"
 msgstr "Subscricións"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Estatísticas"
@@ -4021,47 +4141,47 @@ msgstr ""
 msgid "Group actions"
 msgstr "Outras opcions"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Fonte para os amigos de %s"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Fonte para os amigos de %s"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, fuzzy, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Fonte de chíos para %s"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, fuzzy, php-format
 msgid "FOAF for %s group"
 msgstr "Band. Saída para %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 #, fuzzy
 msgid "Members"
 msgstr "Membro dende"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr ""
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Destacado"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4075,7 +4195,7 @@ 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:461
+#: actions/showgroup.php:467
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4088,7 +4208,7 @@ 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:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr ""
 
@@ -5043,7 +5163,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 #, fuzzy
 msgid "Version"
 msgstr "Persoal"
@@ -5287,7 +5407,7 @@ msgid "Unable to save tag."
 msgstr "Non se poden gardar as etiquetas."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 #, fuzzy
 msgid "You have been banned from subscribing."
 msgstr "Este usuario non che permite suscribirte a el."
@@ -5415,44 +5535,44 @@ msgid "Untitled page"
 msgstr ""
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 #, fuzzy
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Persoal"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Cambiar contrasinal"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Non se pode redireccionar ao servidor: %s"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Conectar"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
@@ -5460,13 +5580,13 @@ msgstr "Navegación de subscricións"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, fuzzy, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
@@ -5475,71 +5595,71 @@ msgstr ""
 "este servizo."
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 #, fuzzy
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Invitar"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr ""
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 #, fuzzy
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Sair"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Crear nova conta"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 #, fuzzy
 msgctxt "MENU"
 msgid "Register"
 msgstr "Rexistrar"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr ""
 
-#: lib/action.php:503
+#: lib/action.php:531
 #, fuzzy
 msgctxt "MENU"
 msgid "Login"
 msgstr "Inicio de sesión"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Axuda"
 
-#: lib/action.php:509
+#: lib/action.php:537
 #, fuzzy
 msgctxt "MENU"
 msgid "Help"
 msgstr "Axuda"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr ""
 
-#: lib/action.php:515
+#: lib/action.php:543
 #, fuzzy
 msgctxt "MENU"
 msgid "Search"
@@ -5547,70 +5667,70 @@ msgstr "Buscar"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 #, fuzzy
 msgid "Site notice"
 msgstr "Novo chío"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr ""
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 #, fuzzy
 msgid "Page notice"
 msgstr "Novo chío"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 #, fuzzy
 msgid "Secondary site navigation"
 msgstr "Navegación de subscricións"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Axuda"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Sobre"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Preguntas frecuentes"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privacidade"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Fonte"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contacto"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr ""
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr ""
 
@@ -5618,7 +5738,7 @@ msgstr ""
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5628,7 +5748,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%). "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** é un servizo de microbloguexo."
@@ -5637,7 +5757,7 @@ msgstr "**%%site.name%%** é un servizo de microbloguexo."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5649,51 +5769,51 @@ msgstr ""
 "fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 #, fuzzy
 msgid "Site content license"
 msgstr "Atopar no contido dos chíos"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr ""
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Outros"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 #, fuzzy
 msgid "Before"
 msgstr "Antes »"
@@ -5848,12 +5968,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5943,11 +6063,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Cancelar"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5974,11 +6089,6 @@ msgstr "Recuperar"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr ""
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6446,14 +6556,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Chíos dende SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Conectar"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr ""
@@ -7223,24 +7333,24 @@ msgstr "Toque enviado"
 msgid "Send a nudge to this user"
 msgstr "Non podes enviar mensaxes a este usurio."
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Non se puido inserir a nova subscrición."
 
@@ -7619,17 +7729,17 @@ msgid "Moderator"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "fai uns segundos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "fai un minuto"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7640,12 +7750,12 @@ msgstr[3] ""
 msgstr[4] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "fai unha hora"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7656,12 +7766,12 @@ msgstr[3] ""
 msgstr[4] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "fai un día"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7672,12 +7782,12 @@ msgstr[3] ""
 msgstr[4] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "fai un mes"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7688,7 +7798,7 @@ msgstr[3] ""
 msgstr[4] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "fai un ano"
 
diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po
index 9b851f719d..76f1e5541d 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:44+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:21+0000\n"
 "Language-Team: Galician \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -92,14 +92,15 @@ msgstr "Gardar"
 msgid "No such page."
 msgstr "Esa páxina non existe."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +202,13 @@ msgstr "Vostede e mailos seus amigos"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Actualizacións de %1$s e amigos en %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +235,7 @@ msgstr "Non se atopou o método da API."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -309,45 +311,62 @@ msgstr "Non se puido bloquear o usuario."
 msgid "Unblock user failed."
 msgstr "Non se puido desbloquear o usuario."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Mensaxes directas de %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Todas as mensaxes directas enviadas por %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Mensaxes directas a %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Todas as mensaxes directas enviadas a %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "A mensaxe non ten texto!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr ""
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+"Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres."
+msgstr[1] ""
 "Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Non se atopou o destinatario."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Non pode enviar mensaxes directas a usuarios que non sexan amigos seus."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Non se envíe unha mensaxe, limítese a pensar nela."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -529,15 +548,21 @@ msgstr "grupos en %s"
 msgid "Upload failed."
 msgstr "Houbo un erro durante a carga."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "O pase especificado é incorrecto."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Non se forneceu o parámetro oauth_token."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Pase incorrecto."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -555,38 +580,26 @@ msgstr "Pase incorrecto."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Houbo un erro co seu pase. Inténteo de novo."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "O alcume ou o contrasinal son incorrectos!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr ""
 "Houbo un erro na base de datos ao intentar borrar o usuario da aplicación "
 "OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 "Houbo un erro na base de datos ao intentar inserir o usuario da aplicación "
 "OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr "Autorizouse a ficha da solicitude %s. Intercámbiea por un pase."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Denegouse e revogouse a ficha da solicitude %s."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -595,15 +608,15 @@ msgstr "Denegouse e revogouse a ficha da solicitude %s."
 msgid "Unexpected form submission."
 msgstr "Envío de formulario inesperado."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Unha aplicación quere conectarse á súa conta"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Permitir ou denegar o acceso"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -615,11 +628,11 @@ msgstr ""
 "acceso á súa conta %4$s a xente de confianza."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Conta"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -628,23 +641,47 @@ msgid "Nickname"
 msgstr "Alcume"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Contrasinal"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Denegar"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Permitir"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Permitir ou denegar o acceso á información da súa conta."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Cancelouse a confirmación por mensaxería instantánea."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Denegouse e revogouse a ficha da solicitude %s."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Non está autorizado."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Este método require un POST ou un DELETE."
@@ -809,7 +846,8 @@ msgid "Preview"
 msgstr "Vista previa"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Borrar"
 
@@ -865,12 +903,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Non"
@@ -883,12 +922,13 @@ msgstr "Non bloquear este usuario"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Si"
@@ -906,6 +946,7 @@ msgstr "Non se puido gardar a información do bloqueo."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1031,7 +1072,7 @@ msgstr "Non é o dono desa aplicación."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Houbo un problema co seu pase."
 
@@ -1059,6 +1100,58 @@ msgstr "Non borrar a aplicación"
 msgid "Delete this application"
 msgstr "Borrar a aplicación"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Ten que identificarse para deixar un grupo."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Nin alcume nin ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Vostede non pertence a este grupo."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Non se puido actualizar o grupo."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s deixou o grupo %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Borrar o usuario"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Está seguro de querer borrar este usuario? Isto borrará todos os datos do "
+"usuario da base de datos, sen posibilidade de recuperalos."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Non borrar esta nota"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Borrar o usuario"
+
 #. 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
@@ -1135,54 +1228,64 @@ msgstr "Deseño"
 msgid "Design settings for this StatusNet site"
 msgstr "Configuración de deseño para este sitio StatusNet"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "URL do logo incorrecto."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "URL do logo incorrecto."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "O tema visual non está dispoñible: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Cambiar o logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo do sitio"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo do sitio"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Cambar o tema visual"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Tema visual do sitio"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Tema visual para o sitio."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Tema visual personalizado"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 "Pode cargar como arquivo .ZIP un tema visual personalizado para StatusNet"
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Cambiar a imaxe de fondo"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Fondo"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1192,66 +1295,66 @@ msgstr ""
 "ficheiro é de %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Activado"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Desactivado"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Activar ou desactivar a imaxe de fondo."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Imaxe de fondo en mosaico"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Cambiar as cores"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Contido"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barra lateral"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Texto"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Ligazóns"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avanzado"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS personalizado"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Utilizar os valores por defecto"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Restaurar o deseño por defecto"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Volver ao deseño por defecto"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1261,7 +1364,7 @@ msgstr "Volver ao deseño por defecto"
 msgid "Save"
 msgstr "Gardar"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Gardar o deseño"
 
@@ -1739,7 +1842,7 @@ msgstr "Non se puido converter a ficha da solicitude nun pase."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Houbo un erro ao actualizar o perfil remoto."
 
@@ -2334,10 +2437,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Ten que identificarse para unirse a un grupo."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Nin alcume nin ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2587,6 +2686,12 @@ msgstr "Non pode enviarlle unha mensaxe a este usuario."
 msgid "No content!"
 msgstr "Non hai contido ningún!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr ""
+"Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Non se especificou ningún destinatario."
@@ -2748,7 +2853,7 @@ msgstr "Só %s enderezos URL sobre HTTP simple."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Non se soporta ese formato de datos."
 
@@ -2899,147 +3004,166 @@ msgstr "Rutas"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Configuración do servidor e das rutas para este sitio StatusNet"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Non se pode ler o directorio de temas visuais: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Non se pode escribir no directorio de avatares: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Non se pode escribir no directorio de fondos: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Non se pode ler o directorio de traducións: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Servidor SSL incorrecto. O tamaño máximo é de 255 caracteres."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Sitio"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Servidor"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Nome do servidor do sitio."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Ruta"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Ruta do sitio"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Ruta das traducións"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Directorio de temas visuais"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Ruta do directorio das traducións"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Enderezos URL elegantes"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Quere utilizar os enderezos URL elegantes (mellores de ler e lembrar)?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Tema visual"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Servidor de temas visuais"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Tema visual para o sitio."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Ruta do tema visual"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Directorio de temas visuais"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatares"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Servidor de avatares"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Ruta do avatar"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Directorio de avatares"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Fondos"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Servidor de fondos"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Ruta do fondo"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Directorio de fondos"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nunca"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Ás veces"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Sempre"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Utilizar SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Cando utilizar SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Servidor SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Ruta do sitio"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Directorio de temas visuais"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Ruta do directorio das traducións"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatares"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Servidor de avatares"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Ruta do avatar"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Directorio de avatares"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Fondos"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Ficheiros anexos"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nunca"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Ás veces"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Sempre"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Utilizar SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Cando utilizar SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Servidor ao que dirixir as solicitudes SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Gardar as rutas"
 
@@ -3819,7 +3943,7 @@ msgstr "Organización"
 msgid "Description"
 msgstr "Descrición"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Estatísticas"
@@ -3963,45 +4087,45 @@ msgstr "Pseudónimos"
 msgid "Group actions"
 msgstr "Accións do grupo"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, 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:344
+#: actions/showgroup.php:350
 #, 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:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Fonte de novas das notas do grupo %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Amigo dun amigo para o grupo %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Membros"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Todos os membros"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Creado"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4017,7 +4141,7 @@ 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:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4030,7 +4154,7 @@ 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:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administradores"
 
@@ -4989,7 +5113,7 @@ msgid "Plugins"
 msgstr "Complementos"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versión"
 
@@ -5005,9 +5129,9 @@ msgstr "Marcar como favorito"
 #. TRANS: Ntofication given when a user marks a notice as favorite.
 #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
 #: classes/Fave.php:151
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s marked notice %2$s as a favorite."
-msgstr "%s (@%s) marcou a súa nota como favorita"
+msgstr "%1$s marcou a nota %2$s como favorita"
 
 #. TRANS: Server exception thrown when a URL cannot be processed.
 #: classes/File.php:142
@@ -5188,9 +5312,9 @@ msgstr "Houbo un problema ao gardar a caixa de entrada do grupo."
 #. TRANS: Server exception thrown when a reply cannot be saved.
 #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
 #: classes/Notice.php:1120
-#, fuzzy, php-format
+#, php-format
 msgid "Could not save reply for %1$d, %2$d."
-msgstr "Non se puido gardar a información do grupo local."
+msgstr "Non se puido gardar a resposta a %1$d, %2$d."
 
 #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
 #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
@@ -5226,7 +5350,7 @@ msgid "Unable to save tag."
 msgstr "Non se puido gardar a nota do sitio."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Prohibíuselle realizar subscricións de momento."
 
@@ -5268,9 +5392,9 @@ msgstr "Seguir"
 #. TRANS: Notification given when one person starts following another.
 #. TRANS: %1$s is the subscriber, %2$s is the subscribed.
 #: classes/Subscription.php:258
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s is now following %2$s."
-msgstr "%1$s uniuse ao grupo %2$s."
+msgstr "%1$s xa segue a %2$s."
 
 #. TRANS: Notice given on user registration.
 #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
@@ -5346,185 +5470,185 @@ msgid "Untitled page"
 msgstr "Páxina sen título"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Navegación principal do sitio"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Liña do tempo do perfil persoal e os amigos"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Persoal"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Cambie o seu correo electrónico, avatar, contrasinal ou perfil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Conectarse aos servizos"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Conectarse"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Cambiar a configuración do sitio"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administrador"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Convide a amigos e compañeiros a unírselle en %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Convidar"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Saír ao anonimato"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Saír"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Crear unha conta"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Rexistrarse"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Identificarse no sitio"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Identificarse"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Axuda!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Axuda"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Buscar persoas ou palabras"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Buscar"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Nota do sitio"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Vistas locais"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Nota da páxina"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Navegación secundaria do sitio"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Axuda"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Acerca de"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Preguntas máis frecuentes"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Condicións do servicio"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Protección de datos"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Código fonte"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contacto"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Insignia"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licenza do software StatusNet"
 
@@ -5532,7 +5656,7 @@ msgstr "Licenza do software StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5542,7 +5666,7 @@ msgstr ""
 "site.broughtby%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas."
@@ -5551,7 +5675,7 @@ msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5563,20 +5687,20 @@ msgstr ""
 "GNU](http://www.fsf.org/licensing/licenses/agpl-3.0.html) (en inglés)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licenza dos contidos do sitio"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "O contido e os datos de %1$s son privados e confidenciais."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
@@ -5584,7 +5708,7 @@ msgstr ""
 "todos os dereitos."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Os contidos e datos son propiedade intelectual dos colaboradores. Quedan "
@@ -5592,26 +5716,26 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 "Todos os contidos e datos de %1$s están dispoñibles baixo a licenza %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paxinación"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Posteriores"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Anteriores"
 
@@ -5754,12 +5878,12 @@ msgid "Could not authenticate you."
 msgstr "Non puidemos autenticalo."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Intentouse revogar un pase descoñecido."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Erro ao borrar o pase revogado."
 
@@ -5843,11 +5967,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Permisos por defecto para esta aplicación: lectura ou lectura e escritura"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Cancelar"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5874,11 +5993,6 @@ msgstr "Revogar"
 msgid "author element must contain a name element."
 msgstr "o elemento \"autor\" debe conter un nome."
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Ficheiros anexos"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6342,14 +6456,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Actualizacións por SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Conexións"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Aplicacións conectadas autorizadas"
@@ -7151,24 +7265,24 @@ msgstr "Facer un aceno"
 msgid "Send a nudge to this user"
 msgstr "Facerlle un aceno a este usuario"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Houbo un erro ao inserir o novo perfil."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Houbo un erro ao inserir o avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Houbo un erro ao inserir o perfil remoto."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Nota duplicada."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Non se puido inserir unha subscrición nova."
 
@@ -7474,9 +7588,9 @@ msgstr "Cancelar a subscrición"
 #. TRANS: Exception text shown when no profile can be found for a user.
 #. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
 #: lib/usernoprofileexception.php:60
-#, fuzzy, php-format
+#, php-format
 msgid "User %1$s (%2$d) has no profile record."
-msgstr "O usuario non ten perfil."
+msgstr "O usuario %1$s (%2$d) non ten perfil."
 
 #: lib/userprofile.php:117
 msgid "Edit Avatar"
@@ -7525,17 +7639,17 @@ msgid "Moderator"
 msgstr "Moderador"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "hai uns segundos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "hai como un minuto"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7543,12 +7657,12 @@ msgstr[0] "hai un minuto"
 msgstr[1] "hai %d minutos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "hai como unha hora"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7556,12 +7670,12 @@ msgstr[0] "hai unha hora"
 msgstr[1] "hai %d horas"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "hai como un día"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7569,12 +7683,12 @@ msgstr[0] "hai un día"
 msgstr[1] "hai %d días"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "hai como un mes"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7582,7 +7696,7 @@ msgstr[0] "hai un mes"
 msgstr[1] "hai %d meses"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "hai como un ano"
 
@@ -7609,3 +7723,29 @@ 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 ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr "Autorizouse a ficha da solicitude %s. Intercámbiea por un pase."
+
+#~ msgid "Deny"
+#~ msgstr "Denegar"
+
+#~ msgid "Path to locales"
+#~ msgstr "Ruta das traducións"
+
+#~ msgid "Theme server"
+#~ msgstr "Servidor de temas visuais"
+
+#~ msgid "Theme path"
+#~ msgstr "Ruta do tema visual"
+
+#~ msgid "Background server"
+#~ msgstr "Servidor de fondos"
+
+#~ msgid "Background path"
+#~ msgstr "Ruta do fondo"
+
+#~ msgid "Background directory"
+#~ msgstr "Directorio de fondos"
diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po
index 08ea249d42..c9fdec2233 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:45+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:29+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -93,14 +93,15 @@ msgstr "Składować"
 msgid "No such page."
 msgstr "Strona njeeksistuje."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -194,12 +195,13 @@ msgstr "Ty a přećeljo"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Aktualizacije wot %1$s a přećelow na %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -226,7 +228,7 @@ msgstr "API-metoda njenamakana."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -299,45 +301,62 @@ msgstr "Blokowanje wužiwarja je so njeporadźiło."
 msgid "Unblock user failed."
 msgstr "Wotblokowanje wužiwarja je so njeporadźiło."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Direktne powěsće z %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Wšě z %s pósłane direktne powěsće"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Direktne powěsće do %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Wšě do %s pósłane direktne powěsće"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Žadyn powěsćowy tekst!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow."
+msgstr[1] "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow."
+msgstr[2] "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow."
+msgstr[3] "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Přijimowar njenamakany."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Njeje móžno, direktne powěsće wužiwarjam pósłać, kotřiž twoji přećeljo "
 "njejsu."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -519,15 +538,21 @@ msgstr "skupiny na %s"
 msgid "Upload failed."
 msgstr "Nahraće je so njeporadźiło."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Njepłaćiwe přizjewjenske znamješko podate."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Njepłaćiwy token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -545,34 +570,22 @@ msgstr "Njepłaćiwy token."
 msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Njepłaćiwe přimjeno abo hesło!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Zmylk datoweje banki při zhašenju wužiwarja OAuth-aplikacije."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -581,15 +594,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Njewočakowane wotpósłanje formulara."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Aplikacija chce so z twojom kontom zwjazać"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Přistup dowolić abo wotpokazać"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -598,11 +611,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Konto"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -611,23 +624,47 @@ msgid "Nickname"
 msgstr "Přimjeno"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Hesło"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Wotpokazać"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Přetorhnyć"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Dowolić"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Přistup ke kontowym informacijam dowolić abo wotpokazać."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "IM-wobkrućenje přetorhnjene."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Njejsy awtorizowany."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Tuta metoda wužaduje sej POST abo DELETE."
@@ -790,7 +827,8 @@ msgid "Preview"
 msgstr "Přehlad"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Zničić"
 
@@ -843,12 +881,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Ně"
@@ -861,12 +900,13 @@ msgstr "Tutoho wužiwarja njeblokować"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Haj"
@@ -885,6 +925,7 @@ msgstr "Njeje móžno, sydłowu zdźělenku składować."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1011,7 +1052,7 @@ msgstr "Njejsy wobsedźer tuteje aplikacije."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1036,6 +1077,55 @@ msgstr "Tutu aplikaciju njezničić"
 msgid "Delete this application"
 msgstr "Tutu aplikaciju zničić"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Dyrbiš přizjewjeny być, zo by skupinu wopušćił."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Žane přimjeno abo žadyn ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Njejsy čłon tuteje skupiny."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Skupina njeje so dała aktualizować."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s je skupinu %2$s wopušćił"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Wužiwarja wušmórnyć"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Tutu zdźělenku njewušmórnyć"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Tutoho wužiwarja wušmórnyć"
+
 #. 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
@@ -1108,53 +1198,63 @@ msgstr "Design"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Njepłaćiwy logowy URL."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Njepłaćiwy logowy URL."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Šat njesteji k dispoziciji: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Logo změnić"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo sydła"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo sydła"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Šat změnić"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Šat sydła"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Šat za sydło."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Swójski šat"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Móžeš swójski šat StatusNet jako .ZIP-archiw nahrać."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Pozadkowy wobraz změnić"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Pozadk"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1163,68 +1263,68 @@ msgstr ""
 "Móžeš pozadkowy wobraz za sydło nahrać. Maksimalna datajowa wulkosć je %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Zapinjeny"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Wupinjeny"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 #, fuzzy
 msgid "Turn background image on or off."
 msgstr "Pozadkowy wobraz změnić"
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 #, fuzzy
 msgid "Tile background image"
 msgstr "Pozadkowy wobraz změnić"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Barby změnić"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Wobsah"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Bóčnica"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Tekst"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Wotkazy"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Rozšěrjeny"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Swójski CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Standardne hódnoty wužiwać"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Standardne designy wobnowić"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Na standard wróćo stajić"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1234,7 +1334,7 @@ msgstr "Na standard wróćo stajić"
 msgid "Save"
 msgstr "Składować"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Design składować"
 
@@ -1702,7 +1802,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Zmylk při aktualizaciji zdaleneho profila."
 
@@ -2250,10 +2350,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Dyrbiš přizjewjeny być, zo by do skupiny zastupił."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Žane přimjeno abo žadyn ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2495,6 +2591,11 @@ msgstr "Njemóžeš tutomu wužiwarju powěsć pósłać."
 msgid "No content!"
 msgstr "Žadyn wobsah!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Žadyn přijimowar podaty."
@@ -2649,7 +2750,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Njeje podpěrany datowy format."
 
@@ -2802,147 +2903,166 @@ msgstr "Šćežki"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Šatowy zapis njeda so čitać: %s"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Do awataroweho zapisa njeda so pisać: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Do pozadkoweho zapisa njeda so pisać: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Šatowy zapis njeda so čitać: %s"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Sydło"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Serwer"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Šćežka"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Sydłowa šćežka"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Šćežka k lokalam"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Šatowy zapis"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Zapisowa šćežka k lokalam"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Šat"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Šatowy serwer"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Šat za sydło."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Šatowa šćežka"
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Šatowy zapis"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Awatary"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Awatarowy serwer"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Awatarowa šćežka"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Awatarowy zapis"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Pozadki"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Pozadkowy serwer"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Pozadkowa šćežka"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Pozadkowy zapis"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Ženje"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Druhdy"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Přeco"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "SSL wužiwać"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-serwer"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Sydłowa šćežka"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Šatowy zapis"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Zapisowa šćežka k lokalam"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Awatary"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Awatarowy serwer"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Awatarowa šćežka"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Awatarowy zapis"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Pozadki"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Přiwěški"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Ženje"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Druhdy"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Přeco"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "SSL wužiwać"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Šćežki składować"
 
@@ -3665,7 +3785,7 @@ msgstr "Organizacija"
 msgid "Description"
 msgstr "Wopisanje"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistika"
@@ -3800,45 +3920,45 @@ msgstr "Aliasy"
 msgid "Group actions"
 msgstr "Skupinske akcije"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, 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:344
+#: actions/showgroup.php:350
 #, 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:350
+#: actions/showgroup.php:356
 #, 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:355
+#: actions/showgroup.php:361
 #, fuzzy, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF za %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Čłonojo"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Wšitcy čłonojo"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Wutworjeny"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3848,7 +3968,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3857,7 +3977,7 @@ msgid ""
 "their life and interests. "
 msgstr ""
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administratorojo"
 
@@ -4769,7 +4889,7 @@ msgid "Plugins"
 msgstr "Tykače"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Wersija"
 
@@ -5004,7 +5124,7 @@ msgid "Unable to save tag."
 msgstr "Njeje móžno, tafličku składować."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 #, fuzzy
 msgid "You have been banned from subscribing."
 msgstr "Tutón wužiwar ći abonowanje njedowoli."
@@ -5126,190 +5246,190 @@ msgid "Untitled page"
 msgstr "Strona bjez titula"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 #, fuzzy
 msgid "Primary site navigation"
 msgstr "Zakładna sydłowa konfiguracija"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Wosobinski"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Wašu e-mejl, waš awatar, waše hesło, waš profil změnić"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Ze słužbami zwjazać"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Zwjazać"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Sydłowu konfiguraciju změnić"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administrator"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Přećelow a kolegow přeprosyć, so tebi na %s  přidružić"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Přeprosyć"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Ze sydła wotzjewić"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Wotzjewić"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Konto załožić"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrować"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Při sydle přizjewić"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Přizjewjenje"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Pomhaj!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Pomoc"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Za ludźimi abo tekstom pytać"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Pytać"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 #, fuzzy
 msgid "Site notice"
 msgstr "Sydłowa zdźělenka"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 #, fuzzy
 msgid "Local views"
 msgstr "Lokalny"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 #, fuzzy
 msgid "Page notice"
 msgstr "Nowa zdźělenka"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 #, fuzzy
 msgid "Secondary site navigation"
 msgstr "Zakładna sydłowa konfiguracija"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Pomoc"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Wo"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Huste prašenja"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Priwatnosć"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Žórło"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontakt"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr ""
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr ""
 
@@ -5317,7 +5437,7 @@ msgstr ""
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5325,7 +5445,7 @@ msgid ""
 msgstr ""
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr ""
@@ -5334,7 +5454,7 @@ msgstr ""
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5343,52 +5463,52 @@ msgid ""
 msgstr ""
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 #, fuzzy
 msgid "Site content license"
 msgstr "Wobsah zdźělenkow přepytać"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 #, fuzzy
 msgid "Pagination"
 msgstr "Registrowanje"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Po"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Před"
 
@@ -5531,12 +5651,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5622,11 +5742,6 @@ msgstr "Popisujomny"
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Přetorhnyć"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5653,11 +5768,6 @@ msgstr "Wotwołać"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Přiwěški"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6085,14 +6195,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Aktualizacije přez SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Zwiski"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Awtorizowane zwjazane aplikacije"
@@ -6794,24 +6904,24 @@ msgstr ""
 msgid "Send a nudge to this user"
 msgstr "Tutomu wužiwarja direktnu powěsć pósłać"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Nowy abonement njeda so zasunyć."
 
@@ -7169,17 +7279,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "před něšto sekundami"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "před něhdźe jednej mjeńšinu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7189,12 +7299,12 @@ msgstr[2] ""
 msgstr[3] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "před něhdźe jednej hodźinu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7204,12 +7314,12 @@ msgstr[2] ""
 msgstr[3] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "před něhdźe jednym dnjom"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7219,12 +7329,12 @@ msgstr[2] ""
 msgstr[3] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "před něhdźe jednym měsacom"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7234,7 +7344,7 @@ msgstr[2] ""
 msgstr[3] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "před něhdźe jednym lětom"
 
@@ -7264,3 +7374,24 @@ msgstr "Žadyn wužiwarski ID podaty."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "Wotpokazać"
+
+#~ msgid "Path to locales"
+#~ msgstr "Šćežka k lokalam"
+
+#~ msgid "Theme server"
+#~ msgstr "Šatowy serwer"
+
+#~ msgid "Theme path"
+#~ msgstr "Šatowa šćežka"
+
+#~ msgid "Background server"
+#~ msgstr "Pozadkowy serwer"
+
+#~ msgid "Background path"
+#~ msgstr "Pozadkowa šćežka"
+
+#~ msgid "Background directory"
+#~ msgstr "Pozadkowy zapis"
diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po
index 9097b66db9..dfdbdffefb 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:47+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:31+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-04 23:06:40+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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"
@@ -95,14 +95,15 @@ msgstr "Mentés"
 msgid "No such page."
 msgstr "Nincs ilyen lap."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -200,12 +201,13 @@ msgstr "Te és a barátaid"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Frissítések %1$s felhasználótól, és barátok a következő oldalon: %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -232,7 +234,7 @@ msgstr "Az API-metódus nem található."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -306,44 +308,60 @@ msgstr "Nem sikerült a felhasználó blokkolása."
 msgid "Unblock user failed."
 msgstr "Nem sikerült a felhasználó blokkjának feloldása."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Közvetlen üzenetek tőle: %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "%s által küldött összes közvetlen üzenetek"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Közvetlen üzenetek neki: %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "%s részére küldött összes közvetlen üzenet"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Az üzenetnek nincs szövege!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Ez túl hosszú. Az üzenet mérete legfeljebb %d karakter lehet."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Ez túl hosszú. Az üzenet mérete legfeljebb %d karakter lehet."
+msgstr[1] "Ez túl hosszú. Az üzenet mérete legfeljebb %d karakter lehet."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "A címzett felhasználó nem található."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Nem küldhetsz közvetlen üzenetet olyan felhasználóknak, akik nem a barátaid."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Ne küldj üzenetet magadnak, helyette mondd el halkan."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -523,15 +541,20 @@ msgstr "%s csoportok"
 msgid "Upload failed."
 msgstr ""
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+msgid "Invalid request token or verifier."
+msgstr ""
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Érvénytelen token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -549,34 +572,22 @@ msgstr "Érvénytelen token."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Probléma volt a munkameneted tokenjével. Kérlek, próbáld újra."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Érvénytelen becenév / jelszó!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr ""
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -585,15 +596,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Váratlan űrlapbeküldés."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Egy alkalmazás szeretne csatlakozni a kontódhoz"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Elérés engedélyezése vagy tiltása"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -602,11 +613,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Kontó"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -615,23 +626,46 @@ msgid "Nickname"
 msgstr "Becenév"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Jelszó"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Tiltjuk"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Mégse"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Engedjük"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Engedélyezheted vagy megtilthatod a kontód megtekintését."
 
+#: actions/apioauthauthorize.php:433
+msgid "Authorization canceled."
+msgstr ""
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Nincs jogosultságod."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr ""
@@ -793,7 +827,8 @@ msgid "Preview"
 msgstr "Előnézet"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Törlés"
 
@@ -846,12 +881,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Nem"
@@ -864,12 +900,13 @@ msgstr "Ne blokkoljuk ezt a felhasználót"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Igen"
@@ -887,6 +924,7 @@ msgstr "Nem sikerült elmenteni a blokkolási információkat."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1012,7 +1050,7 @@ msgstr ""
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1037,6 +1075,58 @@ msgstr ""
 msgid "Delete this application"
 msgstr ""
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Be kell jelentkezned hogy elhagyhass egy csoportot."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Nincs nicknév vagy azonosító."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Nem vagy tagja ennek a csoportnak."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Nem sikerült a csoport frissítése."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s csatlakozott a(z) %2$s csoporthoz"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Felhasználó törlése"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Biztosan törölni szeretnéd ezt a felhasználót? Ezzel minden róla szóló "
+"adatot törlünk az adatbázisból, biztonsági mentés nélkül."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Ne töröljük ezt a hírt"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Töröljük ezt a felhasználót"
+
 #. 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
@@ -1111,53 +1201,63 @@ msgstr "Megjelenés"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Érvénytelen logó URL."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Érvénytelen logó URL."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr ""
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Logó megváltoztatása"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Oldal logója"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Oldal logója"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Téma megváltoztatása"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Webhely-téma"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "A webhely témája."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr ""
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Háttérkép megváltoztatása"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Háttér"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1165,66 +1265,66 @@ msgid ""
 msgstr ""
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Be"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Ki"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Háttérkép be- vagy kikapcsolása."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Háttérkép csempézése"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Színek megváltoztatása"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Tartalom"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Oldalsáv"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Szöveg"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Hivatkozások"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Alapértelmezések használata"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr ""
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Visszaállítás az alapértelmezettre"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1234,7 +1334,7 @@ msgstr "Visszaállítás az alapértelmezettre"
 msgid "Save"
 msgstr "Mentés"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Design mentése"
 
@@ -1706,7 +1806,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Nem sikerült frissíteni a távoli profilt."
 
@@ -2253,10 +2353,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Be kell jelentkezned, ha csatlakozni szeretnél a csoporthoz."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Nincs nicknév vagy azonosító."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2497,6 +2593,11 @@ msgstr "Ennek a felhasználónak nem küldhetsz üzenetet."
 msgid "No content!"
 msgstr "Nincs tartalom!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Ez túl hosszú. Az üzenet mérete legfeljebb %d karakter lehet."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Nincs címzett megadva."
@@ -2648,7 +2749,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Nem támogatott adatformátum."
 
@@ -2796,147 +2897,166 @@ msgstr "Útvonalak"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Érvénytelen SSL szerver. A maximális hossz 255 karakter."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Webhely"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Szerver"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "A webhely kiszolgálójának neve."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Útvonal"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Webhely útvonala"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "A nyelvi fájlok elérési útvonala"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Avatar-könyvtár"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "A nyelvi fájlok elérési útvonala"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Téma"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "A webhely témája."
+
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Téma elérési útvonala"
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatarok"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Avatar-kiszolgáló"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Avatar-könyvtár"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Hátterek"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr ""
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Soha"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Időnként"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Mindig"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "SSL használata"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Mikor használjunk SSL-t"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-kiszolgáló"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Webhely útvonala"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Avatar-könyvtár"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "A nyelvi fájlok elérési útvonala"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatarok"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Avatar-kiszolgáló"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr ""
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Avatar-könyvtár"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Hátterek"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Csatolmányok"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Soha"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Időnként"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Mindig"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "SSL használata"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Mikor használjunk SSL-t"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Elérési útvonalak mentése"
 
@@ -3663,7 +3783,7 @@ msgstr "Szervezet"
 msgid "Description"
 msgstr "Leírás"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statisztika"
@@ -3796,45 +3916,45 @@ msgstr "Álnevek"
 msgid "Group actions"
 msgstr "Csoport-tevékenységek"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "%s csoport RSS 1.0 hírcsatornája"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "%s csoport RSS 2.0 hírcsatornája"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "%s csoport Atom hírcsatornája"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF a %s csoportnak"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Tagok"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Összes tag"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Létrehoztuk"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3850,7 +3970,7 @@ 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:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3859,7 +3979,7 @@ msgid ""
 "their life and interests. "
 msgstr ""
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Adminisztrátorok"
 
@@ -4758,7 +4878,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr ""
 
@@ -4986,7 +5106,7 @@ msgid "Unable to save tag."
 msgstr ""
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Eltiltottak a feliratkozástól."
 
@@ -5106,185 +5226,185 @@ msgid "Untitled page"
 msgstr "Név nélküli oldal"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Elsődleges navigáció"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Kapcsolódás"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr ""
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr ""
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr ""
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr ""
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr ""
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr ""
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "A webhely híre"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr ""
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr ""
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Másodlagos navigáció"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Súgó"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Névjegy"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "GyIK"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Felhasználási feltételek"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Forrás"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kapcsolat"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr ""
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "A StatusNet szoftver licence"
 
@@ -5292,7 +5412,7 @@ msgstr "A StatusNet szoftver licence"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5300,7 +5420,7 @@ msgid ""
 msgstr ""
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr ""
@@ -5309,7 +5429,7 @@ msgstr ""
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5318,50 +5438,50 @@ msgid ""
 msgstr ""
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "A webhely tartalmára vonatkozó licenc"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr ""
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Utána"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Előtte"
 
@@ -5501,12 +5621,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5589,11 +5709,6 @@ msgstr "Írható-olvasható"
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Mégse"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5620,11 +5735,6 @@ msgstr ""
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Csatolmányok"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6044,14 +6154,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr ""
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Kapcsolatok"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr ""
@@ -6808,24 +6918,24 @@ msgstr "Megbök"
 msgid "Send a nudge to this user"
 msgstr "Bökjük meg ezt a felhasználót"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr ""
 
@@ -7176,17 +7286,17 @@ msgid "Moderator"
 msgstr "Moderátor"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "pár másodperce"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "körülbelül egy perce"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7194,12 +7304,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "körülbelül egy órája"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7207,12 +7317,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "körülbelül egy napja"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7220,12 +7330,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "körülbelül egy hónapja"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7233,7 +7343,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "körülbelül egy éve"
 
@@ -7260,3 +7370,12 @@ msgstr ""
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "Tiltjuk"
+
+#~ msgid "Path to locales"
+#~ msgstr "A nyelvi fájlok elérési útvonala"
+
+#~ msgid "Theme path"
+#~ msgstr "Téma elérési útvonala"
diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po
index 3bd8775bf6..1dfcf6b7fa 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:49+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:34+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -90,14 +90,15 @@ msgstr "Salveguardar"
 msgid "No such page."
 msgstr "Pagina non existe."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -199,12 +200,13 @@ msgstr "Tu e amicos"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Actualisationes de %1$s e su amicos in %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -231,7 +233,7 @@ msgstr "Methodo API non trovate."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -307,43 +309,61 @@ msgstr "Le blocada del usator ha fallite."
 msgid "Unblock user failed."
 msgstr "Le disblocada del usator ha fallite."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Messages directe de %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Tote le messages directe inviate de %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Messages directe a %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Tote le messages directe inviate a %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Message sin texto!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Isto es troppo longe. Le maximo es %d characteres."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Isto es troppo longe. Le maximo es %d characteres."
+msgstr[1] "Isto es troppo longe. Le maximo es %d characteres."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Usator destinatario non trovate."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Non pote inviar messages directe a usatores que non es tu amicos."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Non invia un message a te mesme; il suffice sussurar lo a te mesme in su "
+"loco."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -523,15 +543,21 @@ msgstr "gruppos in %s"
 msgid "Upload failed."
 msgstr "Le incargamento ha fallite."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Indicio de identification invalide specificate."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Nulle parametro oauth_token fornite."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Indicio invalide."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -549,39 +575,25 @@ msgstr "Indicio invalide."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Nomine de usator o contrasigno invalide!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr ""
 "Error del base de datos durante le deletion del usator del application OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 "Error del base de datos durante le insertion del usator del application "
 "OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Le indicio de requesta %s ha essite autorisate. Per favor excambia lo pro un "
-"indicio de accesso."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Le indicio de requesta %s ha essite refusate e revocate."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -590,15 +602,15 @@ msgstr "Le indicio de requesta %s ha essite refusate e revocate."
 msgid "Unexpected form submission."
 msgstr "Submission de formulario inexpectate."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Un application vole connecter se a tu conto"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Permitter o refusar accesso"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -610,11 +622,11 @@ msgstr ""
 "accesso a tu conto de %4$s a tertie personas in le quales tu ha confidentia."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Conto"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -623,23 +635,47 @@ msgid "Nickname"
 msgstr "Pseudonymo"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Contrasigno"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Refusar"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Cancellar"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Permitter"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Permitter o refusar accesso al informationes de tu conto."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Confirmation de messageria instantanee cancellate."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Le indicio de requesta %s ha essite refusate e revocate."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Tu non es autorisate."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Iste methodo require un commando POST o DELETE."
@@ -805,7 +841,8 @@ msgid "Preview"
 msgstr "Previsualisation"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Deler"
 
@@ -861,12 +898,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "No"
@@ -879,12 +917,13 @@ msgstr "Non blocar iste usator"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Si"
@@ -902,6 +941,7 @@ msgstr "Falleva de salveguardar le information del blocada."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1027,7 +1067,7 @@ msgstr "Tu non es le proprietario de iste application."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Il habeva un problema con tu indicio de session."
 
@@ -1055,6 +1095,58 @@ msgstr "Non deler iste application"
 msgid "Delete this application"
 msgstr "Deler iste application"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Tu debe aperir un session pro quitar un gruppo."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Nulle pseudonymo o ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Tu non es membro de iste gruppo."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Non poteva actualisar gruppo."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s quitava le gruppo %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Deler usator"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Es tu secur de voler deler iste usator? Isto radera tote le datos super le "
+"usator del base de datos, sin copia de reserva."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Non deler iste nota"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Deler iste usator"
+
 #. 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
@@ -1131,55 +1223,65 @@ msgstr "Apparentia"
 msgid "Design settings for this StatusNet site"
 msgstr "Configuration del apparentia de iste sito StatusNet"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "URL de logotypo invalide."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "URL de logotypo invalide."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Thema non disponibile: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Cambiar logotypo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logotypo del sito"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logotypo del sito"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Cambiar thema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Thema del sito"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Le thema de apparentia pro le sito."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Apparentia personalisate"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 "Es possibile incargar un apparentia personalisate de StatusNet in un "
 "archivo .ZIP."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Cambiar imagine de fundo"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Fundo"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1189,66 +1291,66 @@ msgstr ""
 "file es %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Active"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Non active"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Activar o disactivar le imagine de fundo."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Tegular le imagine de fundo"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Cambiar colores"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Contento"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barra lateral"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Texto"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Ligamines"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avantiate"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS personalisate"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Usar predefinitiones"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Restaurar apparentias predefinite"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Revenir al predefinitiones"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1258,7 +1360,7 @@ msgstr "Revenir al predefinitiones"
 msgid "Save"
 msgstr "Salveguardar"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Salveguardar apparentia"
 
@@ -1731,7 +1833,7 @@ msgstr "Non poteva converter le indicio de requesta in un indicio de accesso."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Le servicio remote usa un version incognite del protocollo OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Error durante le actualisation del profilo remote."
 
@@ -2328,10 +2430,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Tu debe aperir un session pro facer te membro de un gruppo."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Nulle pseudonymo o ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2578,6 +2676,11 @@ msgstr "Tu non pote inviar un message a iste usator."
 msgid "No content!"
 msgstr "Nulle contento!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Isto es troppo longe. Le maximo es %d characteres."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Nulle destinatario specificate."
@@ -2742,7 +2845,7 @@ msgstr "Solmente le URLs %s es permittite super HTTP simple."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Formato de datos non supportate."
 
@@ -2891,147 +2994,166 @@ msgstr "Camminos"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Configuration de cammino e servitor pro iste sito StatusNet"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Directorio de thema non legibile: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Directorio de avatar non scriptibile: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Directorio de fundo non scriptibile: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Directorio de localitates non scriptibile: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Servitor SSL invalide. Le longitude maximal es 255 characteres."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Sito"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Servitor"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Nomine de host del servitor del sito."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Cammino"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Cammino del sito"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Cammino al localitates"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Directorio del themas"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Cammino al directorio de localitates"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "URLs de luxo"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Usar URLs de luxo (plus legibile e memorabile)?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Thema"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Servitor de themas"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Le thema de apparentia pro le sito."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Cammino al themas"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Directorio del themas"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatares"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Servitor de avatares"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Cammino al avatares"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Directorio del avatares"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Fundos"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Servitor de fundos"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Cammino al fundos"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Directorio al fundos"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nunquam"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Alcun vices"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Sempre"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Usar SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Quando usar SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Servitor SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Cammino del sito"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Directorio del themas"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Cammino al directorio de localitates"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatares"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Servitor de avatares"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Cammino al avatares"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Directorio del avatares"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Fundos"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Annexos"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nunquam"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Alcun vices"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Sempre"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Usar SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Quando usar SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Servitor verso le qual diriger le requestas SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Salveguardar camminos"
 
@@ -3798,7 +3920,7 @@ msgstr "Organisation"
 msgid "Description"
 msgstr "Description"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statisticas"
@@ -3941,45 +4063,45 @@ msgstr "Aliases"
 msgid "Group actions"
 msgstr "Actiones del gruppo"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, 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:344
+#: actions/showgroup.php:350
 #, 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:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Syndication de notas pro le gruppo %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Amico de un amico pro le gruppo %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Membros"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Tote le membros"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Create"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3994,7 +4116,7 @@ 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:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4007,7 +4129,7 @@ msgstr ""
 "[StatusNet](http://status.net/). Su membros condivide breve messages super "
 "lor vita e interesses. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administratores"
 
@@ -4963,7 +5085,7 @@ msgid "Plugins"
 msgstr "Plug-ins"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Version"
 
@@ -5199,7 +5321,7 @@ msgid "Unable to save tag."
 msgstr "Impossibile salveguardar le etiquetta."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Tu ha essite blocate del subscription."
 
@@ -5319,185 +5441,185 @@ msgid "Untitled page"
 msgstr "Pagina sin titulo"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Navigation primari del sito"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Profilo personal e chronologia de amicos"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personal"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Connecter a servicios"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Connecter"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Modificar le configuration del sito"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Admin"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Invitar amicos e collegas a accompaniar te in %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Invitar"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Terminar le session del sito"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Clauder session"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Crear un conto"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Crear conto"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Authenticar te a iste sito"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Aperir session"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Adjuta me!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Adjuta"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Cercar personas o texto"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Cercar"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Aviso del sito"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Vistas local"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Aviso de pagina"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Navigation secundari del sito"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Adjuta"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "A proposito"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "CdS"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Confidentialitate"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Fonte"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contacto"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Insignia"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licentia del software StatusNet"
 
@@ -5505,7 +5627,7 @@ msgstr "Licentia del software StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5515,7 +5637,7 @@ msgstr ""
 "%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** es un servicio de microblog."
@@ -5524,7 +5646,7 @@ msgstr "**%%site.name%%** es un servicio de microblog."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5536,51 +5658,51 @@ msgstr ""
 "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licentia del contento del sito"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Le contento e datos de %1$s es private e confidential."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Contento e datos sub copyright del contributores. Tote le derectos reservate."
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Tote le contento e datos de %1$s es disponibile sub le licentia %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Pagination"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Post"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Ante"
 
@@ -5724,12 +5846,12 @@ msgid "Could not authenticate you."
 msgstr "Non poteva authenticar te."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Tentava revocar un indicio non cognoscite."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Falleva de deler le indicio revocate."
 
@@ -5814,11 +5936,6 @@ msgstr ""
 "Accesso predefinite pro iste application: lectura solmente, o lectura e "
 "scriptura"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Cancellar"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5845,11 +5962,6 @@ msgstr "Revocar"
 msgid "author element must contain a name element."
 msgstr "Le elemento \"author\" debe continer un elemento \"name\"."
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Annexos"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6312,14 +6424,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Actualisationes per SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Connexiones"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Applicationes autorisate connectite"
@@ -7119,24 +7231,24 @@ msgstr "Pulsar"
 msgid "Send a nudge to this user"
 msgstr "Inviar un pulsata a iste usator"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Error durante le insertion del nove profilo."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Error durante le insertion del avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Error durante le insertion del profilo remote."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Nota duplicate."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Non poteva inserer nove subscription."
 
@@ -7495,17 +7607,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "alcun secundas retro"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "circa un minuta retro"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7513,12 +7625,12 @@ msgstr[0] "un minuta"
 msgstr[1] "%d minutas"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "circa un hora retro"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7526,12 +7638,12 @@ msgstr[0] "un hora"
 msgstr[1] "%d horas"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "circa un die retro"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7539,12 +7651,12 @@ msgstr[0] "un die"
 msgstr[1] "%d dies"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "circa un mense retro"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7552,7 +7664,7 @@ msgstr[0] "un mense"
 msgstr[1] "%d menses"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "circa un anno retro"
 
@@ -7579,3 +7691,31 @@ 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 ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Le indicio de requesta %s ha essite autorisate. Per favor excambia lo pro "
+#~ "un indicio de accesso."
+
+#~ msgid "Deny"
+#~ msgstr "Refusar"
+
+#~ msgid "Path to locales"
+#~ msgstr "Cammino al localitates"
+
+#~ msgid "Theme server"
+#~ msgstr "Servitor de themas"
+
+#~ msgid "Theme path"
+#~ msgstr "Cammino al themas"
+
+#~ msgid "Background server"
+#~ msgstr "Servitor de fundos"
+
+#~ msgid "Background path"
+#~ msgstr "Cammino al fundos"
+
+#~ msgid "Background directory"
+#~ msgstr "Directorio al fundos"
diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po
index 14ec3cdc33..1377e17de3 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:51+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:37+0000\n"
 "Language-Team: Icelandic \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -98,14 +98,15 @@ msgstr "Vista"
 msgid "No such page."
 msgstr "Ekkert þannig merki."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -200,12 +201,13 @@ msgstr "%s og vinirnir"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Færslur frá %1$s og vinum á %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +235,7 @@ msgstr "Aðferð í forritsskilum fannst ekki!"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -309,43 +311,61 @@ msgstr "Mistókst að loka á notanda."
 msgid "Unblock user failed."
 msgstr "Mistókst að opna fyrir notanda."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, fuzzy, php-format
 msgid "Direct messages from %s"
 msgstr "Bein skilaboð til %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Öll bein skilaboð send frá %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Bein skilaboð til %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Öll bein skilaboð til %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Enginn texti í skilaboðum!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Þetta er of langt. Hámarkslengd babls er %d tákn."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Þetta er of langt. Hámarkslengd babls er %d tákn."
+msgstr[1] "Þetta er of langt. Hámarkslengd babls er %d tákn."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Móttakandi fannst ekki."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Gat ekki sent bein skilaboð til notenda sem eru ekki vinir þínir."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Ekki senda þér skilaboð. Þú getur sagt þetta í hljóði við sjálfa(n) þig í "
+"staðinn."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -537,16 +557,21 @@ msgstr "Hópsaðgerðir"
 msgid "Upload failed."
 msgstr "Misheppnuð skipun"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Ótækt bablinnihald"
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
 #, fuzzy
-msgid "Invalid token."
+msgid "Invalid request token."
 msgstr "Ótæk stærð."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -564,37 +589,25 @@ msgstr "Ótæk stærð."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Það kom upp vandamál með setutókann þinn. Vinsamlegast reyndu aftur."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 #, fuzzy
 msgid "Invalid nickname / password!"
 msgstr "Ótækt notendanafn eða lykilorð."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 #, fuzzy
 msgid "Database error deleting OAuth application user."
 msgstr "Villa kom upp í stillingu notanda."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 #, fuzzy
 msgid "Database error inserting OAuth application user."
 msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -603,15 +616,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Bjóst ekki við innsendingu eyðublaðs."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr ""
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -620,11 +633,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Aðgangur"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -633,22 +646,45 @@ msgid "Nickname"
 msgstr "Stuttnefni"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Lykilorð"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr ""
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Hætta við"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 #, fuzzy
 msgid "Allow"
 msgstr "Allt"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+msgid "Authorize access to your account information."
+msgstr ""
+
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Enginn staðfestingarlykill."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Þú ert ekki áskrifandi."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
@@ -814,7 +850,8 @@ msgid "Preview"
 msgstr "Forsýn"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Eyða"
 
@@ -870,12 +907,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Athugasemd"
@@ -889,12 +927,13 @@ msgstr "Opna á þennan notanda"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
 msgid "Yes"
@@ -913,6 +952,7 @@ msgstr "Mistókst að vista upplýsingar um notendalokun"
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1043,7 +1083,7 @@ msgstr "Þú ert ekki meðlimur í þessum hópi."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Það komu upp vandamál varðandi setutókann þinn."
 
@@ -1070,6 +1110,56 @@ msgstr "Get ekki eytt þessu babli."
 msgid "Delete this application"
 msgstr "Eyða þessu babli"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "Ekkert stuttnefni."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Þú ert ekki meðlimur í þessum hópi."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Gat ekki uppfært hóp."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "Staða %1$s á %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Eyða"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Get ekki eytt þessu babli."
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Eyða þessu babli"
+
 #. 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
@@ -1147,59 +1237,69 @@ msgstr ""
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 #, fuzzy
 msgid "Invalid logo URL."
 msgstr "Ótæk stærð."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Ótæk stærð."
+
+#: actions/designadminpanel.php:341
 #, fuzzy, php-format
 msgid "Theme not available: %s."
 msgstr "Þessi síða er ekki aðgengileg í "
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 #, fuzzy
 msgid "Change logo"
 msgstr "Breyta"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Babl vefsíðunnar"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Babl vefsíðunnar"
+
+#: actions/designadminpanel.php:466
 #, fuzzy
 msgid "Change theme"
 msgstr "Breyta"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 #, fuzzy
 msgid "Site theme"
 msgstr "Babl vefsíðunnar"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 #, fuzzy
 msgid "Theme for the site."
 msgstr "Skrá þig út af síðunni"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "Babl vefsíðunnar"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr ""
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr ""
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, fuzzy, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1207,70 +1307,70 @@ msgid ""
 msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr ""
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr ""
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr ""
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr ""
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 #, fuzzy
 msgid "Change colours"
 msgstr "Breyta lykilorðinu þínu"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 #, fuzzy
 msgid "Content"
 msgstr "Tengjast"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 #, fuzzy
 msgid "Sidebar"
 msgstr "Leita"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Texti"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 #, fuzzy
 msgid "Links"
 msgstr "Innskráning"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr ""
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr ""
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr ""
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1280,7 +1380,7 @@ msgstr ""
 msgid "Save"
 msgstr "Vista"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr ""
 
@@ -1772,7 +1872,7 @@ msgstr "Gat ekki breytt beiðnistókum í aðgangstóka."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Óþekkt útgáfa OMB samskiptamátans."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu"
@@ -2375,11 +2475,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "Ekkert stuttnefni."
-
 #: actions/joingroup.php:141
 #, fuzzy, php-format
 msgid "%1$s joined group %2$s"
@@ -2633,6 +2728,11 @@ msgstr "Þú getur ekki sent þessum notanda skilaboð."
 msgid "No content!"
 msgstr "Ekkert innihald!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Þetta er of langt. Hámarkslengd babls er %d tákn."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Enginn móttökuaðili tilgreindur."
@@ -2795,7 +2895,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Enginn stuðningur við gagnasnið."
 
@@ -2950,157 +3050,173 @@ msgstr ""
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, fuzzy, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Þessi síða er ekki aðgengileg í "
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, fuzzy, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Þessi síða er ekki aðgengileg í "
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "Þessi síða er ekki aðgengileg í "
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Þessi síða er ekki aðgengileg í "
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 #, fuzzy
 msgid "Site"
 msgstr "Bjóða"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 #, fuzzy
 msgid "Server"
 msgstr "Endurheimta"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 #, fuzzy
 msgid "Site path"
 msgstr "Babl vefsíðunnar"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
+#: actions/pathsadminpanel.php:247
+msgid "Locale Directory"
 msgstr ""
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr ""
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr ""
-
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:279
+#: actions/pathsadminpanel.php:265
 #, fuzzy
-msgid "Avatars"
-msgstr "Mynd"
+msgid "Server for themes"
+msgstr "Skrá þig út af síðunni"
 
-#: actions/pathsadminpanel.php:284
-#, fuzzy
-msgid "Avatar server"
-msgstr "Stillingar fyrir mynd"
-
-#: actions/pathsadminpanel.php:288
-#, fuzzy
-msgid "Avatar path"
-msgstr "Mynd hefur verið uppfærð."
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr ""
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr ""
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:320
-#, fuzzy
-msgid "SSL"
-msgstr "SMS"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-#, fuzzy
-msgid "Never"
-msgstr "Endurheimta"
-
-#: actions/pathsadminpanel.php:324
-#, fuzzy
-msgid "Sometimes"
-msgstr "Babl"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr ""
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 #, fuzzy
 msgid "SSL server"
 msgstr "Endurheimta"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Babl vefsíðunnar"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+msgid "Directory"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+#, fuzzy
+msgid "Avatars"
+msgstr "Mynd"
+
+#: actions/pathsadminpanel.php:293
+#, fuzzy
+msgid "Avatar server"
+msgstr "Stillingar fyrir mynd"
+
+#: actions/pathsadminpanel.php:297
+#, fuzzy
+msgid "Avatar path"
+msgstr "Mynd hefur verið uppfærð."
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr ""
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr ""
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr ""
+
+#: actions/pathsadminpanel.php:366
+#, fuzzy
+msgid "SSL"
+msgstr "SMS"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+#, fuzzy
+msgid "Never"
+msgstr "Endurheimta"
+
+#: actions/pathsadminpanel.php:371
+#, fuzzy
+msgid "Sometimes"
+msgstr "Babl"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr ""
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 #, fuzzy
 msgid "Save paths"
 msgstr "Babl vefsíðunnar"
@@ -3870,7 +3986,7 @@ msgstr "Uppröðun"
 msgid "Description"
 msgstr "Lýsing"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Tölfræði"
@@ -4004,46 +4120,46 @@ msgstr ""
 msgid "Group actions"
 msgstr "Hópsaðgerðir"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr ""
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr ""
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr ""
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, fuzzy, php-format
 msgid "FOAF for %s group"
 msgstr "%s hópurinn"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Meðlimir"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Allir meðlimir"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 #, fuzzy
 msgid "Created"
 msgstr "Í sviðsljósinu"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4053,7 +4169,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4062,7 +4178,7 @@ msgid ""
 "their life and interests. "
 msgstr ""
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 #, fuzzy
 msgid "Admins"
 msgstr "Stjórnandi"
@@ -5011,7 +5127,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 #, fuzzy
 msgid "Version"
 msgstr "Persónulegt"
@@ -5254,7 +5370,7 @@ msgid "Unable to save tag."
 msgstr "Gat ekki vistað merki."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 #, fuzzy
 msgid "You have been banned from subscribing."
 msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi"
@@ -5379,44 +5495,44 @@ msgid "Untitled page"
 msgstr "Ónafngreind síða"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Stikl aðalsíðu"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Persónuleg síða og vinarás"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 #, fuzzy
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Persónulegt"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Breyta lykilorðinu þínu"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Gat ekki framsent til vefþjóns: %s"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Tengjast"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
@@ -5424,84 +5540,84 @@ msgstr "Stikl aðalsíðu"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 #, fuzzy
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Stjórnandi"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, fuzzy, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 #, fuzzy
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Bjóða"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Skrá þig inn á síðuna"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Einkennismerki"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Búa til nýjan hóp"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 #, fuzzy
 msgctxt "MENU"
 msgid "Register"
 msgstr "Nýskrá"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Skrá þig inn á síðuna"
 
-#: lib/action.php:503
+#: lib/action.php:531
 #, fuzzy
 msgctxt "MENU"
 msgid "Login"
 msgstr "Innskráning"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Hjálp"
 
-#: lib/action.php:509
+#: lib/action.php:537
 #, fuzzy
 msgctxt "MENU"
 msgid "Help"
 msgstr "Hjálp"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Leita að fólki eða texta"
 
-#: lib/action.php:515
+#: lib/action.php:543
 #, fuzzy
 msgctxt "MENU"
 msgid "Search"
@@ -5509,68 +5625,68 @@ msgstr "Leita"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Babl vefsíðunnar"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Staðbundin sýn"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Babl síðunnar"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Stikl undirsíðu"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Hjálp"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Um"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Spurt og svarað"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Friðhelgi"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Frumþula"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Tengiliður"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 #, fuzzy
 msgid "Badge"
 msgstr "Pot"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Hugbúnaðarleyfi StatusNet"
 
@@ -5578,7 +5694,7 @@ msgstr "Hugbúnaðarleyfi StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5588,7 +5704,7 @@ msgstr ""
 "broughtbyurl%%). "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** er örbloggsþjónusta."
@@ -5597,7 +5713,7 @@ msgstr "**%%site.name%%** er örbloggsþjónusta."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5609,51 +5725,51 @@ msgstr ""
 "licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 #, fuzzy
 msgid "Site content license"
 msgstr "Hugbúnaðarleyfi StatusNet"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Uppröðun"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Eftir"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Áður"
 
@@ -5807,12 +5923,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5898,11 +6014,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Hætta við"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5929,11 +6040,6 @@ msgstr "Endurheimta"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr ""
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6363,14 +6469,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Færslur sendar með SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Tengjast"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr ""
@@ -7077,24 +7183,24 @@ msgstr "Pot"
 msgid "Send a nudge to this user"
 msgstr "Ýta við þessum notanda"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Gat ekki sett inn nýja áskrift."
 
@@ -7462,17 +7568,17 @@ msgid "Moderator"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "fyrir nokkrum sekúndum"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "fyrir um einni mínútu síðan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7480,12 +7586,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "fyrir um einum klukkutíma síðan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7493,12 +7599,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "fyrir um einum degi síðan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7506,12 +7612,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "fyrir um einum mánuði síðan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7519,7 +7625,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "fyrir um einu ári síðan"
 
diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po
index 2b95919900..573448d798 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:52+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:40+0000\n"
 "Language-Team: Italian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -94,14 +94,15 @@ msgstr "Salva"
 msgid "No such page."
 msgstr "Pagina inesistente."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +202,13 @@ msgstr "Tu e i tuoi amici"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Messaggi da %1$s e amici su %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +235,7 @@ msgstr "Metodo delle API non trovato."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -309,43 +311,61 @@ msgstr "Blocco dell'utente non riuscito."
 msgid "Unblock user failed."
 msgstr "Sblocco dell'utente non riuscito."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Messaggi diretti da %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Tutti i messaggi diretti inviati da %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Messaggi diretti a %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Tutti i messaggi diretti inviati a %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Nessun testo nel messaggio!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Troppo lungo. La dimensione massima di un messaggio è di %d caratteri."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+"Troppo lungo. La dimensione massima di un messaggio è di %d caratteri."
+msgstr[1] ""
+"Troppo lungo. La dimensione massima di un messaggio è di %d caratteri."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Destinatario non trovato."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Non puoi inviare messaggi diretti a utenti che non sono tuoi amici."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -527,15 +547,21 @@ msgstr "Gruppi su %s"
 msgid "Upload failed."
 msgstr "Caricamento non riuscito."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Token di accesso specificato non valido."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Nessun parametro oauth_token fornito."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Token non valido."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -554,36 +580,22 @@ msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 "Si è verificato un problema con il tuo token di sessione. Prova di nuovo."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Nome utente o password non valido."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Errore nel database nell'eliminare l'applicazione utente OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Errore nel database nell'inserire l'applicazione utente OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Il token di richiesta %s è stato autorizzato. Scambiarlo con un token di "
-"accesso."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Il token di richiesta %s è stato rifiutato o revocato."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -592,15 +604,15 @@ msgstr "Il token di richiesta %s è stato rifiutato o revocato."
 msgid "Unexpected form submission."
 msgstr "Invio del modulo inaspettato."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Un'applicazione vorrebbe collegarsi al tuo account"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Consenti o nega l'accesso"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -612,11 +624,11 @@ msgstr ""
 "accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Account"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -625,23 +637,47 @@ msgid "Nickname"
 msgstr "Soprannome"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Password"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Nega"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Annulla"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Consenti"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Consenti o nega l'accesso alle informazioni del tuo account."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Conferma della messaggistica annullata."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Il token di richiesta %s è stato rifiutato o revocato."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Autorizzazione non presente."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Questo metodo richiede POST o DELETE."
@@ -804,7 +840,8 @@ msgid "Preview"
 msgstr "Anteprima"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Elimina"
 
@@ -860,12 +897,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "No"
@@ -878,12 +916,13 @@ msgstr "Non bloccare questo utente"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Sì"
@@ -901,6 +940,7 @@ msgstr "Salvataggio delle informazioni per il blocco non riuscito."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1026,7 +1066,7 @@ msgstr "Questa applicazione non è di tua proprietà."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Si è verificato un problema con il tuo token di sessione."
 
@@ -1053,6 +1093,58 @@ msgstr "Non eliminare l'applicazione"
 msgid "Delete this application"
 msgstr "Elimina l'applicazione"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Devi eseguire l'accesso per lasciare un gruppo."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Nessun soprannome o ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Non fai parte di questo gruppo."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Impossibile aggiornare il gruppo."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s ha lasciato il gruppo %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Elimina utente"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Vuoi eliminare questo utente? Questa azione eliminerà tutti i dati "
+"dell'utente dal database, senza una copia di sicurezza."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Non eliminare il messaggio"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Elimina questo utente"
+
 #. 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
@@ -1129,53 +1221,63 @@ msgstr "Aspetto"
 msgid "Design settings for this StatusNet site"
 msgstr "Impostazioni dell'aspetto per questo sito StatusNet"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "URL del logo non valido."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "URL del logo non valido."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Tema non disponibile: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Modifica logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo del sito"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo del sito"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Modifica tema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Tema del sito"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Tema per questo sito."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Tema personalizzato"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Puoi caricare un tema per StatusNet personalizzato come un file ZIP."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Modifica l'immagine di sfondo"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Sfondo"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1185,66 +1287,66 @@ msgstr ""
 "file è di %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "On"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Off"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Abilita o disabilita l'immagine di sfondo."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Affianca l'immagine di sfondo"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Modifica colori"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Contenuto"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barra laterale"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Testo"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Collegamenti"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avanzate"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS personalizzato"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Usa predefiniti"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Ripristina i valori predefiniti"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Reimposta i valori predefiniti"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1254,7 +1356,7 @@ msgstr "Reimposta i valori predefiniti"
 msgid "Save"
 msgstr "Salva"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Salva aspetto"
 
@@ -1731,7 +1833,7 @@ msgstr "Impossibile convertire il token di richiesta in uno di accesso."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Il servizio remoto usa una versione del protocollo OMB sconosciuta."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Errore nell'aggiornare il profilo remoto."
 
@@ -2327,10 +2429,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Devi eseguire l'accesso per iscriverti a un gruppo."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Nessun soprannome o ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2575,6 +2673,11 @@ msgstr "Non puoi inviare un messaggio a questo utente."
 msgid "No content!"
 msgstr "Nessun contenuto!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Troppo lungo. La dimensione massima di un messaggio è di %d caratteri."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Nessun destinatario specificato."
@@ -2736,7 +2839,7 @@ msgstr "Solo URL %s attraverso HTTP semplice."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Non è un formato di dati supportato."
 
@@ -2886,147 +2989,166 @@ msgstr "Percorsi"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Percorso e impostazioni del server per questo sito StatusNet"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Directory del tema non leggibile: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Directory delle immagini degli utenti non scrivibile: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Directory degli sfondi non scrivibile: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Directory delle localizzazioni non leggibile: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Server SSL non valido. La lunghezza massima è di 255 caratteri."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Sito"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Server"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Nome host del server"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Percorso"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Percorso del sito"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Percorso alle localizzazioni"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Directory del tema"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Percorso della directory alle localizzazioni"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "URL semplici"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Usare gli URL semplici (più leggibili e facili da ricordare)?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Tema"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Server del tema"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Tema per questo sito."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Percorso del tema"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Directory del tema"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Immagini"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Server dell'immagine"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Percorso dell'immagine"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Directory dell'immagine"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Sfondi"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Server dello sfondo"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Percorso dello sfondo"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Directory dello sfondo"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Mai"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Qualche volta"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Sempre"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Usa SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Quando usare SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Server SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Percorso del sito"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Directory del tema"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Percorso della directory alle localizzazioni"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Immagini"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Server dell'immagine"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Percorso dell'immagine"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Directory dell'immagine"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Sfondi"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Allegati"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Mai"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Qualche volta"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Sempre"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Usa SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Quando usare SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Server a cui dirigere le richieste SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Salva percorsi"
 
@@ -3792,7 +3914,7 @@ msgstr "Organizzazione"
 msgid "Description"
 msgstr "Descrizione"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistiche"
@@ -3933,45 +4055,45 @@ msgstr "Alias"
 msgid "Group actions"
 msgstr "Azioni dei gruppi"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, 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:344
+#: actions/showgroup.php:350
 #, 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:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Feed dei messaggi per il gruppo %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF per il gruppo %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Membri"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Tutti i membri"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Creato"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3987,7 +4109,7 @@ msgstr ""
 "stesso](%%%%action.register%%%%) per far parte di questo gruppo e di molti "
 "altri! ([Maggiori informazioni](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3999,7 +4121,7 @@ msgstr ""
 "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero "
 "[StatusNet](http://status.net/)."
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Amministratori"
 
@@ -4954,7 +5076,7 @@ msgid "Plugins"
 msgstr "Plugin"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versione"
 
@@ -5193,7 +5315,7 @@ msgid "Unable to save tag."
 msgstr "Impossibile salvare l'etichetta."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Non ti è possibile abbonarti."
 
@@ -5313,185 +5435,185 @@ msgid "Untitled page"
 msgstr "Pagina senza nome"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Esplorazione sito primaria"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Profilo personale e attività degli amici"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personale"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Modifica la tua email, immagine, password o il tuo profilo"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Connettiti con altri servizi"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Connetti"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Modifica la configurazione del sito"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Amministra"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Invita amici e colleghi a seguirti su %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Invita"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Termina la tua sessione sul sito"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Esci"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Crea un account"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrati"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Accedi al sito"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Accedi"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Aiutami!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Aiuto"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Cerca persone o del testo"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Cerca"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Messaggio del sito"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Viste locali"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Pagina messaggio"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Esplorazione secondaria del sito"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Aiuto"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Informazioni"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "TOS"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privacy"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Sorgenti"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contatti"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Badge"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licenza del software StatusNet"
 
@@ -5499,7 +5621,7 @@ msgstr "Licenza del software StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5509,7 +5631,7 @@ msgstr ""
 "(%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** è un servizio di microblog."
@@ -5518,7 +5640,7 @@ msgstr "**%%site.name%%** è un servizio di microblog."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5530,27 +5652,27 @@ msgstr ""
 "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licenza del contenuto del sito"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "I contenuti e i dati di %1$s sono privati e confidenziali."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 "I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti "
@@ -5558,7 +5680,7 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
@@ -5566,19 +5688,19 @@ msgstr ""
 "licenza %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paginazione"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Successivi"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Precedenti"
 
@@ -5720,12 +5842,12 @@ msgid "Could not authenticate you."
 msgstr "Impossibile autenticarti."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Tentativo di revocare un token sconosciuto."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Eliminazione del token revocato non riuscita."
 
@@ -5809,11 +5931,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Annulla"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5840,11 +5957,6 @@ msgstr "Revoca"
 msgid "author element must contain a name element."
 msgstr "L'elemento author deve contenere un elemento name."
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Allegati"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6311,14 +6423,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Messaggi via SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Connessioni"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Applicazioni collegate autorizzate"
@@ -7119,24 +7231,24 @@ msgstr "Richiama"
 msgid "Send a nudge to this user"
 msgstr "Invia un richiamo a questo utente"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Errore nell'inserire il nuovo profilo."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Errore nell'inserire l'immagine."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Errore nell'inserire il profilo remoto."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Messaggio duplicato."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Impossibile inserire un nuovo abbonamento."
 
@@ -7492,17 +7604,17 @@ msgid "Moderator"
 msgstr "Moderatore"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "pochi secondi fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "circa un minuto fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7510,12 +7622,12 @@ msgstr[0] "circa un minuto fa"
 msgstr[1] "circa %d minuti fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "circa un'ora fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7523,12 +7635,12 @@ msgstr[0] "circa un'ora fa"
 msgstr[1] "circa %d ore fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "circa un giorno fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7536,12 +7648,12 @@ msgstr[0] "circa un giorno fa"
 msgstr[1] "circa %d giorni fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "circa un mese fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7549,7 +7661,7 @@ msgstr[0] "circa un mese fa"
 msgstr[1] "circa %d mesi fa"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "circa un anno fa"
 
@@ -7576,3 +7688,31 @@ msgstr "Nessun utente specificato: viene usato l'utente di backup."
 #, php-format
 msgid "%d entries in backup."
 msgstr "%d voci nel backup."
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Il token di richiesta %s è stato autorizzato. Scambiarlo con un token di "
+#~ "accesso."
+
+#~ msgid "Deny"
+#~ msgstr "Nega"
+
+#~ msgid "Path to locales"
+#~ msgstr "Percorso alle localizzazioni"
+
+#~ msgid "Theme server"
+#~ msgstr "Server del tema"
+
+#~ msgid "Theme path"
+#~ msgstr "Percorso del tema"
+
+#~ msgid "Background server"
+#~ msgstr "Server dello sfondo"
+
+#~ msgid "Background path"
+#~ msgstr "Percorso dello sfondo"
+
+#~ msgid "Background directory"
+#~ msgstr "Directory dello sfondo"
diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po
index e371c88569..49bb2fd504 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:54+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:43+0000\n"
 "Language-Team: Japanese \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -94,14 +94,15 @@ msgstr "保存"
 msgid "No such page."
 msgstr "そのようなタグはありません。"
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +202,13 @@ msgstr "あなたと友人"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "%2$s に %1$s と友人からの更新があります!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +235,7 @@ msgstr "API メソッドが見つかりません。"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -310,43 +312,59 @@ msgstr "ユーザのブロックに失敗しました。"
 msgid "Unblock user failed."
 msgstr "ユーザのブロック解除に失敗しました。"
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "%s からのダイレクトメッセージ"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "%s から送られた全てのダイレクトメッセージ"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "%s へのダイレクトメッセージ"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "%s へ送った全てのダイレクトメッセージ"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "メッセージの本文がありません!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "長すぎます。メッセージは最大 %d 字までです。"
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "長すぎます。メッセージは最大 %d 字までです。"
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "受け取り手のユーザが見つかりません。"
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "友人でないユーザにダイレクトメッセージを送ることはできません。"
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"自分自身にメッセージを送ることはできません; かわりに独り言を言いましょう。"
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -531,15 +549,21 @@ msgstr "%s 上のグループ"
 msgid "Upload failed."
 msgstr "ファイルアップロード"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "不正なログイントークンが指定されています。"
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "oauth_token パラメータは提供されませんでした。"
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "不正なトークン。"
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -557,36 +581,22 @@ msgstr "不正なトークン。"
 msgid "There was a problem with your session token. Try again, please."
 msgstr "あなたのセッショントークンに問題がありました。再度お試しください。"
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "不正なユーザ名またはパスワード。"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "OAuth アプリケーションユーザの削除時DBエラー。"
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "OAuth アプリケーションユーザの追加時DBエラー。"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"リクエストトークン %s は承認されました。 アクセストークンとそれを交換してくだ"
-"さい。"
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "リクエストトークン%sは、拒否されて、取り消されました。"
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -595,15 +605,15 @@ msgstr "リクエストトークン%sは、拒否されて、取り消されま
 msgid "Unexpected form submission."
 msgstr "予期せぬフォーム送信です。"
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "アプリケーションはあなたのアカウントに接続したいです"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "アクセスを許可または拒絶"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -612,11 +622,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "アカウント"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -625,23 +635,47 @@ msgid "Nickname"
 msgstr "ニックネーム"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "パスワード"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "拒絶"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "中止"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "許可"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "アカウント情報へのアクセスを許可するか、または拒絶してください。"
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "確認コードがありません。"
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "リクエストトークン%sは、拒否されて、取り消されました。"
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "認証されていません。"
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "このメソッドには POST か DELETE が必要です。"
@@ -802,7 +836,8 @@ msgid "Preview"
 msgstr "プレビュー"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "削除"
 
@@ -860,12 +895,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "ノート"
@@ -878,12 +914,13 @@ msgstr "このユーザをアンブロックする"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
 msgid "Yes"
@@ -902,6 +939,7 @@ msgstr "ブロック情報の保存に失敗しました。"
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1027,7 +1065,7 @@ msgstr "このアプリケーションのオーナーではありません。"
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "あなたのセッショントークンに関する問題がありました。"
 
@@ -1055,6 +1093,59 @@ msgstr "このアプリケーションを削除しないでください"
 msgid "Delete this application"
 msgstr "このアプリケーションを削除"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "グループから離れるにはログインしていなければなりません。"
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "ニックネームがありません。"
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "このグループのメンバーではありません。"
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "グループを更新できません。"
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s はグループ %2$s に残りました。"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "ユーザ削除"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ"
+"ベースからユーザに関するすべてのデータをクリアします。"
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "このつぶやきを削除できません。"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "このユーザを削除"
+
 #. 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
@@ -1131,54 +1222,64 @@ msgstr "デザイン"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "不正なロゴ URL"
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "不正なロゴ URL"
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "IM が利用不可。"
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "ロゴの変更"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "サイトロゴ"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "サイトロゴ"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "テーマ変更"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "サイトテーマ"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "サイトのテーマ"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "サイトテーマ"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "バックグラウンドイメージの変更"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "バックグラウンド"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1188,66 +1289,66 @@ msgstr ""
 "イズは %1$s。"
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "オン"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "オフ"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "バックグラウンドイメージのオンまたはオフ。"
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "タイルバックグラウンドイメージ"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "色の変更"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "内容"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "サイドバー"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "テキスト"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "リンク"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "デフォルトを使用"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "デフォルトデザインに戻す。"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "デフォルトへリセットする"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1257,7 +1358,7 @@ msgstr "デフォルトへリセットする"
 msgid "Save"
 msgstr "保存"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "デザインの保存"
 
@@ -1739,7 +1840,7 @@ msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 "リモートサービスは、不明なバージョンの OMB プロトコルを使用しています。"
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "リモートプロファイル更新エラー"
@@ -2339,11 +2440,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "グループに入るためにはログインしなければなりません。"
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "ニックネームがありません。"
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2587,6 +2683,11 @@ msgstr "このユーザにメッセージを送ることはできません。"
 msgid "No content!"
 msgstr "コンテンツがありません!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "長すぎます。メッセージは最大 %d 字までです。"
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "受取人が書かれていません。"
@@ -2749,7 +2850,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "サポートされていないデータ形式。"
 
@@ -2899,147 +3000,166 @@ msgstr "パス"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "テーマディレクトリ"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "アバターディレクトリ"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "バックグラウンドディレクトリ"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "場所ディレクトリが読み込めません: %s"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "不正な SSL サーバー。最大 255 文字まで。"
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "サイト"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "サーバー"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "サイトのサーバーホスト名"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "パス"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "サイトパス"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "ロケールのパス"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "テーマディレクトリ"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "ロケールへのディレクトリパス"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Fancy URL (読みやすく忘れにくい) を使用しますか?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "テーマ"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "テーマサーバー"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "サイトのテーマ"
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "テーマパス"
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "テーマディレクトリ"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "アバター"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "アバターサーバー"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "アバターパス"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "アバターディレクトリ"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "バックグラウンド"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "バックグラウンドサーバー"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "バックグラウンドパス"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "バックグラウンドディレクトリ"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "ときどき"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "いつも"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "SSL 使用"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "SSL 使用時"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSLサーバ"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "サイトパス"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "テーマディレクトリ"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "ロケールへのディレクトリパス"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "アバター"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "アバターサーバー"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "アバターパス"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "アバターディレクトリ"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "バックグラウンド"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "添付"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr ""
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "ときどき"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "いつも"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "SSL 使用"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "SSL 使用時"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "ダイレクト SSL リクエストを向けるサーバ"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "保存パス"
 
@@ -3802,7 +3922,7 @@ msgstr "組織"
 msgid "Description"
 msgstr "概要"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "統計データ"
@@ -3945,45 +4065,45 @@ msgstr "別名"
 msgid "Group actions"
 msgstr "グループアクション"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "%s グループのつぶやきフィード (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "%s グループのつぶやきフィード (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "%s グループのつぶやきフィード (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "%s グループの FOAF"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "メンバー"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "全てのメンバー"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "作成日"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3998,7 +4118,7 @@ msgstr ""
 "する短いメッセージを共有します。[今すぐ参加](%%%%action.register%%%%) してこ"
 "のグループの一員になりましょう! ([もっと読む](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4011,7 +4131,7 @@ msgstr ""
 "wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関"
 "する短いメッセージを共有します。"
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "管理者"
 
@@ -4970,7 +5090,7 @@ msgid "Plugins"
 msgstr "プラグイン"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "バージョン"
 
@@ -5209,7 +5329,7 @@ msgid "Unable to save tag."
 msgstr "タグをを保存できません。"
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "あなたはフォローが禁止されました。"
 
@@ -5330,126 +5450,126 @@ msgid "Untitled page"
 msgstr "名称未設定ページ"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "プライマリサイトナビゲーション"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "パーソナルプロファイルと友人のタイムライン"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 #, fuzzy
 msgctxt "MENU"
 msgid "Personal"
 msgstr "パーソナル"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "パスワードの変更"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "接続"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "接続"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "基本サイト設定"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 #, fuzzy
 msgctxt "MENU"
 msgid "Admin"
 msgstr "管理者"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, fuzzy, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "友人や同僚が %s で加わるよう誘ってください。"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 #, fuzzy
 msgctxt "MENU"
 msgid "Invite"
 msgstr "招待"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "サイトのテーマ"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "ロゴ"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "新しいグループを作成"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 #, fuzzy
 msgctxt "MENU"
 msgid "Register"
 msgstr "登録"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "サイトへログイン"
 
-#: lib/action.php:503
+#: lib/action.php:531
 #, fuzzy
 msgctxt "MENU"
 msgid "Login"
 msgstr "ログイン"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "ヘルプ"
 
-#: lib/action.php:509
+#: lib/action.php:537
 #, fuzzy
 msgctxt "MENU"
 msgid "Help"
 msgstr "ヘルプ"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "もっとグループを検索"
 
-#: lib/action.php:515
+#: lib/action.php:543
 #, fuzzy
 msgctxt "MENU"
 msgid "Search"
@@ -5457,67 +5577,67 @@ msgstr "検索"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "サイトつぶやき"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "ローカルビュー"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "ページつぶやき"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "セカンダリサイトナビゲーション"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "ヘルプ"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "About"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "よくある質問"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "プライバシー"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "ソース"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "連絡先"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "バッジ"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet ソフトウェアライセンス"
 
@@ -5525,7 +5645,7 @@ msgstr "StatusNet ソフトウェアライセンス"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5535,7 +5655,7 @@ msgstr ""
 "イクロブログサービスです。 "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** はマイクロブログサービスです。"
@@ -5544,7 +5664,7 @@ msgstr "**%%site.name%%** はマイクロブログサービスです。"
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5556,50 +5676,50 @@ msgstr ""
 "org/licensing/licenses/agpl-3.0.html)。"
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "サイト内容ライセンス"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "ページ化"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "<<後"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "前>>"
 
@@ -5745,12 +5865,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5834,11 +5954,6 @@ msgstr ""
 "このアプリケーションのためのデフォルトアクセス: リードオンリー、またはリード"
 "ライト"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "中止"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 #, fuzzy
@@ -5867,11 +5982,6 @@ msgstr "回復"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "添付"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6297,14 +6407,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "SMSでの更新"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "接続"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "承認された接続アプリケーション"
@@ -7079,24 +7189,24 @@ msgstr "合図"
 msgid "Send a nudge to this user"
 msgstr "このユーザへ合図を送る"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "サブスクリプションを追加できません"
 
@@ -7452,60 +7562,60 @@ msgid "Moderator"
 msgstr "管理"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "数秒前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "約 1 分前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "約 1 時間前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "約 1 日前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "約 1 ヵ月前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "約 1 年前"
 
@@ -7533,3 +7643,31 @@ msgstr "ユーザIDの記述がありません。"
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "リクエストトークン %s は承認されました。 アクセストークンとそれを交換して"
+#~ "ください。"
+
+#~ msgid "Deny"
+#~ msgstr "拒絶"
+
+#~ msgid "Path to locales"
+#~ msgstr "ロケールのパス"
+
+#~ msgid "Theme server"
+#~ msgstr "テーマサーバー"
+
+#~ msgid "Theme path"
+#~ msgstr "テーマパス"
+
+#~ msgid "Background server"
+#~ msgstr "バックグラウンドサーバー"
+
+#~ msgid "Background path"
+#~ msgstr "バックグラウンドパス"
+
+#~ msgid "Background directory"
+#~ msgstr "バックグラウンドディレクトリ"
diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po
index ca4362803f..813169e5cf 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:55+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:47+0000\n"
 "Language-Team: Georgian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -90,14 +90,15 @@ msgstr "შეინახე"
 msgid "No such page."
 msgstr "ასეთი გვერდი არ არსებობს."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -197,12 +198,13 @@ msgstr "შენ და მეგობრები"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr " %1$s და მეგობრების განახლებები %2$s-ზე!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -229,7 +231,7 @@ msgstr "API მეთოდი ვერ მოიძებნა."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -305,43 +307,58 @@ msgstr "მომხმარებლის დაბლოკვა ვერ
 msgid "Unblock user failed."
 msgstr "ვერ მოხერხდა მომხმარებელზე ბლოკის მოხსნა."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "პირდაპირი შეტყობინებები %s-სგან"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "%s-ს მიერ გამოგზავნილი ყველა პირდაპირი შეტყობინება"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "%s-სთვის გაგზავნილი პირდაპირი შეტყობინებები"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "%s-სთვის გაგზავნილი ყველა პირდაპირი შეტყობინება"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "შეტყობინების ტექსტი არ არის!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "ეს ძალიან გრძელია. შეტყობინებაში დასაშვებია %d სიმბოლო."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "ეს ძალიან გრძელია. შეტყობინებაში დასაშვებია %d სიმბოლო."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "მიმღები მომხმარებელი ვერ მოიძებნა."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "ვერ გაუგზავნი პირდაპირ შეტყობინებას იმას, ვისთანაც არ მეგობრობ."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "ნუ გაუგზავნი შეტყობინებას საკუთარ თავს; უბრალოდ ჩუმად ჩაუჩურჩულე."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -521,15 +538,20 @@ msgstr "ჯგუფები %s-ზე"
 msgid "Upload failed."
 msgstr "ატვირთვა ვერ მოხერხდა."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+msgid "Invalid request token or verifier."
+msgstr ""
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "oauth_token პარამეტრი არ არის მოწოდებული."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
-msgstr ""
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
+msgstr "არასწორი როლი."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -547,34 +569,22 @@ msgstr ""
 msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "არასწორი მეტსახელი / პაროლი!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის წაშლისას."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -583,15 +593,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr ""
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "აპლიკაციას უნდა რომ დაუკავშირდეს თქვენს ანგარიშს"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "დოუშვი ან აკრძალე შესვლა"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -600,11 +610,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "ანგარიში"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -613,23 +623,47 @@ msgid "Nickname"
 msgstr "მეტსახელი"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "პაროლი"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "აკრძალვა"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "გაუქმება"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "დაშვება"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "დაუშვი ან აკრძალე წვდომა თქვენი ანგარიშის ინფორმაციაზე."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "IM დასტური გაუქმდა."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "თქვენ არ ხართ ავტორიზირებული."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "ეს მეთოდი მოითხოვს POST-ს ან DELETE-ს."
@@ -791,7 +825,8 @@ msgid "Preview"
 msgstr "წინასწარი გადახედვა"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "წაშლა"
 
@@ -844,12 +879,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "არა"
@@ -862,12 +898,13 @@ msgstr "არ დაბლოკო ეს მომხმარებელი
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "დიახ"
@@ -885,6 +922,7 @@ msgstr "დაბლოკვის შესახებ ინფორმა
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1010,7 +1048,7 @@ msgstr "თქვენ არ ხართ ამ აპლიკაციი
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1037,6 +1075,58 @@ msgstr "არ წაშალო ეს აპლიკაცია"
 msgid "Delete this application"
 msgstr "აპლიკაციის წაშლა"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "გჯუფის დატოვებისათვის საჭიროა ავტორიზაცია."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "მეტსახელი ან ID უცნობია."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "თვენ არ ხართ ამ ჯგუფის წევრი."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "ჯგუფის განახლება ვერ მოხერხდა."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s-მა დატოვა ჯგუფი %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "მომხმარებლის წაშლა"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"ნამდვილად გნებავთ ამ მომხმარებლის წაშლა? ეს მოქმედება წაშლის ყველა მონაცემს "
+"მომხმარებლის შესახებ სარეზერვო ასლის გარეშე."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "არ წაშალო ეს შეტყობინება"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "ამ მომხმარებლის წაშლა"
+
 #. 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
@@ -1111,54 +1201,64 @@ msgstr "ამ მომხმარებლის წაშლა"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "ლოგოს არასწორი URL-ი"
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "ლოგოს არასწორი URL-ი"
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "იერსახე არ არის ხელმისაწვდომი %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "შეცვალე ლოგო"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "საიტის ლოგო"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "საიტის ლოგო"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "შეცვალე იერსახე"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "საიტის იერსახე"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "იერსახე ამ საიტისთვის"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "საკუთარი იერსახე"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 "თქვენ შეგიძლიათ ატვირთოთ საკუთარი StatusNet–იერსახე .ZIP არქივის სახით."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "შეცვალე ფონური სურათი"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "ფონი"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1168,66 +1268,66 @@ msgstr ""
 "ზომაა %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "ჩართვა"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "გამორთვა"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "ჩართე ან გამორთე ფონური სურათის ფუნქცია."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "გაამრავლე ფონური სურათი"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "შეცვალე ფერები"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "შიგთავსი"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "გვერდითი პანელი"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "ტექსტი"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "ბმულები"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "მეტი პარამეტრები"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "საკუთარი CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "გამოიყენე პირვანდელი მდგომარეობა"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "დააბრუნე პირვანდელი დიზაინი"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "პირვანდელის პარამეტრების დაბრუნება"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1237,7 +1337,7 @@ msgstr "პირვანდელის პარამეტრების 
 msgid "Save"
 msgstr "შენახვა"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "შეინახე დიზაინი"
 
@@ -1711,7 +1811,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "დაშორებული სერვისი OMB პროტოკოლის უცნობ ვერსიას იყენებს."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "შეცდომა დაშორებული პროფილის განახლებისას."
 
@@ -2307,10 +2407,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "გჯუფში გაწევრიანებისათვის საჭიროა ავტორიზაცია."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "მეტსახელი ან ID უცნობია."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2553,6 +2649,11 @@ msgstr "ამ მომხმარებელს შეტყობინე
 msgid "No content!"
 msgstr "შიგთავსი არ არის!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "ეს ძალიან გრძელია. შეტყობინებაში დასაშვებია %d სიმბოლო."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "მიმღები მითითებული არ არის."
@@ -2711,7 +2812,7 @@ msgstr "გთხოვთ გამოიყენოთ მხოლოდ %s
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "მონაცემთა ფორმატი მხარდაჭერილი არ არის."
 
@@ -2861,147 +2962,165 @@ msgstr "გზები"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "იერსახის დირექტორია არ არის წაკითხვადი: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "ავატარის დირექტორია არ არის ჩაწერადი: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "ფონის დირექტორია არ არის ჩაწერადი: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "არასწორი SSL სერვერი. მაქსიმალური სიგრძე არის 255 სიმბოლო."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "საიტი"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "სერვერი"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "საიტის სერვერის ჰოსტის სახელი."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "გზა"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "საიტის გზა"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "იერსახის დირექტორია"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "ლამაზი URL–ები"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "გამოვიყენო ლამაზი (მეტად კითხვადი და დასამახსოვრებელი) URL–ები?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "იერსახე"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "იერსახის სერვერი"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "იერსახე ამ საიტისთვის"
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "იერსახის გზა"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "იერსახის დირექტორია"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "ავატარები"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "ავატარების სერვერი"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "ავატარების გზა"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "ავატარების დირექტორია"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "ფონები"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "ფონების სერვერი"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "ფონების გზა"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "ფონების დირექტორია"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "არასდროს"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "ზოგჯერ"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "მუდამ"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "გამოიყენე SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "როდის გამოვიყენო SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL სერვერი"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "საიტის გზა"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "იერსახის დირექტორია"
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "ავატარები"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "ავატარების სერვერი"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "ავატარების გზა"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "ავატარების დირექტორია"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "ფონები"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "მიმაგრებები"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "არასდროს"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "ზოგჯერ"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "მუდამ"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "გამოიყენე SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "როდის გამოვიყენო SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "სერვერი რომელზეც მიემართოს SSL მოთხოვნები"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "გზების დამახსოვრება"
 
@@ -3763,7 +3882,7 @@ msgstr "ორგანიზაცია"
 msgid "Description"
 msgstr "აღწერა"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "სტატისტიკა"
@@ -3902,45 +4021,45 @@ msgstr ""
 msgid "Group actions"
 msgstr ""
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr ""
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr ""
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr ""
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr ""
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "წევრები"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr ""
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "შექმნილია"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3950,7 +4069,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3959,7 +4078,7 @@ msgid ""
 "their life and interests. "
 msgstr ""
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr ""
 
@@ -4903,7 +5022,7 @@ msgid "Plugins"
 msgstr "დამატებები"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "ვერსია"
 
@@ -5143,7 +5262,7 @@ msgid "Unable to save tag."
 msgstr "სანიშნეს დამახსოვრება ვერ ხერხდება."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "თქვენ აგეკრძალათ გამოწერა."
 
@@ -5263,185 +5382,185 @@ msgid "Untitled page"
 msgstr "უსათაურო გვერდი"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "საიტის ძირითადი ნავიგაცია"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "პირადი პროფილი და მეგობრების ნაკადი"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "პირადი"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "შეცვალე ელ. ფოსტა, ავატარი, პაროლი, პროფილი"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "სერვისებთან დაკავშირება"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "კავშირი"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "საიტის კონფიგურაცია"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "ადმინი"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "მოწვევა"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "გასვლა საიტიდან"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "გასვლა"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "გახსენი ანგარიში"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "რეგისტრაცია"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "საიტზე შესვლა"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "შესვლა"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "დამეხმარეთ!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "დახმარება"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "მოძებნე ხალხი ან ტექსტი"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "ძიება"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "საიტის შეტყობინება"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "ლოკალური ხედები"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "გვერდის შეტყობინება"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "საიტის მეორადი ნავიგაცია"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "დახმარება"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "საიტის შესახებ"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "ხდკ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "მპ"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "პირადი"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "წყარო"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "კონტაქტი"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "იარლიყი"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet კოდის ლიცენზია"
 
@@ -5449,7 +5568,7 @@ msgstr "StatusNet კოდის ლიცენზია"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5459,7 +5578,7 @@ msgstr ""
 "(%%site.broughtbyurl%%)-ს მიერ."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** არის მიკრობლოგინგის სერვისი."
@@ -5468,7 +5587,7 @@ msgstr "**%%site.name%%** არის მიკრობლოგინგი
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5480,51 +5599,51 @@ msgstr ""
 "org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "საიტის შიგთავსის ლიცენზია"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "%1$s ის შიგთავსი და მონაცემები არის პირადული და კონფიდენციალური."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "შიგთავსი და მონაცემები %1$s-ის საკუთრებაა. ყველა უფლება დაცულია."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "შიგთავსი და მონაცემები წვლილის შემტანების საკუთრებაა. ყველა უფლება დაცულია."
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "%1$s-ს მთლიანი შიგთავსი და მონაცემები ხელმისაწვდომია %2$s ლიცენზიით."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "გვერდებათ დაყოფა"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "შემდეგი"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "წინა"
 
@@ -5666,12 +5785,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5755,11 +5874,6 @@ msgstr ""
 "შესვლის პირვანდელი მდგომარეობა ამ აპლიკაციისთვის: მხოლოდ წაკითხვადი, ან "
 "კითხვა-წერადი"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "გაუქმება"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5786,11 +5900,6 @@ msgstr "უკუგება"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "მიმაგრებები"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6214,14 +6323,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "განახლებები SMS-თ"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "შეერთებები"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "ავტორიზირებული შეერთებული აპლიკაციები"
@@ -7002,24 +7111,24 @@ msgstr ""
 msgid "Send a nudge to this user"
 msgstr ""
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა."
 
@@ -7373,60 +7482,60 @@ msgid "Moderator"
 msgstr "მოდერატორი"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "რამდენიმე წამის წინ"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "დაახლოებით 1 წუთის წინ"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "დაახლოებით 1 საათის წინ"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "დაახლოებით 1 დღის წინ"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "დაახლოებით 1 თვის წინ"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "დაახლოებით 1 წლის წინ"
 
@@ -7455,3 +7564,21 @@ msgstr "მომხმარებლის ID მითითებული 
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "აკრძალვა"
+
+#~ msgid "Theme server"
+#~ msgstr "იერსახის სერვერი"
+
+#~ msgid "Theme path"
+#~ msgstr "იერსახის გზა"
+
+#~ msgid "Background server"
+#~ msgstr "ფონების სერვერი"
+
+#~ msgid "Background path"
+#~ msgstr "ფონების გზა"
+
+#~ msgid "Background directory"
+#~ msgstr "ფონების დირექტორია"
diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po
index 2f21e358f7..ece7eb83d1 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:56+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:50+0000\n"
 "Language-Team: Korean \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -92,14 +92,15 @@ msgstr "저장"
 msgid "No such page."
 msgstr "해당하는 페이지 없음"
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -195,12 +196,13 @@ msgstr "당신 및 친구들"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -227,7 +229,7 @@ msgstr "API 메서드 발견 안 됨."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -301,43 +303,59 @@ msgstr "이용자 차단에 실패했습니다."
 msgid "Unblock user failed."
 msgstr "이용자 차단 해제에 실패했습니다."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "%s으로부터 직접 메시지"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "%s에서 보낸 모든 직접 메시지"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "%s에게 직접 메시지"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "%s에게 모든 직접 메시지"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "메시지 내용이 없습니다!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "너무 깁니다. 최대 메시지 길이는 %d자 까지입니다."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "너무 깁니다. 최대 메시지 길이는 %d자 까지입니다."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "받는 사용자가 없습니다."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;"
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -520,15 +538,21 @@ msgstr "%s 사이트의 그룹"
 msgid "Upload failed."
 msgstr "실행 실패"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "허용되지 않는 요청입니다."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "토큰이 잘못되었습니다."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -546,34 +570,22 @@ msgstr "토큰이 잘못되었습니다."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "세션토큰에 문제가 있습니다. 다시 시도해주십시오."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "사용자 이름이나 비밀 번호가 틀렸습니다."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "OAuth 응용프로그램 사용자 삭제 중 데이터베이스 오류"
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -582,15 +594,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "잘못된 폼 제출"
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "응용 프로그램이 계정에 연결하려고 할 것입니다."
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "접근 허용 또는 거부"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -602,11 +614,11 @@ msgstr ""
 "$s 계정의 접근을 허용해야 합니다."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "계정"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -615,23 +627,47 @@ msgid "Nickname"
 msgstr "별명"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "비밀 번호"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "거부"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "취소"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "허용"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "계정 정보에 대한 접근을 허용 또는 거부합니다."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "확인 코드가 없습니다."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "당신은 이 프로필에 구독되지 않고있습니다."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "이 메서드는 POST 또는 DELETE를 요구합니다."
@@ -792,7 +828,8 @@ msgid "Preview"
 msgstr "미리보기"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "삭제"
 
@@ -847,12 +884,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "아니오"
@@ -865,12 +903,13 @@ msgstr "이용자를 차단하지 않는다."
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "예"
@@ -888,6 +927,7 @@ msgstr "정보차단을 저장하는데 실패했습니다."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1014,7 +1054,7 @@ msgstr "이 응용프로그램 삭제 않기"
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "당신의 세션토큰관련 문제가 있습니다."
 
@@ -1039,6 +1079,56 @@ msgstr "이 응용프로그램 삭제 않기"
 msgid "Delete this application"
 msgstr "이 응용프로그램 삭제"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "그룹을 떠나기 위해서는 로그인해야 합니다."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "별명이 없습니다."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "당신은 해당 그룹의 멤버가 아닙니다."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "그룹을 업데이트 할 수 없습니다."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s의 상태 (%2$s에서)"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "이용자 삭제"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "이 통지를 지울 수 없습니다."
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "이 사용자 삭제"
+
 #. 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
@@ -1114,53 +1204,63 @@ msgstr "디자인"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "잘못된 로고 URL 입니다."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "잘못된 로고 URL 입니다."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "인스턴트 메신저를 사용할 수 없습니다."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "로고 변경"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "사이트 로고"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "사이트 로고"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "테마 바꾸기"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "사이트 테마"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "사이트에 대한 테마"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "사용자 지정 테마"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "배경 이미지 바꾸기"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "배경"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1169,66 +1269,66 @@ msgstr ""
 "사이트의 배경 이미지를 업로드할 수 있습니다. 최대 파일 크기는 %1$s 입니다."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "켜기"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "끄기"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "배경 이미지를 켜거나 끈다."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "배경 이미지를 반복 나열"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "색상 변경"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "만족하는"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "가장자리 창"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "문자"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "링크"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "고급 검색"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "사용자 정의 CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "기본값 사용"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr ""
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr ""
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1238,10 +1338,9 @@ msgstr ""
 msgid "Save"
 msgstr "저장"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
-#, fuzzy
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
-msgstr "프로필 디자인"
+msgstr "디자인 저장"
 
 #: actions/disfavor.php:81
 msgid "This notice is not a favorite!"
@@ -1712,7 +1811,7 @@ msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "OMB 프로토콜의 알려지지 않은 버전"
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "리모트 프로필 업데이트 오류"
@@ -2289,11 +2388,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "그룹가입을 위해서는 로그인이 필요합니다."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "별명이 없습니다."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2372,7 +2466,7 @@ msgstr "크리에이티브 커먼즈 (Creative Commons)"
 
 #: actions/licenseadminpanel.php:252
 msgid "Type"
-msgstr ""
+msgstr "종류"
 
 #: actions/licenseadminpanel.php:254
 msgid "Select license"
@@ -2380,7 +2474,7 @@ msgstr "라이선스 선택"
 
 #: actions/licenseadminpanel.php:268
 msgid "License details"
-msgstr ""
+msgstr "라이선스 세부 정보"
 
 #: actions/licenseadminpanel.php:274
 msgid "Owner"
@@ -2539,6 +2633,11 @@ msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다."
 msgid "No content!"
 msgstr "내용이 없습니다!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "너무 깁니다. 최대 메시지 길이는 %d자 까지입니다."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "수신자를 지정하지 않았습니다."
@@ -2666,13 +2765,12 @@ msgid "Unable to revoke access for app: %s."
 msgstr ""
 
 #: actions/oauthconnectionssettings.php:198
-#, fuzzy
 msgid "You have not authorized any applications to use your account."
-msgstr "다음 응용 프로그램이 계정에 접근하도록 허용되어 있습니다."
+msgstr "계정에서 사용하도록 허용한 응용 프로그램이 없습니다."
 
 #: actions/oauthconnectionssettings.php:211
 msgid "Developers can edit the registration settings for their applications "
-msgstr ""
+msgstr "개발자는 자기 응용 프로그램의 등록 정보를 편집할 수 있습니다"
 
 #: actions/oembed.php:80 actions/shownotice.php:100
 msgid "Notice has no profile."
@@ -2697,7 +2795,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "지원하는 형식의 데이터가 아닙니다."
 
@@ -2734,9 +2832,8 @@ msgid "View profile designs"
 msgstr "프로필 디자인 보기"
 
 #: actions/othersettings.php:123
-#, fuzzy
 msgid "Show or hide profile designs."
-msgstr "프로필 디자인 보기"
+msgstr "프로필 디자인 보이거나 감춥니다."
 
 #: actions/othersettings.php:153
 msgid "URL shortening service is too long (max 50 chars)."
@@ -2848,148 +2945,165 @@ msgstr "경로"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "인스턴트 메신저를 사용할 수 없습니다."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "아바타가 삭제되었습니다."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "아바타 디렉토리에 쓸 수 없습니다 : %s"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "사이트"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "SSL 서버"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "경로"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "사이트 테마"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "테마 디렉터리"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "테마"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "테마 서버"
-
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "테마 경로"
-
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "테마 디렉터리"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "아바타"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "아바타가 삭제되었습니다."
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "아바타 경로"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "아바타가 삭제되었습니다."
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "배경"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "항상"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "배경 경로"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "배경 디렉터리"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "SSL 서버"
-
-#: actions/pathsadminpanel.php:324
+#: actions/pathsadminpanel.php:265
 #, fuzzy
-msgid "Sometimes"
-msgstr "통지"
+msgid "Server for themes"
+msgstr "사이트에 대한 테마"
 
-#: actions/pathsadminpanel.php:325
-msgid "Always"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "SSL 사용"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL 서버"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "사이트 테마"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "테마 디렉터리"
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "아바타"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "아바타가 삭제되었습니다."
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "아바타 경로"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "아바타가 삭제되었습니다."
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "배경"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "첨부파일"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "SSL 서버"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "가끔"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "언제나"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "SSL 사용"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "언제 SSL 사용"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "사이트 테마"
 
@@ -3061,14 +3175,13 @@ msgid "URL of your homepage, blog, or profile on another site"
 msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL"
 
 #: actions/profilesettings.php:122 actions/register.php:468
-#, fuzzy, php-format
+#, php-format
 msgid "Describe yourself and your interests in %d chars"
-msgstr "140자 이내에서 자기 소개"
+msgstr "%d자 이내에서 자기 소개 및 자기 관심사"
 
 #: actions/profilesettings.php:125 actions/register.php:471
-#, fuzzy
 msgid "Describe yourself and your interests"
-msgstr "당신에 대해 소개해주세요."
+msgstr "자기 소개 및 자기 관심사"
 
 #: actions/profilesettings.php:127 actions/register.php:473
 msgid "Bio"
@@ -3535,9 +3648,8 @@ msgid "Remote subscribe"
 msgstr "리모트 구독 예약"
 
 #: actions/remotesubscribe.php:124
-#, fuzzy
 msgid "Subscribe to a remote user"
-msgstr "이 회원을 구독합니다."
+msgstr "원격 사용자에 구독"
 
 #: actions/remotesubscribe.php:129
 msgid "User nickname"
@@ -3737,7 +3849,7 @@ msgstr "기관 이름이 필요합니다."
 msgid "Description"
 msgstr "설명"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "통계"
@@ -3872,45 +3984,45 @@ msgstr ""
 msgid "Group actions"
 msgstr "그룹 행동"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "%s 그룹을 위한 공지피드 (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "%s 그룹을 위한 공지피드 (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "%s 그룹을 위한 공지피드 (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "%s의 보낸쪽지함"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "회원"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "모든 회원"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "생성됨"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3920,7 +4032,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3931,7 +4043,7 @@ msgstr ""
 "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/"
 "Micro-blogging)의 사용자 그룹입니다. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 #, fuzzy
 msgid "Admins"
 msgstr "관리자"
@@ -4147,9 +4259,8 @@ msgid "How long users must wait (in seconds) to post the same thing again."
 msgstr ""
 
 #: actions/sitenoticeadminpanel.php:56
-#, fuzzy
 msgid "Site Notice"
-msgstr "사이트 공지"
+msgstr "사이트 공지 사항"
 
 #: actions/sitenoticeadminpanel.php:67
 #, fuzzy
@@ -4830,6 +4941,8 @@ msgid ""
 "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, "
 "Inc. and contributors."
 msgstr ""
+"이 사이트는 %1$s %2$s 버전으로 운영됩니다. Copyright 2008-2010 StatusNet, "
+"Inc. and contributors."
 
 #: actions/version.php:163
 msgid "Contributors"
@@ -4842,6 +4955,9 @@ msgid ""
 "Software Foundation, either version 3 of the License, or (at your option) "
 "any later version. "
 msgstr ""
+"이 프로그램은 자유 소프트웨어입니다. 소프트웨어의 피양도자는 자유 소프트웨어 "
+"재단이 공표한 GNU Affero 일반 공중 사용 허가서 3판 또는 그 이후 판을 임의로 "
+"선택해서, 그 규정에 따라 프로그램을 개작하거나 재배포할 수 있습니다."
 
 #: actions/version.php:176
 msgid ""
@@ -4850,6 +4966,10 @@ msgid ""
 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License "
 "for more details. "
 msgstr ""
+"이 프로그램은 유용하게 사용될 수 있으리라는 희망에서 배포되고 있지만, 특정한 "
+"목적에 맞는 적합성 여부나 판매용으로 사용할 수 있으리라는 묵시적인 보증을 포"
+"함한 어떠한 형태의 보증도 제공하지 않습니다. 보다 자세한 사항에 대해서는 GNU "
+"Affero 일반 공중 사용 허가서를 참고하시기 바랍니다."
 
 #: actions/version.php:182
 #, php-format
@@ -4857,18 +4977,19 @@ msgid ""
 "You should have received a copy of the GNU Affero General Public License "
 "along with this program.  If not, see %s."
 msgstr ""
+"GNU 일반 공중 사용 허가서는 이 프로그램과 함께 제공됩니다. 만약, 이 문서가 누"
+"락되어 있다면 %s 페이지를 보십시오."
 
 #: actions/version.php:191
 msgid "Plugins"
 msgstr "플러그인"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "버전"
 
 #: actions/version.php:199
-#, fuzzy
 msgid "Author(s)"
 msgstr "작성자"
 
@@ -4888,7 +5009,7 @@ msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일
 #: classes/File.php:142
 #, php-format
 msgid "Cannot process URL '%s'"
-msgstr ""
+msgstr "'%s' URL을 처리할 수 없습니다"
 
 #. TRANS: Server exception thrown when... Robin thinks something is impossible!
 #: classes/File.php:174
@@ -5094,9 +5215,8 @@ msgstr ""
 
 #. TRANS: Exception thrown when a right for a non-existing user profile is checked.
 #: classes/Remote_profile.php:54
-#, fuzzy
 msgid "Missing profile."
-msgstr "이용자가 프로필을 가지고 있지 않습니다."
+msgstr "프로파일이 없습니다."
 
 #. TRANS: Exception thrown when a tag cannot be saved.
 #: classes/Status_network.php:338
@@ -5104,7 +5224,7 @@ msgid "Unable to save tag."
 msgstr "태그를 저장할 수 없습니다."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "귀하는 구독이 금지되었습니다."
 
@@ -5227,187 +5347,186 @@ msgid "Untitled page"
 msgstr "제목없는 페이지"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "주 사이트 네비게이션"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "개인 프로필과 친구 타임라인"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "개인"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "당신의 메일, 아바타, 비밀 번호, 프로필을 변경하세요."
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "연결"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "연결"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "메일 주소 확인"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "관리"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, fuzzy, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다."
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "초대"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "이 사이트에서 로그아웃"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "로그아웃"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "새 계정 만들기"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "등록"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "이 사이트에 로그인"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "로그인"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "도움말"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "도움말"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
-#, fuzzy
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
-msgstr "프로필이나 텍스트 검색"
+msgstr "사람이나 단어 검색"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "검색"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "사이트 공지"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "로컬 뷰"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "페이지 공지"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "보조 사이트 네비게이션"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "도움말"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "정보"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "자주 묻는 질문"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "서비스 약관"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "개인정보 취급방침"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "소스 코드"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "연락하기"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "배지"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet 소프트웨어 라이선스"
 
@@ -5415,17 +5534,17 @@ msgstr "StatusNet 소프트웨어 라이선스"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
-#, fuzzy, php-format
+#: lib/action.php:872
+#, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
 "broughtby%%](%%site.broughtbyurl%%)."
 msgstr ""
-"**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 "
-"마이크로블로깅서비스입니다."
+"**%%site.name%%** 사이트는 [%%site.broughtby%%](%%site.broughtbyurl%%)에서 제"
+"공하는 마이크로블로깅서비스입니다."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다."
@@ -5434,7 +5553,7 @@ msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5446,51 +5565,51 @@ msgstr ""
 "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "사이트 컨텐츠 라이선스"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "%1$s의 컨텐츠와 데이터는 외부 유출을 금지합니다."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "컨텐츠와 데이터의 저작권은 %1$s의 소유입니다. All rights reserved."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "컨텐츠와 데이터의 저작권은 각 이용자의 소유입니다. All rights reserved."
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "%1$s의 모든 컨텐츠와 데이터는 %2$s 라이선스에 따라 이용할 수 있습니다."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "페이지수"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "뒷 페이지"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "앞 페이지"
 
@@ -5593,9 +5712,8 @@ msgstr "메일 주소 확인"
 
 #. TRANS: Menu item title/tooltip
 #: lib/adminpanelaction.php:385
-#, fuzzy
 msgid "Edit site notice"
-msgstr "사이트 공지"
+msgstr "사이트 공지 편집"
 
 #. TRANS: Menu item title/tooltip
 #: lib/adminpanelaction.php:393
@@ -5634,20 +5752,19 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
 #. TRANS: Form legend.
 #: lib/applicationeditform.php:129
-#, fuzzy
 msgid "Edit application"
-msgstr "응용 프로그램 수정"
+msgstr "응용 프로그램 편집"
 
 #. TRANS: Form guide.
 #: lib/applicationeditform.php:178
@@ -5725,11 +5842,6 @@ msgstr "읽기 쓰기"
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "취소"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5756,11 +5868,6 @@ msgstr "제거"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "첨부파일"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6185,14 +6292,13 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "SMS에 의한 업데이트"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
-#, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "연결"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 #, fuzzy
 msgid "Authorized connected applications"
@@ -6315,7 +6421,7 @@ msgstr ""
 #: lib/groupnav.php:95
 msgctxt "MENU"
 msgid "Members"
-msgstr ""
+msgstr "구성원"
 
 #. TRANS: Tooltip for menu item in the group navigation page.
 #. TRANS: %s is the nickname of the group.
@@ -6888,24 +6994,24 @@ msgstr "찔러 보기"
 msgid "Send a nudge to this user"
 msgstr "이 사용자에게 찔러 보기 메시지 보내기"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "예약 구독을 추가 할 수 없습니다."
 
@@ -7265,60 +7371,60 @@ msgid "Moderator"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "몇 초 전"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "1분 전"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "1시간 전"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "하루 전"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "1달 전"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "1년 전"
 
@@ -7346,3 +7452,21 @@ msgstr "프로필을 지정하지 않았습니다."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "거부"
+
+#~ msgid "Theme server"
+#~ msgstr "테마 서버"
+
+#~ msgid "Theme path"
+#~ msgstr "테마 경로"
+
+#~ msgid "Background server"
+#~ msgstr "항상"
+
+#~ msgid "Background path"
+#~ msgstr "배경 경로"
+
+#~ msgid "Background directory"
+#~ msgstr "배경 디렉터리"
diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po
index d3c2b08293..5c39cbd4f8 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:58+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:52+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -93,14 +93,15 @@ msgstr "Зачувај"
 msgid "No such page."
 msgstr "Нема таква страница."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +202,13 @@ msgstr "Вие и пријателите"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Подновувања од %1$s и пријатели на %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +235,7 @@ msgstr "API методот не е пронајден."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -309,44 +311,62 @@ msgstr "Блокирањето на корисникот не успеа."
 msgid "Unblock user failed."
 msgstr "Не успеа одблокирањето на корисникот."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Директни пораки од %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Сите директни пораки испратени од %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Директни пораки до %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Сите директни пораки испратени до %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Нема текст за пораката!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Ова е предолго. Максималната должина изнесува %d знаци."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Ова е предолго. Максималната должина изнесува %d знаци."
+msgstr[1] "Ова е предолго. Максималната должина изнесува %d знаци."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Примачот не е пронајден."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Неможете да испраќате директни пораки на корисници што не Ви се пријатели."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Не испраќајте си порака самите на себе; подобро тивко кажете си го тоа на "
+"себеси."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -529,15 +549,21 @@ msgstr "групи на %s"
 msgid "Upload failed."
 msgstr "Подигањето не успеа."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Назначен е неважечки најавен жетон."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Нема наведено oauth_token параметар."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Погрешен жетон."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -555,36 +581,24 @@ msgstr "Погрешен жетон."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Погрешен прекар / лозинка!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Грешка при бришењето на корисникот на OAuth-програмот."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 "Грешка во базата на податоци при вметнувањето на корисникот на OAuth-"
 "програмот."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr "Жетонот на барањето %s е одобрен. Заменете го со жетон за пристап."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Жетонот на барањето %s е одбиен и поништен."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -593,15 +607,15 @@ msgstr "Жетонот на барањето %s е одбиен и поништ
 msgid "Unexpected form submission."
 msgstr "Неочекувано поднесување на образец."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Има програм кој сака да се поврзе со Вашата сметка"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Дозволи или одбиј пристап"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -613,11 +627,11 @@ msgstr ""
 "пристап до Вашата %4$s сметка само на трети страни на кои им верувате."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Сметка"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -626,23 +640,47 @@ msgid "Nickname"
 msgstr "Прекар"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Лозинка"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Одбиј"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Откажи"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Дозволи"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Дозволете или одбијте пристап до податоците за Вашата сметка."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Потврдата на IM е откажана."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Жетонот на барањето %s е одбиен и поништен."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Не сте авторизирани."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Методот бара POST или DELETE."
@@ -807,7 +845,8 @@ msgid "Preview"
 msgstr "Преглед"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Бриши"
 
@@ -864,12 +903,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Не"
@@ -882,12 +922,13 @@ msgstr "Не го блокирај корисников"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Да"
@@ -905,6 +946,7 @@ msgstr "Не можев да ги снимам инофрмациите за б
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1030,7 +1072,7 @@ msgstr "Не сте сопственик на овој програм."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Се појави проблем со Вашиот сесиски жетон."
 
@@ -1058,6 +1100,58 @@ msgstr "Не го бриши овој програм"
 msgid "Delete this application"
 msgstr "Избриши го програмов"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Мора да сте најавени за да можете да ја напуштите групата."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Нема прекар или ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Не членувате во оваа група."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Не можев да ја подновам групата."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s ја напушти групата %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Бриши корисник"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Дали се сигурни дека сакате да го избришете овој корисник? Ова воедно ќе ги "
+"избрише сите податоци за корисникот од базата, без да може да се вратат."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Не ја бриши оваа забелешка"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Избриши овој корисник"
+
 #. 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
@@ -1134,53 +1228,63 @@ msgstr "Изглед"
 msgid "Design settings for this StatusNet site"
 msgstr "Нагодувања на изгледот на ова StatusNet-мрежно место."
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Погрешен URL на лого."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Погрешен URL на лого."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Темата е недостапна: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Промени лого"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Лого на мрежното место"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Лого на мрежното место"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Промени изглед"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Изглед на мрежното место"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Изглед за мрежното место."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Прилагоден мотив"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Можете да подигнете свој изглед за StatusNet како .ZIP архив."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Промена на слика на позадина"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Позадина"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1190,66 +1294,66 @@ msgstr ""
 "големина на податотеката е %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Вкл."
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Искл."
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Вклучи или исклучи позадинска слика."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Позадината во квадрати"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Промена на бои"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Содржина"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Странична лента"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Текст"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Врски"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Напредно"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Прилагодено CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Користи по основно"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Врати основно-зададени нагодувања"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Врати по основно"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1259,7 +1363,7 @@ msgstr "Врати по основно"
 msgid "Save"
 msgstr "Зачувај"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Зачувај изглед"
 
@@ -1735,7 +1839,7 @@ msgstr "Не можев да ги претворам жетоните за ба
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Далечинската служба користи непозната верзија на OMB протокол."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Грешка во подновувањето на далечинскиот профил."
 
@@ -2335,10 +2439,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Мора да сте најавени за да можете да се зачлените во група."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Нема прекар или ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2587,6 +2687,11 @@ msgstr "Не можете да испратите порака до овојо 
 msgid "No content!"
 msgstr "Нема содржина!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Ова е предолго. Максималната должина изнесува %d знаци."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Нема назначено примач."
@@ -2750,7 +2855,7 @@ msgstr "Ве молиме користете само %s URL-адреси врз
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Ова не е поддржан формат на податотека."
 
@@ -2900,147 +3005,166 @@ msgstr "Патеки"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Нагодувања за патеки и опслужувачи за оваа StatusNet-мрежно место."
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Директориумот на темата е нечитлив: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Директориумот на аватарот е недостапен за запишување: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Директориумот на позадината е нечитлив: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Директориумот на локалите е нечитлив: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Неважечки SSL-опслужувач. Дозволени се најмногу до 255 знаци"
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Мреж. место"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Опслужувач"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Назив на домаќинот на опслужувачот на мрежното место"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Патека"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Патека на мрежното место"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Патека до локалите"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Директориум на темата"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Патека до директориумот на локалите"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Интересни URL-адреси"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Да користам интересни (почитливи и повпечатливи) URL-адреси?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Изглед"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Oпслужувач на темата"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Изглед за мрежното место."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Патека до темата"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Директориум на темата"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Аватари"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Опслужувач на аватарот"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Патека на аватарот"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Директориум на аватарот"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Позадини"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Oпслужувач на позаднината"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Патека до позадината"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Директориум на позадината"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Никогаш"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Понекогаш"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Секогаш"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Користи SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Кога се користи SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-опслужувач"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Патека на мрежното место"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Директориум на темата"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Патека до директориумот на локалите"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Аватари"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Опслужувач на аватарот"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Патека на аватарот"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Директориум на аватарот"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Позадини"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Прилози"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Никогаш"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Понекогаш"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Секогаш"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Користи SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Кога се користи SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Oпслужувач, кому ќе му се испраќаат SSL-барања"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Зачувај патеки"
 
@@ -3814,7 +3938,7 @@ msgstr "Организација"
 msgid "Description"
 msgstr "Опис"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Статистики"
@@ -3958,45 +4082,45 @@ msgstr "Алијаси"
 msgid "Group actions"
 msgstr "Групни дејства"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Канал со забелешки за групата %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Канал со забелешки за групата %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Канал со забелешки за групата%s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF за групата %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Членови"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Сите членови"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Создадено"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4012,7 +4136,7 @@ msgstr ""
 "се](%%%%action.register%%%%) за да станете дел од оваа група и многу повеќе! "
 "([Прочитајте повеќе](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4025,7 +4149,7 @@ msgstr ""
 "слободната програмска алатка [StatusNet](http://status.net/). Нејзините "
 "членови си разменуваат кратки пораки за нивниот живот и интереси. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Администратори"
 
@@ -4915,8 +5039,7 @@ msgstr "%s не членува во ниедна група."
 #, php-format
 msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
 msgstr ""
-"Обидете се со [пребарување на групи](%%action.groupsearch%%) и придружете им "
-"се."
+"Обидете се да [најдете групи](%%action.groupsearch%%) и да се зачлените."
 
 #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
 #. TRANS: Message is used as a subtitle in atom group notice feed.
@@ -4985,7 +5108,7 @@ msgid "Plugins"
 msgstr "Приклучоци"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Верзија"
 
@@ -5079,7 +5202,7 @@ msgstr "Грешка во зачувувањето на корисникот; н
 #. TRANS: Activity title.
 #: classes/Group_member.php:113 lib/joinform.php:114
 msgid "Join"
-msgstr "Придружи се"
+msgstr "Зачлени се"
 
 #. TRANS: Success message for subscribe to group attempt through OStatus.
 #. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
@@ -5224,7 +5347,7 @@ msgid "Unable to save tag."
 msgstr "Не можам да ја зачувам ознаката."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Блокирани сте од претплаќање."
 
@@ -5345,185 +5468,185 @@ msgid "Untitled page"
 msgstr "Страница без наслов"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Главна навигација"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Личен профил и хронологија на пријатели"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Лично"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Промена на е-пошта, аватар, лозинка, профил"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Поврзи се со услуги"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Поврзи се"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Промена на поставките на мрежното место"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Админ"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Поканете пријатели и колеги да Ви се придружат на %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Покани"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Одјава"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Одјава"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Создај сметка"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Регистрација"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Најава"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Најава"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Напомош!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Помош"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Пребарајте луѓе или текст"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Барај"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Напомена за мрежното место"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Локални прегледи"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Напомена за страницата"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Споредна навигација"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Помош"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "За"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "ЧПП"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Услови"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Приватност"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Изворен код"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Контакт"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Значка"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Лиценца на програмот StatusNet"
 
@@ -5531,7 +5654,7 @@ msgstr "Лиценца на програмот StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5541,7 +5664,7 @@ msgstr ""
 "%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** е сервис за микроблогирање."
@@ -5550,7 +5673,7 @@ msgstr "**%%site.name%%** е сервис за микроблогирање."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5562,20 +5685,20 @@ msgstr ""
 "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Лиценца на содржините на мрежното место"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Содржината и податоците на %1$s се лични и доверливи."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
@@ -5583,7 +5706,7 @@ msgstr ""
 "права задржани."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите "
@@ -5591,25 +5714,25 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Сите содржини и податоци на %1$s се достапни под лиценцата %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Прелом на страници"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Следно"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Претходно"
 
@@ -5751,12 +5874,12 @@ msgid "Could not authenticate you."
 msgstr "Не можевме да Ве потврдиме."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Се обидовте да отповикате непознат жетон."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Не успеав да го избришам отповиканиот жетон."
 
@@ -5840,11 +5963,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Основно-зададен пристап за овој програм: само читање, или читање-пишување"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Откажи"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5871,11 +5989,6 @@ msgstr "Одземи"
 msgid "author element must contain a name element."
 msgstr "авторскиот елемент мора да содржи елемент на име."
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Прилози"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6338,14 +6451,14 @@ msgstr "СМС"
 msgid "Updates by SMS"
 msgstr "Подновувања по СМС"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Сврзувања"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Овластени поврзани програми"
@@ -7149,24 +7262,24 @@ msgstr "Подбуцни"
 msgid "Send a nudge to this user"
 msgstr "Испрати подбуцнување на корисников"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Грешка при вметнувањето на новиот профил."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Грешка при вметнувањето на аватарот."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Грешка при вметнувањето на далечинскиот профил."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Дуплирана забелешка."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Не може да се внесе нова претплата."
 
@@ -7521,17 +7634,17 @@ msgid "Moderator"
 msgstr "Модератор"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "пред неколку секунди"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "пред една минута"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7539,12 +7652,12 @@ msgstr[0] "пред околу една минута"
 msgstr[1] "пред околу %d минути"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "пред еден час"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7552,12 +7665,12 @@ msgstr[0] "пред околу еден час"
 msgstr[1] "пред околу %d часа"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "пред еден ден"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7565,12 +7678,12 @@ msgstr[0] "пред околу еден ден"
 msgstr[1] "пред околу %d дена"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "пред еден месец"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7578,7 +7691,7 @@ msgstr[0] "пред околу еден месец"
 msgstr[1] "пред околу %d месеци"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "пред една година"
 
@@ -7605,3 +7718,29 @@ msgstr "Нема назначено корисник. Ќе го употреба
 #, php-format
 msgid "%d entries in backup."
 msgstr "%d резервни ставки."
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr "Жетонот на барањето %s е одобрен. Заменете го со жетон за пристап."
+
+#~ msgid "Deny"
+#~ msgstr "Одбиј"
+
+#~ msgid "Path to locales"
+#~ msgstr "Патека до локалите"
+
+#~ msgid "Theme server"
+#~ msgstr "Oпслужувач на темата"
+
+#~ msgid "Theme path"
+#~ msgstr "Патека до темата"
+
+#~ msgid "Background server"
+#~ msgstr "Oпслужувач на позаднината"
+
+#~ msgid "Background path"
+#~ msgstr "Патека до позадината"
+
+#~ msgid "Background directory"
+#~ msgstr "Директориум на позадината"
diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po
index a724b6fbb3..0fbdd03023 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:01+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:03+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -91,14 +91,15 @@ msgstr "Lagre"
 msgid "No such page."
 msgstr "Ingen slik side."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -114,7 +115,7 @@ msgstr "Ingen slik side."
 #: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59
 #: lib/mailbox.php:82 lib/profileaction.php:77
 msgid "No such user."
-msgstr "Ingen slik bruker"
+msgstr "Ingen slik bruker."
 
 #. TRANS: Page title. %1$s is user nickname, %2$d is page number
 #: actions/all.php:90
@@ -198,12 +199,13 @@ msgstr "Du og venner"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Oppdateringer fra %1$s og venner på %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -231,7 +233,7 @@ msgstr "API-metode ikke funnet!"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -308,43 +310,60 @@ msgstr "Blokkering av bruker mislyktes."
 msgid "Unblock user failed."
 msgstr "Oppheving av blokkering av bruker mislyktes."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Direktemeldinger fra %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Alle direktemeldinger sendt fra %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Direktemeldinger til %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Alle direktemeldinger sendt til %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Ingen meldingstekst!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Dette er for langt. Meldingen kan bare være %d tegn lang."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Dette er for langt. Meldingen kan bare være %d tegn lang."
+msgstr[1] "Dette er for langt. Meldingen kan bare være %d tegn lang."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Fant ikke mottakeren."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Kan ikke sende direktemeldinger til brukere du ikke er venn med."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Ikke send en melding til degselv; bare hvisk det stille til degselv istedet."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -524,15 +543,21 @@ msgstr "grupper på %s"
 msgid "Upload failed."
 msgstr "Opplasting feilet."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Ugyldig symbol."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Ingen verdi for oauth_token er oppgitt."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Ugyldig symbol."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -550,34 +575,22 @@ msgstr "Ugyldig symbol."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Ugyldig kallenavn / passord!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Databasefeil ved sletting av bruker fra programmet OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Databasefeil ved innsetting av bruker i programmet OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -586,15 +599,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Uventet skjemainnsending."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Et program ønsker å koble til kontoen din"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Tillat eller nekt tilgang"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -606,11 +619,11 @@ msgstr ""
 "$s-konto til tredjeparter du stoler på."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Konto"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -619,23 +632,47 @@ msgid "Nickname"
 msgstr "Nick"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Passord"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Nekt"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Avbryt"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Tillat"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Tillat eller nekt tilgang til din kontoinformasjon."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Direktemeldingsbekreftelse avbrutt."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Du er ikke autorisert."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Denne metoden krever en POST eller DELETE."
@@ -796,7 +833,8 @@ msgid "Preview"
 msgstr "Forhåndsvis"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Slett"
 
@@ -852,12 +890,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Nei"
@@ -870,12 +909,13 @@ msgstr "Ikke blokker denne brukeren"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Ja"
@@ -893,6 +933,7 @@ msgstr "Kunne ikke lagre blokkeringsinformasjon."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1018,7 +1059,7 @@ msgstr "Du er ikke eieren av dette programmet."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 #, fuzzy
 msgid "There was a problem with your session token."
 msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen."
@@ -1047,6 +1088,58 @@ msgstr "Ikke slett dette programmet"
 msgid "Delete this application"
 msgstr "Slett dette programmet"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Du må være innlogget for å forlate en gruppe."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "ngen kallenavn eller ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Du er ikke et medlem av denne gruppen."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Kunne ikke oppdatere gruppe."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s forlot gruppe %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Slett bruker"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Er du sikker på at du vil slette denne brukeren? Dette vil slette alle data "
+"om brukeren fra databasen, uten sikkerhetskopi."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Ikke slett denne notisen"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Slett denne brukeren"
+
 #. 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
@@ -1123,53 +1216,63 @@ msgstr "Utseende"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Ugyldig logo-URL."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Ugyldig logo-URL."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Tema ikke tilgjengelig: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Endre logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Nettstedslogo"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Nettstedslogo"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Endre tema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Nettstedstema"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Tema for nettstedet."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Egendefinert tema"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Du kan laste opp et egendefinert StatusNet-tema som et .ZIP-arkiv."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Endre bakgrunnsbilde"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Bakgrunn"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1178,66 +1281,66 @@ msgstr ""
 "Du kan laste opp et bakgrunnsbilde for nettstedet. Maks filstørrelse er %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "På"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Av"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Slå på eller av bakgrunnsbilde."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Gjenta bakgrunnsbildet"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Endre farger"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Innhold"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Sidelinje"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Tekst"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Lenker"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avansert"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Egendefinert CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Bruk standard"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Gjenopprett standardutseende"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Tilbakestill til standardverdier"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1247,7 +1350,7 @@ msgstr "Tilbakestill til standardverdier"
 msgid "Save"
 msgstr "Lagre"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Lagre utseende"
 
@@ -1719,7 +1822,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Fjerntjeneste bruker ukjent versjon av OMB-protokollen."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Feil ved oppdatering av fjernprofil."
 
@@ -2305,10 +2408,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Du må være innlogget for å bli med i en gruppe."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "ngen kallenavn eller ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2551,6 +2650,11 @@ msgstr "Du kan ikke sende en melding til denne brukeren."
 msgid "No content!"
 msgstr "Inget innhold."
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Dette er for langt. Meldingen kan bare være %d tegn lang."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Ingen mottaker oppgitt."
@@ -2712,7 +2816,7 @@ msgstr "Bare %s-nettadresser over vanlig HTTP."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Ikke et støttet dataformat."
 
@@ -2861,147 +2965,166 @@ msgstr "Stier"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Temamappe ikke lesbar: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Avatarmappe ikke skrivbar: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Bakgrunnsmappe ikke skrivbar: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Lokaliseringsmappe ikke lesbar: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Ugyldig SSL-tjener. Maks lengde er 255 tegn."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Nettsted"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Tjener"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Vertsnavn for nettstedets tjener."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Sti"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Nettstedssti"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Lokaliseringssti"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Temamappe"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Lokaliseringsmappesti"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Pyntede nettadresser"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Bruk pyntede (mer lesbare og lettere å huske) nettadresser?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Tema"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Tematjener"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Tema for nettstedet."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Temasti"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Temamappe"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatarer"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Avatartjener"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Avatarsti"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Avatarmappe"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Bakgrunner"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Bakgrunnstjener"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Bakgrunnssti"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Bakgrunnsmappe"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Aldri"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Noen ganger"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Alltid"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Bruk SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Når SSL skal brukes"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-tjener"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Nettstedssti"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Temamappe"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Lokaliseringsmappesti"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatarer"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Avatartjener"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Avatarsti"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Avatarmappe"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Bakgrunner"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Vedlegg"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Aldri"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Noen ganger"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Alltid"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Bruk SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Når SSL skal brukes"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Tjener SSL-forespørsler skal vises til"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Lagre stier"
 
@@ -3762,7 +3885,7 @@ msgstr "Organisasjon"
 msgid "Description"
 msgstr "Beskrivelse"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistikk"
@@ -3906,45 +4029,45 @@ msgstr "Alias"
 msgid "Group actions"
 msgstr "Gruppehandlinger"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Notismating for %s gruppe (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Notismating for %s gruppe (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Notismating for %s gruppe (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF for gruppen %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Medlemmer"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Alle medlemmer"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Opprettet"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3960,7 +4083,7 @@ msgstr ""
 "%%%) for å bli medlem av denne gruppen og mange fler. ([Les mer](%%%%doc.help"
 "%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3973,7 +4096,7 @@ msgstr ""
 "programvareverktøyet [StatusNet](http://status.net/). Dets medlemmer deler "
 "korte meldinger om deres liv og interesser. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administratorer"
 
@@ -4909,7 +5032,7 @@ msgid "Plugins"
 msgstr "Programtillegg"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versjon"
 
@@ -5141,7 +5264,7 @@ msgid "Unable to save tag."
 msgstr "Kunne ikke lagre nettstedsnotis."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 #, fuzzy
 msgid "You have been banned from subscribing."
 msgstr "Brukeren har blokkert deg fra å abonnere."
@@ -5264,188 +5387,188 @@ msgid "Untitled page"
 msgstr "Side uten tittel"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 #, fuzzy
 msgid "Primary site navigation"
 msgstr "Endre nettstedskonfigurasjon"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personlig"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Endre e-posten, avateren, passordet og profilen din"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Koble til tjenester"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Koble til"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Endre nettstedskonfigurasjon"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administrator"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Inviter venner og kollegaer til å bli med deg på %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Inviter"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Logg ut fra nettstedet"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Logg ut"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Opprett en konto"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrer"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Log inn på nettstedet"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Logg inn"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Hjelp meg."
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Hjelp"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Søk etter personer eller tekst"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Søk"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Nettstedsnotis"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Lokale visninger"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Sidenotis"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Hjelp"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Om"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "OSS/FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 #, fuzzy
 msgid "Privacy"
 msgstr "Privat"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Kilde"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontakt"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 #, fuzzy
 msgid "Badge"
 msgstr "Knuff"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Programvarelisens for StatusNet"
 
@@ -5453,7 +5576,7 @@ msgstr "Programvarelisens for StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5463,7 +5586,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** er en mikrobloggingtjeneste."
@@ -5472,7 +5595,7 @@ msgstr "**%%site.name%%** er en mikrobloggingtjeneste."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5481,52 +5604,52 @@ msgid ""
 msgstr ""
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 #, fuzzy
 msgid "Site content license"
 msgstr "Programvarelisens for StatusNet"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 #, fuzzy
 msgid "Pagination"
 msgstr "Registrering"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Etter"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Før"
 
@@ -5672,12 +5795,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5763,11 +5886,6 @@ msgstr ""
 "Standardtilgang for dette programmet: skrivebeskyttet eller lese- og "
 "skrivetilgang"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Avbryt"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5794,11 +5912,6 @@ msgstr "Tilbakekall"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Vedlegg"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6227,14 +6340,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Oppdatert med SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Tilkoblinger"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 #, fuzzy
 msgid "Authorized connected applications"
@@ -7033,24 +7146,24 @@ msgstr "Knuff"
 msgid "Send a nudge to this user"
 msgstr "Send et knuff til denne brukeren"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 #, fuzzy
 msgid "Couldn't insert new subscription."
 msgstr "Kunne ikke sette inn bekreftelseskode."
@@ -7415,17 +7528,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "noen få sekunder siden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "omtrent ett minutt siden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7433,12 +7546,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "omtrent én time siden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7446,12 +7559,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "omtrent én dag siden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7459,12 +7572,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "omtrent én måned siden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7472,7 +7585,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "omtrent ett år siden"
 
@@ -7500,3 +7613,24 @@ msgstr "Ingen bruker-ID spesifisert."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "Nekt"
+
+#~ msgid "Path to locales"
+#~ msgstr "Lokaliseringssti"
+
+#~ msgid "Theme server"
+#~ msgstr "Tematjener"
+
+#~ msgid "Theme path"
+#~ msgstr "Temasti"
+
+#~ msgid "Background server"
+#~ msgstr "Bakgrunnstjener"
+
+#~ msgid "Background path"
+#~ msgstr "Bakgrunnssti"
+
+#~ msgid "Background directory"
+#~ msgstr "Bakgrunnsmappe"
diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po
index 87ad36fd07..393d152d5d 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:06:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:41:58+0000\n"
 "Language-Team: Dutch \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -93,14 +93,15 @@ msgstr "Opslaan"
 msgid "No such page."
 msgstr "Deze pagina bestaat niet."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -203,12 +204,13 @@ msgstr "U en vrienden"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Updates van %1$s en vrienden op %2$s."
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -235,7 +237,7 @@ msgstr "De API-functie is niet aangetroffen."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -311,45 +313,61 @@ msgstr "Het blokkeren van de gebruiker is mislukt."
 msgid "Unblock user failed."
 msgstr "Het deblokkeren van de gebruiker is mislukt."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Privéberichten van %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Alle privéberichten van %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Privéberichten aan %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Alle privéberichten aan %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Het bericht is leeg!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Dat is te lang. De maximale berichtlengte is %d tekens."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Dat is te lang. De maximale berichtlengte is %d tekens."
+msgstr[1] "Dat is te lang. De maximale berichtlengte is %d tekens."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "De ontvanger is niet aangetroffen."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "U kunt geen privéberichten sturen aan gebruikers die niet op uw "
 "vriendenlijst staan."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -536,15 +554,21 @@ msgstr "groepen op %s"
 msgid "Upload failed."
 msgstr "Uploaden is mislukt."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Het opgegeven token is ongeldig."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Er is geen oauth_token parameter opgegeven."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Ongeldig token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -564,40 +588,26 @@ msgstr ""
 "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, "
 "alstublieft."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Ongeldige gebruikersnaam of wachtwoord."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr ""
 "Er is een databasefout opgetreden tijdens het verwijderen van de OAuth "
 "applicatiegebruiker."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 "Er is een databasefout opgetreden tijdens het toevoegen van de OAuth "
 "applicatiegebruiker."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Het verzoektoken %s is geautoriseerd. Wissel het alstublieft uit voor een "
-"toegangstoken."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Het verzoektoken %s is geweigerd en ingetrokken."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -606,15 +616,15 @@ msgstr "Het verzoektoken %s is geweigerd en ingetrokken."
 msgid "Unexpected form submission."
 msgstr "Het formulier is onverwacht ingezonden."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Een applicatie vraagt toegang tot uw gebruikersgegevens"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Toegang toestaan of ontzeggen"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -626,11 +636,11 @@ msgstr ""
 "toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Gebruiker"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -639,23 +649,47 @@ msgid "Nickname"
 msgstr "Gebruikersnaam"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Wachtwoord"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Ontzeggen"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Annuleren"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Toestaan"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Toegang tot uw gebruikersgegevens toestaan of ontzeggen."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "IM-bevestiging geannuleerd."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Het verzoektoken %s is geweigerd en ingetrokken."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "U hebt niet de juiste toegangsrechten."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Deze methode vereist een POST of DELETE."
@@ -819,7 +853,8 @@ msgid "Preview"
 msgstr "Voorvertoning"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Verwijderen"
 
@@ -876,12 +911,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Nee"
@@ -894,12 +930,13 @@ msgstr "Gebruiker niet blokkeren"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Ja"
@@ -917,6 +954,7 @@ msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1042,7 +1080,7 @@ msgstr "U bent niet de eigenaar van deze applicatie."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Er is een probleem met uw sessietoken."
 
@@ -1070,6 +1108,59 @@ msgstr "Deze applicatie niet verwijderen"
 msgid "Delete this application"
 msgstr "Deze applicatie verwijderen"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "U moet aangemeld zijn om een groep te kunnen verlaten."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Geen gebruikersnaam of ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "U bent geen lid van deze groep."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Het was niet mogelijk de groep bij te werken."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s heeft de groep %2$s verlaten"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Gebruiker verwijderen"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Weet u zeker dat u deze gebruiker wilt verwijderen? Door deze handeling "
+"worden alle gegevens van deze gebruiker uit de database verwijderd. Het is "
+"niet mogelijk ze terug te zetten."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Deze mededeling niet verwijderen"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Gebruiker verwijderen"
+
 #. 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
@@ -1147,53 +1238,63 @@ msgstr "Uiterlijk"
 msgid "Design settings for this StatusNet site"
 msgstr "Instellingen voor de vormgeving van deze StatusNet-website"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "De logo-URL is ongeldig."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "De logo-URL is ongeldig."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "De vormgeving is niet beschikbaar: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Logo wijzigen"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Websitelogo"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Websitelogo"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Vormgeving wijzigen"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Vormgeving website"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Mogelijke vormgevingen voor deze website."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Aangepaste vormgeving"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "U kunt een vormgeving voor StatusNet uploaden als ZIP-archief."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Achtergrondafbeelding wijzigen"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Achtergrond"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1203,66 +1304,66 @@ msgstr ""
 "bestandsgrootte is %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Aan"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Uit"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Achtergrondafbeelding inschakelen of uitschakelen."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Achtergrondafbeelding naast elkaar"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Kleuren wijzigen"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Inhoud"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Menubalk"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Tekst"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Verwijzingen"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Uitgebreid"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Aangepaste CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Standaardinstellingen gebruiken"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Standaardontwerp toepassen"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Standaardinstellingen toepassen"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1272,7 +1373,7 @@ msgstr "Standaardinstellingen toepassen"
 msgid "Save"
 msgstr "Opslaan"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Ontwerp opslaan"
 
@@ -1751,7 +1852,7 @@ msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 "De diensten op afstand gebruiken een onbekende versie van het OMB-protocol."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr ""
 "Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand."
@@ -2355,10 +2456,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "U moet aangemeld zijn om lid te worden van een groep."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Geen gebruikersnaam of ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2605,6 +2702,11 @@ msgstr "U kunt geen bericht naar deze gebruiker zenden."
 msgid "No content!"
 msgstr "Geen inhoud!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Dat is te lang. De maximale berichtlengte is %d tekens."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Er is geen ontvanger aangegeven."
@@ -2771,7 +2873,7 @@ msgstr "Alleen URL's voor %s via normale HTTP alstublieft."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Geen ondersteund gegevensformaat."
 
@@ -2919,147 +3021,166 @@ msgstr "Paden"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Pad- en serverinstellingen voor de StatusNet-website"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Er kan niet uit de vormgevingmap gelezen worden: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Er kan niet in de avatarmap geschreven worden: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Er kan niet in de achtergrondmap geschreven worden: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Er kan niet uit de talenmap gelezen worden: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "De SSL-server is ongeldig. De maximale lengte is 255 tekens."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Website"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Server"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Hostnaam van de website server."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Pad"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Websitepad"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Talenpad"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Vormgevingsmap"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Talenmap"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Nette URL's"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Nette URL's (meer leesbaar en beter te onthouden) gebruiken?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Vormgeving"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Vormgevingsserver"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Mogelijke vormgevingen voor deze website."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Vormgevingspad"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Vormgevingsmap"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatars"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Avatarserver"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Avatarpad"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Avatarmap"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Achtergronden"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Achtergrondenserver"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Achtergrondpad"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Achtergrondenmap"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nooit"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Soms"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Altijd"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "SSL gebruiken"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Wanneer SSL gebruikt moet worden"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-server"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Websitepad"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Vormgevingsmap"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Talenmap"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatars"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Avatarserver"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Avatarpad"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Avatarmap"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Achtergronden"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Bijlagen"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nooit"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Soms"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Altijd"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "SSL gebruiken"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Wanneer SSL gebruikt moet worden"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "De server waar SSL-verzoeken heen gestuurd moeten worden"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Opslagpaden"
 
@@ -3835,7 +3956,7 @@ msgstr "Organisatie"
 msgid "Description"
 msgstr "Beschrijving"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistieken"
@@ -3980,45 +4101,45 @@ msgstr "Aliassen"
 msgid "Group actions"
 msgstr "Groepshandelingen"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Mededelingenfeed voor groep %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Mededelingenfeed voor groep %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Mededelingenfeed voor groep %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Vriend van een vriend voor de groep %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Leden"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Alle leden"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Aangemaakt"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4034,7 +4155,7 @@ msgstr ""
 "lid te worden van deze groep en nog veel meer! [Meer lezen...](%%%%doc.help%%"
 "%%)"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4047,7 +4168,7 @@ msgstr ""
 "[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit "
 "over hun ervaringen en interesses. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Beheerders"
 
@@ -5015,7 +5136,7 @@ msgid "Plugins"
 msgstr "Plug-ins"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versie"
 
@@ -5262,7 +5383,7 @@ msgid "Unable to save tag."
 msgstr "Het was niet mogelijk om het label op te slaan."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "U mag zich niet abonneren."
 
@@ -5383,185 +5504,185 @@ msgid "Untitled page"
 msgstr "Naamloze pagina"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Primaire sitenavigatie"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Persoonlijk profiel en tijdlijn van vrienden"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Persoonlijk"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Met andere diensten koppelen"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Koppelen"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Websiteinstellingen wijzigen"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Beheer"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Uitnodigingen"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Gebruiker afmelden"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Afmelden"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Gebruiker aanmaken"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registreren"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Gebruiker aanmelden"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Aanmelden"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Help me!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Help"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Naar gebruikers of tekst zoeken"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Zoeken"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Mededeling van de website"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Lokale weergaven"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Mededeling van de pagina"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Secundaire sitenavigatie"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Help"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Over"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Veel gestelde vragen"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Gebruiksvoorwaarden"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privacy"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Broncode"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contact"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Widget"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licentie van de StatusNet-software"
 
@@ -5569,7 +5690,7 @@ msgstr "Licentie van de StatusNet-software"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5579,7 +5700,7 @@ msgstr ""
 "broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** is een microblogdienst."
@@ -5588,7 +5709,7 @@ msgstr "**%%site.name%%** is een microblogdienst."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5600,20 +5721,20 @@ msgstr ""
 "www.fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licentie voor siteinhoud"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
@@ -5621,7 +5742,7 @@ msgstr ""
 "voorbehouden."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke "
@@ -5629,26 +5750,26 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 "Alle inhoud en gegevens van %1$s zijn beschikbaar onder de licentie %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paginering"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Later"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Eerder"
 
@@ -5790,12 +5911,12 @@ msgid "Could not authenticate you."
 msgstr "U kon niet geauthenticeerd worden."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Er is geprobeerd een onbekend token in te trekken."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Het was niet mogelijk een ingetrokken token te verwijderen."
 
@@ -5879,11 +6000,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Annuleren"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5910,11 +6026,6 @@ msgstr "Intrekken"
 msgid "author element must contain a name element."
 msgstr "Het element author moet een element name bevatten."
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Bijlagen"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6380,13 +6491,13 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Updates via SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Koppelingen"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Geautoriseerde verbonden applicaties"
@@ -7190,24 +7301,24 @@ msgstr "Porren"
 msgid "Send a nudge to this user"
 msgstr "Deze gebruiker porren"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Fout tijdens het invoegen van een nieuw profiel."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Fout bij het invoegen van de avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Fout bij het invoegen van het profiel van een andere server."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Dubbele mededeling."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Kon nieuw abonnement niet toevoegen."
 
@@ -7568,17 +7679,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "een paar seconden geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "ongeveer een minuut geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7586,12 +7697,12 @@ msgstr[0] "ongeveer een minuut geleden"
 msgstr[1] "ongeveer %d minuten geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "ongeveer een uur geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7599,12 +7710,12 @@ msgstr[0] "ongeveer een uur geleden"
 msgstr[1] "ongeveer %d uur geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "ongeveer een dag geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7612,12 +7723,12 @@ msgstr[0] "ongeveer een dag geleden"
 msgstr[1] "ongeveer %d dagen geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "ongeveer een maand geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7625,7 +7736,7 @@ msgstr[0] "ongeveer een maand geleden"
 msgstr[1] "ongeveer %d maanden geleden"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "ongeveer een jaar geleden"
 
@@ -7652,3 +7763,31 @@ msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt."
 #, php-format
 msgid "%d entries in backup."
 msgstr "%d regels in de back-up."
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Het verzoektoken %s is geautoriseerd. Wissel het alstublieft uit voor een "
+#~ "toegangstoken."
+
+#~ msgid "Deny"
+#~ msgstr "Ontzeggen"
+
+#~ msgid "Path to locales"
+#~ msgstr "Talenpad"
+
+#~ msgid "Theme server"
+#~ msgstr "Vormgevingsserver"
+
+#~ msgid "Theme path"
+#~ msgstr "Vormgevingspad"
+
+#~ msgid "Background server"
+#~ msgstr "Achtergrondenserver"
+
+#~ msgid "Background path"
+#~ msgstr "Achtergrondpad"
+
+#~ msgid "Background directory"
+#~ msgstr "Achtergrondenmap"
diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po
index aaf116c8d1..48e53bec0e 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:00+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:01+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -100,14 +100,15 @@ msgstr "Lagra"
 msgid "No such page."
 msgstr "Dette emneord finst ikkje."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -202,12 +203,13 @@ msgstr "%s med vener"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Oppdateringar frå %1$s og vener på %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -235,7 +237,7 @@ msgstr "Fann ikkje API-metode."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -312,43 +314,61 @@ msgstr "Blokkering av brukar feila."
 msgid "Unblock user failed."
 msgstr "De-blokkering av brukar feila."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, fuzzy, php-format
 msgid "Direct messages from %s"
 msgstr "Direkte meldingar til %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Alle direkte meldingar sendt fra %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Direkte meldingar til %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Alle direkte meldingar sendt til %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Inga meldingstekst!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
+#: actions/apidirectmessagenew.php:127
 #, fuzzy, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Du kan lasta opp ein logo for gruppa."
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Du kan lasta opp ein logo for gruppa."
+msgstr[1] "Du kan lasta opp ein logo for gruppa."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Kunne ikkje finne mottakar."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Ikkje send ei melding til deg sjølv; berre sei det til deg sjølv stille og "
+"fredleg."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -535,16 +555,21 @@ msgstr "Gruppe handlingar"
 msgid "Upload failed."
 msgstr "Last opp fil"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Ugyldig notisinnhald"
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
 #, fuzzy
-msgid "Invalid token."
+msgid "Invalid request token."
 msgstr "Ugyldig storleik."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -562,37 +587,25 @@ msgstr "Ugyldig storleik."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 #, fuzzy
 msgid "Invalid nickname / password!"
 msgstr "Ugyldig brukarnamn eller passord."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 #, fuzzy
 msgid "Database error deleting OAuth application user."
 msgstr "Feil ved å setja brukar."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 #, fuzzy
 msgid "Database error inserting OAuth application user."
 msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -601,15 +614,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Uventa skjemasending."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr ""
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -618,11 +631,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Konto"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -631,22 +644,45 @@ msgid "Nickname"
 msgstr "Kallenamn"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Passord"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr ""
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Avbryt"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 #, fuzzy
 msgid "Allow"
 msgstr "Alle"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+msgid "Authorize access to your account information."
+msgstr ""
+
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Ingen stadfestingskode."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Du tingar ikkje oppdateringar til den profilen."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
@@ -812,7 +848,8 @@ msgid "Preview"
 msgstr "Forhandsvis"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Slett"
 
@@ -867,12 +904,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Merknad"
@@ -886,12 +924,13 @@ msgstr "Lås opp brukaren"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
 msgid "Yes"
@@ -910,6 +949,7 @@ msgstr "Lagring av informasjon feila."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1039,7 +1079,7 @@ msgstr "Du er ikkje medlem av den gruppa."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Det var eit problem med sesjons billetten din."
 
@@ -1067,6 +1107,56 @@ msgstr "Kan ikkje sletta notisen."
 msgid "Delete this application"
 msgstr "Slett denne notisen"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Du må være innlogga for å melde deg ut av ei gruppe."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "Ingen kallenamn."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Du er ikkje medlem av den gruppa."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Kann ikkje oppdatera gruppa."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s sin status på %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Slett"
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Kan ikkje sletta notisen."
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Slett denne notisen"
+
 #. 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
@@ -1147,58 +1237,68 @@ msgstr ""
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 #, fuzzy
 msgid "Invalid logo URL."
 msgstr "Ugyldig storleik."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Ugyldig storleik."
+
+#: actions/designadminpanel.php:341
 #, fuzzy, php-format
 msgid "Theme not available: %s."
 msgstr "Denne sida er ikkje tilgjengleg i eit"
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Endra"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Statusmelding"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Statusmelding"
+
+#: actions/designadminpanel.php:466
 #, fuzzy
 msgid "Change theme"
 msgstr "Endra"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 #, fuzzy
 msgid "Site theme"
 msgstr "Statusmelding"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 #, fuzzy
 msgid "Theme for the site."
 msgstr "Logg ut or sida"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "Statusmelding"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr ""
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr ""
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, fuzzy, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1206,69 +1306,69 @@ msgid ""
 msgstr "Du kan lasta opp ein logo for gruppa."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr ""
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr ""
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr ""
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr ""
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 #, fuzzy
 msgid "Change colours"
 msgstr "Endra passordet ditt"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Innhald"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 #, fuzzy
 msgid "Sidebar"
 msgstr "Søk"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Tekst"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 #, fuzzy
 msgid "Links"
 msgstr "Logg inn"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr ""
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr ""
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr ""
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1278,7 +1378,7 @@ msgstr ""
 msgid "Save"
 msgstr "Lagra"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr ""
 
@@ -1768,7 +1868,7 @@ msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Ukjend versjon av OMB-protokollen."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "Feil ved oppdatering av ekstern profil"
@@ -2358,11 +2458,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Du må være logga inn for å bli med i ei gruppe."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "Ingen kallenamn."
-
 #: actions/joingroup.php:141
 #, fuzzy, php-format
 msgid "%1$s joined group %2$s"
@@ -2614,6 +2709,11 @@ msgstr "Du kan ikkje sende melding til denne brukaren."
 msgid "No content!"
 msgstr "Ingen innhald."
 
+#: actions/newmessage.php:150
+#, fuzzy, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Du kan lasta opp ein logo for gruppa."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Ingen mottakar spesifisert."
@@ -2775,7 +2875,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Ikkje eit støtta dataformat."
 
@@ -2928,155 +3028,173 @@ msgstr ""
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, fuzzy, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Denne sida er ikkje tilgjengleg i eit"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, fuzzy, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Denne sida er ikkje tilgjengleg i eit"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "Denne sida er ikkje tilgjengleg i eit"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Denne sida er ikkje tilgjengleg i eit"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 #, fuzzy
 msgid "Site"
 msgstr "Invitér"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Tenar"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 #, fuzzy
 msgid "Site path"
 msgstr "Statusmelding"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Lasta opp brukarbilete."
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr ""
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Logg ut or sida"
+
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
+msgid "SSL server"
+msgstr "Tenar"
+
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
 msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Statusmelding"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
 msgstr ""
 
-#: actions/pathsadminpanel.php:279
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Lasta opp brukarbilete."
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
 #, fuzzy
 msgid "Avatars"
 msgstr "Brukarbilete"
 
-#: actions/pathsadminpanel.php:284
+#: actions/pathsadminpanel.php:293
 #, fuzzy
 msgid "Avatar server"
 msgstr "Avatar-innstillingar"
 
-#: actions/pathsadminpanel.php:288
+#: actions/pathsadminpanel.php:297
 #, fuzzy
 msgid "Avatar path"
 msgstr "Lasta opp brukarbilete."
 
-#: actions/pathsadminpanel.php:292
+#: actions/pathsadminpanel.php:301
 #, fuzzy
 msgid "Avatar directory"
 msgstr "Lasta opp brukarbilete."
 
-#: actions/pathsadminpanel.php:301
+#: actions/pathsadminpanel.php:310
 msgid "Backgrounds"
 msgstr ""
 
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
 msgstr ""
 
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:320
+#: actions/pathsadminpanel.php:366
 #, fuzzy
 msgid "SSL"
 msgstr "SMS"
 
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
 msgid "Never"
 msgstr "Tenar"
 
-#: actions/pathsadminpanel.php:324
+#: actions/pathsadminpanel.php:371
 #, fuzzy
 msgid "Sometimes"
 msgstr "Notisar"
 
-#: actions/pathsadminpanel.php:325
+#: actions/pathsadminpanel.php:372
 msgid "Always"
 msgstr ""
 
-#: actions/pathsadminpanel.php:329
+#: actions/pathsadminpanel.php:374
 msgid "Use SSL"
 msgstr ""
 
-#: actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:375
 msgid "When to use SSL"
 msgstr ""
 
-#: actions/pathsadminpanel.php:335
-msgid "SSL server"
-msgstr "Tenar"
-
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 #, fuzzy
 msgid "Save paths"
 msgstr "Statusmelding"
@@ -3847,7 +3965,7 @@ msgstr "Paginering"
 msgid "Description"
 msgstr "Beskriving"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistikk"
@@ -3981,45 +4099,45 @@ msgstr ""
 msgid "Group actions"
 msgstr "Gruppe handlingar"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Straum for vener av %s"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Straum for vener av %s"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Notisstraum for %s"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "Utboks for %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Medlemmar"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Alle medlemmar"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Framheva"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4029,7 +4147,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4040,7 +4158,7 @@ msgstr ""
 "**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en."
 "wikipedia.org/wiki/Micro-blogging)-teneste"
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 #, fuzzy
 msgid "Admins"
 msgstr "Administrator"
@@ -4988,7 +5106,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 #, fuzzy
 msgid "Version"
 msgstr "Personleg"
@@ -5229,7 +5347,7 @@ msgid "Unable to save tag."
 msgstr "Kunne ikkje lagra emneord."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 #, fuzzy
 msgid "You have been banned from subscribing."
 msgstr "Brukaren tillet deg ikkje å tinga meldingane sine."
@@ -5354,44 +5472,44 @@ msgid "Untitled page"
 msgstr "Ingen tittel"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Navigasjon for hovudsida"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Personleg profil og oversyn over vener"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 #, fuzzy
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personleg"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Endra passordet ditt"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Klarte ikkje å omdirigera til tenaren: %s"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Kopla til"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
@@ -5399,83 +5517,82 @@ msgstr "Navigasjon for hovudsida"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 #, fuzzy
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administrator"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, fuzzy, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Inviter vennar og kollega til å bli med deg på %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 #, fuzzy
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Invitér"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Logg inn "
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Logo"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Opprett ei ny gruppe"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 #, fuzzy
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrér"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Logg inn "
 
-#: lib/action.php:503
+#: lib/action.php:531
 #, fuzzy
 msgctxt "MENU"
 msgid "Login"
 msgstr "Logg inn"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Hjelp"
 
-#: lib/action.php:509
-#, fuzzy
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Hjelp"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Søk etter folk eller innhald"
 
-#: lib/action.php:515
+#: lib/action.php:543
 #, fuzzy
 msgctxt "MENU"
 msgid "Search"
@@ -5483,68 +5600,68 @@ msgstr "Søk"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Statusmelding"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Lokale syningar"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Sidenotis"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Andrenivås side navigasjon"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Hjelp"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Om"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "OSS"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Personvern"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Kjeldekode"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontakt"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 #, fuzzy
 msgid "Badge"
 msgstr "Dult"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNets programvarelisens"
 
@@ -5552,7 +5669,7 @@ msgstr "StatusNets programvarelisens"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5562,7 +5679,7 @@ msgstr ""
 "broughtbyurl%%). "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** er ei mikrobloggingteneste."
@@ -5571,7 +5688,7 @@ msgstr "**%%site.name%%** er ei mikrobloggingteneste."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5583,51 +5700,51 @@ msgstr ""
 "org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 #, fuzzy
 msgid "Site content license"
 msgstr "StatusNets programvarelisens"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paginering"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "« Etter"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Før »"
 
@@ -5782,12 +5899,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5873,11 +5990,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Avbryt"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5904,11 +6016,6 @@ msgstr "Gjenopprett"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr ""
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6337,14 +6444,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Oppdateringar over SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Kopla til"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr ""
@@ -7053,24 +7160,24 @@ msgstr "Dult"
 msgid "Send a nudge to this user"
 msgstr "Send eit dult til denne brukaren"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Kan ikkje leggja til ny tinging."
 
@@ -7439,17 +7546,17 @@ msgid "Moderator"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "eit par sekund sidan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "omtrent eitt minutt sidan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7457,12 +7564,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "omtrent ein time sidan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7470,12 +7577,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "omtrent ein dag sidan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7483,12 +7590,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "omtrent ein månad sidan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7496,7 +7603,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "omtrent eitt år sidan"
 
diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po
index e4fe1d7f00..d432cd6ba1 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:02+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:04+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -95,14 +95,15 @@ msgstr "Zapisz"
 msgid "No such page."
 msgstr "Nie ma takiej strony."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -204,12 +205,13 @@ msgstr "Ty i przyjaciele"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Aktualizacje z %1$s i przyjaciół na %2$s."
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -236,7 +238,7 @@ msgstr "Nie odnaleziono metody API."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -311,45 +313,62 @@ msgstr "Zablokowanie użytkownika nie powiodło się."
 msgid "Unblock user failed."
 msgstr "Odblokowanie użytkownika nie powiodło się."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Bezpośrednie wiadomości do użytkownika %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Wszystkie bezpośrednie wiadomości wysłane od użytkownika %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Bezpośrednia wiadomość do użytkownika %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Brak tekstu wiadomości."
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków."
+msgstr[1] "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków."
+msgstr[2] "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Nie odnaleziono odbiorcy."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są "
 "twoimi przyjaciółmi."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -531,15 +550,21 @@ msgstr "grupy na %s"
 msgid "Upload failed."
 msgstr "Wysłanie nie powiodło się."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Podano nieprawidłowy token logowania."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Nie podano parametru oauth_token."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Nieprawidłowy token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -557,35 +582,22 @@ msgstr "Nieprawidłowy token."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Nieprawidłowy pseudonim/hasło."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Błąd bazy danych podczas usuwania użytkownika aplikacji OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Błąd bazy danych podczas wprowadzania użytkownika aplikacji OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Token żądania %s został upoważniony. Proszę wymienić go na token dostępu."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Token żądania %s został odrzucony lub unieważniony."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -594,15 +606,15 @@ msgstr "Token żądania %s został odrzucony lub unieważniony."
 msgid "Unexpected form submission."
 msgstr "Nieoczekiwane wysłanie formularza."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Aplikacja chce połączyć się z kontem użytkownika"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Zezwolić czy odmówić dostęp"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -614,11 +626,11 @@ msgstr ""
 "$s powinien być udostępniany tylko zaufanym osobom trzecim."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Konto"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -627,23 +639,47 @@ msgid "Nickname"
 msgstr "Pseudonim"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Hasło"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Odrzuć"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Anuluj"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Zezwól"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Zezwól lub odmów dostęp do informacji konta."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Anulowano potwierdzenie komunikatora."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Token żądania %s został odrzucony lub unieważniony."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Brak upoważnienia."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Ta metoda wymaga POST lub DELETE."
@@ -804,7 +840,8 @@ msgid "Preview"
 msgstr "Podgląd"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Usuń"
 
@@ -860,12 +897,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Nie"
@@ -878,12 +916,13 @@ msgstr "Nie blokuj tego użytkownika"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Tak"
@@ -901,6 +940,7 @@ msgstr "Zapisanie informacji o blokadzie nie powiodło się."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1026,7 +1066,7 @@ msgstr "Nie jesteś właścicielem tej aplikacji."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Wystąpił problem z tokenem sesji."
 
@@ -1053,6 +1093,58 @@ msgstr "Nie usuwaj tej aplikacji"
 msgid "Delete this application"
 msgstr "Usuń tę aplikację"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Musisz być zalogowany, aby opuścić grupę."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Brak pseudonimu lub identyfikatora."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Nie jesteś członkiem tej grupy."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Nie można zaktualizować grupy."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "Użytkownik %1$s opuścił grupę %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Usuń użytkownika"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Na pewno usunąć tego użytkownika? Wyczyści to wszystkie dane o użytkowniku z "
+"bazy danych, bez utworzenia kopii zapasowej."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Nie usuwaj tego wpisu"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Usuń tego użytkownika"
+
 #. 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
@@ -1129,53 +1221,63 @@ msgstr "Wygląd"
 msgid "Design settings for this StatusNet site"
 msgstr "Ustawienia wyglądu tej witryny StatusNet"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Nieprawidłowy adres URL logo."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Nieprawidłowy adres URL logo."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Motyw nie jest dostępny: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Zmień logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo witryny"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo witryny"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Zmień motyw"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Motyw witryny"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Motyw witryny."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Własny motyw"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Można wysłać własny motyw witryny StatusNet jako archiwum zip."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Zmień obraz tła"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Tło"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1183,66 +1285,66 @@ msgid ""
 msgstr "Można wysłać obraz tła dla witryny. Maksymalny rozmiar pliku to %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Włączone"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Wyłączone"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Włącz lub wyłącz obraz tła."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Kafelkowy obraz tła"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Zmień kolory"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Treść"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Panel boczny"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Tekst"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Odnośniki"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Zaawansowane"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Własny plik CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Użycie domyślnych"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Przywróć domyślny wygląd"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Przywróć domyślne ustawienia"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1252,7 +1354,7 @@ msgstr "Przywróć domyślne ustawienia"
 msgid "Save"
 msgstr "Zapisz"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Zapisz wygląd"
 
@@ -1726,7 +1828,7 @@ msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Zdalna usługa używa nieznanej wersji protokołu OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Błąd podczas aktualizowania zdalnego profilu."
 
@@ -2318,10 +2420,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Musisz być zalogowany, aby dołączyć do grupy."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Brak pseudonimu lub identyfikatora."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2568,6 +2666,11 @@ msgstr "Nie można wysłać wiadomości do tego użytkownika."
 msgid "No content!"
 msgstr "Brak treści."
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Nie podano odbiorcy."
@@ -2728,7 +2831,7 @@ msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "To nie jest obsługiwany format danych."
 
@@ -2876,149 +2979,168 @@ msgstr "Ścieżki"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Ustawienia ścieżki i serwera dla tej witryny StatusNet"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Nie można odczytać katalogu motywu: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Nie można zapisywać w katalogu awatarów: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Nie można zapisywać w katalogu teł: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Nie można odczytać katalogu lokalizacji: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Nieprawidłowy serwer SSL. Maksymalna długość to 255 znaków."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Witryny"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Serwer"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Nazwa komputera serwera strony."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Ścieżka"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Ścieżka do witryny"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Ścieżka do lokalizacji"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Katalog motywu"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Ścieżka do katalogu lokalizacji"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Eleganckie adresu URL"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 "Używać eleganckich (bardziej czytelnych i łatwiejszych do zapamiętania) "
 "adresów URL?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Motyw"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Serwer motywu"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Motyw witryny."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Ścieżka do motywu"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Katalog motywu"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Awatary"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Serwer awatara"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Ścieżka do awatara"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Katalog awatara"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Tła"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Serwer tła"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Ścieżka do tła"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Katalog tła"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nigdy"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Czasem"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Zawsze"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Użycie SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Kiedy używać SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Serwer SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Ścieżka do witryny"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Katalog motywu"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Ścieżka do katalogu lokalizacji"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Awatary"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Serwer awatara"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Ścieżka do awatara"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Katalog awatara"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Tła"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Załączniki"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nigdy"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Czasem"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Zawsze"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Użycie SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Kiedy używać SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Serwer do przekierowywania żądań SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Ścieżki zapisu"
 
@@ -3783,7 +3905,7 @@ msgstr "Organizacja"
 msgid "Description"
 msgstr "Opis"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statystyki"
@@ -3926,45 +4048,45 @@ msgstr "Aliasy"
 msgid "Group actions"
 msgstr "Działania grupy"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Kanał wpisów dla grupy %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Kanał wpisów dla grupy %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Kanał wpisów dla grupy %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF dla grupy %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Członkowie"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Wszyscy członkowie"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Utworzono"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3980,7 +4102,7 @@ msgstr ""
 "action.register%%%%), aby stać się częścią tej grupy i wiele więcej. "
 "([Przeczytaj więcej](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3993,7 +4115,7 @@ msgstr ""
 "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się "
 "krótkimi wiadomościami o swoim życiu i zainteresowaniach. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administratorzy"
 
@@ -4950,7 +5072,7 @@ msgid "Plugins"
 msgstr "Wtyczki"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Wersja"
 
@@ -4966,9 +5088,9 @@ msgstr "Dodaj do ulubionych"
 #. TRANS: Ntofication given when a user marks a notice as favorite.
 #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
 #: classes/Fave.php:151
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s marked notice %2$s as a favorite."
-msgstr "Użytkownik %s (@%s) dodał twój wpis jako ulubiony"
+msgstr "Użytkownik %1$s oznaczył wpis %2$s jako ulubiony."
 
 #. TRANS: Server exception thrown when a URL cannot be processed.
 #: classes/File.php:142
@@ -5151,9 +5273,9 @@ msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy."
 #. TRANS: Server exception thrown when a reply cannot be saved.
 #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
 #: classes/Notice.php:1120
-#, fuzzy, php-format
+#, php-format
 msgid "Could not save reply for %1$d, %2$d."
-msgstr "Nie można zapisać informacji o lokalnej grupie."
+msgstr "Nie można zapisać odpowiedzi na %1$d, %2$d."
 
 #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
 #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
@@ -5188,7 +5310,7 @@ msgid "Unable to save tag."
 msgstr "Nie można zapisać etykiety."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Zablokowano subskrybowanie."
 
@@ -5230,9 +5352,9 @@ msgstr "Obserwuj"
 #. TRANS: Notification given when one person starts following another.
 #. TRANS: %1$s is the subscriber, %2$s is the subscribed.
 #: classes/Subscription.php:258
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s is now following %2$s."
-msgstr "Użytkownik %1$s dołączył do grupy %2$s."
+msgstr "Użytkownik %1$s obserwuje teraz %2$s."
 
 #. TRANS: Notice given on user registration.
 #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
@@ -5308,185 +5430,185 @@ msgid "Untitled page"
 msgstr "Strona bez nazwy"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Główna nawigacja witryny"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Profil osobisty i oś czasu przyjaciół"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Osobiste"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Zmień adres e-mail, awatar, hasło, profil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Połącz z serwisami"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Połącz"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Zmień konfigurację witryny"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administrator"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Zaproś"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Wyloguj się z witryny"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Wyloguj się"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Utwórz konto"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Zarejestruj się"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Zaloguj się na witrynie"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Zaloguj się"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Pomóż mi."
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Pomoc"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Wyszukaj osoby lub tekst"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Wyszukaj"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Wpis witryny"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Lokalne widoki"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Wpis strony"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Druga nawigacja witryny"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Pomoc"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "O usłudze"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "TOS"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Prywatność"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Kod źródłowy"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontakt"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Odznaka"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licencja oprogramowania StatusNet"
 
@@ -5494,7 +5616,7 @@ msgstr "Licencja oprogramowania StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5504,7 +5626,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** jest usługą mikroblogowania."
@@ -5513,7 +5635,7 @@ msgstr "**%%site.name%%** jest usługą mikroblogowania."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5525,20 +5647,20 @@ msgstr ""
 "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licencja zawartości witryny"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Treść i dane %1$s są prywatne i poufne."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
@@ -5546,7 +5668,7 @@ msgstr ""
 "zastrzeżone."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie "
@@ -5554,7 +5676,7 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
@@ -5562,19 +5684,19 @@ msgstr ""
 "$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paginacja"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Później"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Wcześniej"
 
@@ -5716,12 +5838,12 @@ msgid "Could not authenticate you."
 msgstr "Nie można uwierzytelnić."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Spróbowano unieważnić nieznany token."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Usunięcie unieważnionego tokenu nie powiodło się."
 
@@ -5806,11 +5928,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Anuluj"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5837,11 +5954,6 @@ msgstr "Unieważnij"
 msgid "author element must contain a name element."
 msgstr "element autora musi zawierać element nazwy."
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Załączniki"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6308,14 +6420,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Aktualizacje przez wiadomości SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Połączenia"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Upoważnione połączone aplikacje"
@@ -7114,24 +7226,24 @@ msgstr "Szturchnij"
 msgid "Send a nudge to this user"
 msgstr "Wyślij szturchnięcie do tego użytkownika"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Błąd podczas wprowadzania nowego profilu."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Błąd podczas wprowadzania awatara."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Błąd podczas wprowadzania zdalnego profilu."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Podwójny wpis."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Nie można wprowadzić nowej subskrypcji."
 
@@ -7439,9 +7551,9 @@ msgstr "Zrezygnuj z subskrypcji"
 #. TRANS: Exception text shown when no profile can be found for a user.
 #. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
 #: lib/usernoprofileexception.php:60
-#, fuzzy, php-format
+#, php-format
 msgid "User %1$s (%2$d) has no profile record."
-msgstr "Użytkownik nie posiada profilu."
+msgstr "Użytkownik%1$s (%2$d) nie posiada wpisu profilu."
 
 #: lib/userprofile.php:117
 msgid "Edit Avatar"
@@ -7490,17 +7602,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "kilka sekund temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "około minutę temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7509,12 +7621,12 @@ msgstr[1] "około %d minut temu"
 msgstr[2] "około %d minut temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "około godzinę temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7523,12 +7635,12 @@ msgstr[1] "około %d godzin temu"
 msgstr[2] "około %d godzin temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "blisko dzień temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7537,12 +7649,12 @@ msgstr[1] "około %d dni temu"
 msgstr[2] "około %d dni temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "około miesiąc temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7551,7 +7663,7 @@ msgstr[1] "około %d miesięcy temu"
 msgstr[2] "około %d miesięcy temu"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "około rok temu"
 
@@ -7580,3 +7692,30 @@ 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 ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Token żądania %s został upoważniony. Proszę wymienić go na token dostępu."
+
+#~ msgid "Deny"
+#~ msgstr "Odrzuć"
+
+#~ msgid "Path to locales"
+#~ msgstr "Ścieżka do lokalizacji"
+
+#~ msgid "Theme server"
+#~ msgstr "Serwer motywu"
+
+#~ msgid "Theme path"
+#~ msgstr "Ścieżka do motywu"
+
+#~ msgid "Background server"
+#~ msgstr "Serwer tła"
+
+#~ msgid "Background path"
+#~ msgstr "Ścieżka do tła"
+
+#~ msgid "Background directory"
+#~ msgstr "Katalog tła"
diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po
index ed66ddfdfe..c43071ff93 100644
--- a/locale/pt/LC_MESSAGES/statusnet.po
+++ b/locale/pt/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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:03+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:06+0000\n"
 "Language-Team: Portuguese \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -94,14 +94,15 @@ msgstr "Gravar"
 msgid "No such page."
 msgstr "Página não foi encontrada."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -202,12 +203,13 @@ msgstr "Você e seus amigos"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Actualizações de %1$s e amigos no %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -234,7 +236,7 @@ msgstr "Método da API não encontrado."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -309,44 +311,60 @@ msgstr "Bloqueio do utilizador falhou."
 msgid "Unblock user failed."
 msgstr "Desbloqueio do utilizador falhou."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Mensagens directas de %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Todas as mensagens directas enviadas por %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Mensagens directas para %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Todas as mensagens directas enviadas para %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Mensagem não tem texto!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Demasiado longo. Tamanho máx. das mensagens é %d caracteres."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Demasiado longo. Tamanho máx. das mensagens é %d caracteres."
+msgstr[1] "Demasiado longo. Tamanho máx. das mensagens é %d caracteres."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Destinatário não encontrado."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Não pode enviar mensagens directas a utilizadores que não sejam amigos."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -527,15 +545,21 @@ msgstr "Grupos em %s"
 msgid "Upload failed."
 msgstr "O upload falhou."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Chave de entrada especificada é inválida."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Não foi fornecido o parâmetro oauth_token."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Chave inválida."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -553,34 +577,22 @@ msgstr "Chave inválida."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Ocorreu um problema com a sua sessão. Por favor, tente novamente."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Utilizador ou senha inválidos!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Erro na base de dados ao apagar o utilizador da aplicação OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr "A chave de pedido %s foi autorizada. Troque-a por uma chave de acesso."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "A chave de pedido %s foi negada e retirada."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -589,15 +601,15 @@ msgstr "A chave de pedido %s foi negada e retirada."
 msgid "Unexpected form submission."
 msgstr "Envio inesperado de formulário."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Uma aplicação pretende ligar-se à sua conta"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Permitir ou negar acesso"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -609,11 +621,11 @@ msgstr ""
 "permitir acesso à sua conta %4$s a terceiros da sua confiança."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Conta"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -622,23 +634,47 @@ msgid "Nickname"
 msgstr "Utilizador"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Senha"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Negar"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Permitir"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Permitir ou negar acesso à informação da sua conta."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Confirmação do mensageiro instantâneo cancelada."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "A chave de pedido %s foi negada e retirada."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Não tem autorização."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Este método requer um POST ou DELETE."
@@ -687,7 +723,7 @@ msgstr "Não encontrado."
 #: actions/apistatusesupdate.php:307 actions/newnotice.php:181
 #, php-format
 msgid "Max notice size is %d chars, including attachment URL."
-msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo."
+msgstr "Tamanho máx. das notas é %d caracteres, incluindo a URL do anexo."
 
 #: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263
 msgid "Unsupported format."
@@ -799,7 +835,8 @@ msgid "Preview"
 msgstr "Antevisão"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Apagar"
 
@@ -855,12 +892,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Não"
@@ -873,12 +911,13 @@ msgstr "Não bloquear este utilizador"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Sim"
@@ -896,6 +935,7 @@ msgstr "Não foi possível gravar informação do bloqueio."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1021,7 +1061,7 @@ msgstr "Não é o proprietário desta aplicação."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Ocorreu um problema com a sua sessão."
 
@@ -1049,6 +1089,58 @@ msgstr "Não apagar esta aplicação"
 msgid "Delete this application"
 msgstr "Apagar esta aplicação"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Tem de iniciar uma sessão para deixar um grupo."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Nenhum utilizador ou ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Não é membro deste grupo."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Não foi possível actualizar o grupo."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s deixou o grupo %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Apagar utilizador"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Tem a certeza de que quer apagar este utilizador? Todos os dados do "
+"utilizador serão eliminados da base de dados, sem haver cópias."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Não apagar esta nota"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Apagar este utilizador"
+
 #. 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
@@ -1125,55 +1217,65 @@ msgstr "Estilo"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "URL do logotipo inválida."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "URL do logotipo inválida."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Tema não está disponível: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Alterar logotipo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logotipo do site"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logotipo do site"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Alterar tema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Tema do site"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "O tema para o site."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Tema personalizado"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 "Pode fazer o upload de um tema personalizado para o StatusNet, na forma de "
 "um arquivo .ZIP."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Alterar imagem de fundo"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Fundo"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1183,66 +1285,66 @@ msgstr ""
 "é %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Ligar"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Desligar"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Ligar ou desligar a imagem de fundo."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Repetir imagem de fundo em mosaico"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Alterar cores"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Conteúdo"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barra"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Texto"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Links"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avançado"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS personalizado"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Usar predefinições"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Repor estilos predefinidos"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Repor predefinição"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1252,7 +1354,7 @@ msgstr "Repor predefinição"
 msgid "Save"
 msgstr "Gravar"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Gravar o estilo"
 
@@ -1729,7 +1831,7 @@ msgstr "Não foi possível converter a chave de pedido numa chave de acesso."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Serviço remoto usa uma versão desconhecida do protocolo OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Erro ao actualizar o perfil remoto."
 
@@ -2325,10 +2427,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Tem de iniciar uma sessão para se juntar a um grupo."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Nenhum utilizador ou ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2571,6 +2669,11 @@ msgstr "Não pode enviar uma mensagem a este utilizador."
 msgid "No content!"
 msgstr "Sem conteúdo!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Demasiado longo. Tamanho máx. das mensagens é %d caracteres."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Não especificou um destinatário."
@@ -2731,7 +2834,7 @@ msgstr "Só URLs %s sobre HTTP simples, por favor."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Formato de dados não suportado."
 
@@ -2880,147 +2983,166 @@ msgstr "Localizações"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Sem acesso de leitura do directório do tema: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Sem acesso de escrita no directório do avatar: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Sem acesso de escrita no directório do fundo: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Sem acesso de leitura ao directório das línguas: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Servidor SSL inválido. O tamanho máximo é 255 caracteres."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Site"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Servidor"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Nome do servidor do site."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Localização"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Localização do site"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Localização das línguas"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Directório do tema"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Localização do directório das línguas"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "URLs bonitas"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Usar URLs bonitas (mais legíveis e memoráveis)"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Tema"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Servidor do tema"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "O tema para o site."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Localização do tema"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Directório do tema"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatares"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Servidor do avatar"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Localização do avatar"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Directório do avatar"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Fundos"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Servidor de fundos"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Localização dos fundos"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Directório dos fundos"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nunca"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Às vezes"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Sempre"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Usar SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Quando usar SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Servidor SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Localização do site"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Directório do tema"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Localização do directório das línguas"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatares"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Servidor do avatar"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Localização do avatar"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Directório do avatar"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Fundos"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Anexos"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nunca"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Às vezes"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Sempre"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Usar SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Quando usar SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Servidor para onde encaminhar pedidos SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Gravar localizações"
 
@@ -3792,7 +3914,7 @@ msgstr "Organização"
 msgid "Description"
 msgstr "Descrição"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Estatísticas"
@@ -3936,45 +4058,45 @@ msgstr "Nomes alternativos"
 msgid "Group actions"
 msgstr "Acções do grupo"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Fonte de notas do grupo %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Fonte de notas do grupo %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Fonte de notas do grupo %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF do grupo %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Membros"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Todos os membros"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Criado"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3990,7 +4112,7 @@ msgstr ""
 "[Registe-se agora](%%action.register%%) para se juntar a este grupo e a "
 "muitos mais! ([Saber mais](%%doc.help%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4003,7 +4125,7 @@ msgstr ""
 "programa de Software Livre [StatusNet](http://status.net/). Os membros deste "
 "grupo partilham mensagens curtas acerca das suas vidas e interesses. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Gestores"
 
@@ -4956,7 +5078,7 @@ msgid "Plugins"
 msgstr "Plugins"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versão"
 
@@ -5194,7 +5316,7 @@ msgid "Unable to save tag."
 msgstr "Não foi possível gravar a categoria."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Foi bloqueado de fazer subscrições"
 
@@ -5314,185 +5436,185 @@ msgid "Untitled page"
 msgstr "Página sem título"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Navegação primária deste site"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Perfil pessoal e notas dos amigos"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Pessoal"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Altere o seu endereço electrónico, avatar, senha, perfil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Ligar aos serviços"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Ligar"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Alterar a configuração do site"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Gestor"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Convidar amigos e colegas para se juntarem a si em %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Convidar"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Terminar esta sessão"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Sair"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Criar uma conta"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registar"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Iniciar uma sessão"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Entrar"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Ajudem-me!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Ajuda"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Procurar pessoas ou pesquisar texto"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Pesquisa"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Aviso do site"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Vistas locais"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Aviso da página"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Navegação secundária deste site"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Ajuda"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Sobre"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Termos"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privacidade"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Código fonte"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contacto"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Emblema"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licença de software do StatusNet"
 
@@ -5500,7 +5622,7 @@ msgstr "Licença de software do StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5510,7 +5632,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** é um serviço de microblogues."
@@ -5519,7 +5641,7 @@ msgstr "**%%site.name%%** é um serviço de microblogues."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5531,20 +5653,20 @@ msgstr ""
 "fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licença de conteúdos do site"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "O conteúdo e dados do site %1$s são privados e confidenciais."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
@@ -5552,7 +5674,7 @@ msgstr ""
 "direitos reservados."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Direitos de autor sobre o conteúdo e dados detidos pelos contribuidores. "
@@ -5560,7 +5682,7 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
@@ -5568,19 +5690,19 @@ msgstr ""
 "licença %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paginação"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Posteriores"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Anteriores"
 
@@ -5722,12 +5844,12 @@ msgid "Could not authenticate you."
 msgstr "Não foi possível autenticá-lo."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Tentou revogar um código desconhecido."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Falha ao eliminar código revogado."
 
@@ -5810,11 +5932,6 @@ msgstr "Leitura e escrita"
 msgid "Default access for this application: read-only, or read-write"
 msgstr "Acesso por omissão para esta aplicação: leitura ou leitura e escrita"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Cancelar"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5841,11 +5958,6 @@ msgstr "Retirar"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Anexos"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6306,14 +6418,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Actualizações por SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Ligações"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Aplicações ligadas autorizadas"
@@ -7113,24 +7225,24 @@ msgstr "Tocar"
 msgid "Send a nudge to this user"
 msgstr "Enviar toque a este utilizador"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Erro ao inserir perfil novo."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Erro ao inserir avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Erro ao inserir perfil remoto."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Nota duplicada."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Não foi possível inserir nova subscrição."
 
@@ -7486,17 +7598,17 @@ msgid "Moderator"
 msgstr "Moderador"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "há alguns segundos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "há cerca de um minuto"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7504,12 +7616,12 @@ msgstr[0] "um minuto"
 msgstr[1] "%d minutos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "há cerca de uma hora"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7517,12 +7629,12 @@ msgstr[0] "uma hora"
 msgstr[1] "%d horas"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "há cerca de um dia"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7530,12 +7642,12 @@ msgstr[0] "um dia"
 msgstr[1] "%d dias"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "há cerca de um mês"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7543,7 +7655,7 @@ msgstr[0] "um mês"
 msgstr[1] "%d meses"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "há cerca de um ano"
 
@@ -7571,3 +7683,30 @@ msgstr "Não foi especificado um ID de utilizador."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "A chave de pedido %s foi autorizada. Troque-a por uma chave de acesso."
+
+#~ msgid "Deny"
+#~ msgstr "Negar"
+
+#~ msgid "Path to locales"
+#~ msgstr "Localização das línguas"
+
+#~ msgid "Theme server"
+#~ msgstr "Servidor do tema"
+
+#~ msgid "Theme path"
+#~ msgstr "Localização do tema"
+
+#~ msgid "Background server"
+#~ msgstr "Servidor de fundos"
+
+#~ msgid "Background path"
+#~ msgstr "Localização dos fundos"
+
+#~ msgid "Background directory"
+#~ msgstr "Directório dos fundos"
diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po
index c0063ea588..b1717cf0dc 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:04+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:08+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -97,14 +97,15 @@ msgstr "Salvar"
 msgid "No such page."
 msgstr "Esta página não existe."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -206,12 +207,13 @@ msgstr "Você e amigos"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Atualizações de %1$s e amigos no %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -238,7 +240,7 @@ msgstr "O método da API não foi encontrado!"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -314,45 +316,65 @@ msgstr "Não foi possível bloquear o usuário."
 msgid "Unblock user failed."
 msgstr "Não foi possível desbloquear o usuário."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Mensagens diretas de %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Todas as mensagens diretas enviadas por %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Mensagens diretas para %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Todas as mensagens diretas enviadas para %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Nenhuma mensagem de texto!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Isso é muito extenso. O tamanho máximo das mensagens é %d caracteres."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+"Isso é muito extenso. O tamanho máximo das mensagens é %d caracteres."
+msgstr[1] ""
+"Isso é muito extenso. O tamanho máximo das mensagens é %d caracteres."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "O usuário destinatário não foi encontrado."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Não é possível enviar mensagens diretas para usuários que não sejam seus "
 "amigos."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Não envie mensagens para você mesmo(a); ao invés disso, apenas diga-a para "
+"si, discretamente."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -534,15 +556,21 @@ msgstr "grupos no %s"
 msgid "Upload failed."
 msgstr "O upload falhou."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "O token de autenticação especificado é inválido."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Não foi fornecido nenhum parâmetro oauth_token"
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Token inválido."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -561,38 +589,24 @@ msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Nome de usuário e/ou senha inválido(s)!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr ""
 "Erro no banco de dados durante a exclusão do usuário da aplicação OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 "Erro no banco de dados durante a inserção do usuário da aplicativo OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"O token de requisição %s foi autorizado. Por favor, troque-o por um token de "
-"acesso."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "O token %s solicitado foi negado e revogado."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -601,15 +615,15 @@ msgstr "O token %s solicitado foi negado e revogado."
 msgid "Unexpected form submission."
 msgstr "Submissão inesperada de formulário."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Uma aplicação gostaria de se conectar à sua conta"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Permitir ou negar o acesso"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -622,11 +636,11 @@ msgstr ""
 "confia."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Conta"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -635,23 +649,47 @@ msgid "Nickname"
 msgstr "Usuário"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Senha"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Negar"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Permitir"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Permitir ou negar o acesso às informações da sua conta."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "A confirmação do mensageiro instantâneo foi cancelada."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "O token %s solicitado foi negado e revogado."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Você não está autorizado."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Esse método requer um POST ou DELETE."
@@ -813,7 +851,8 @@ msgid "Preview"
 msgstr "Pré-visualizar"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Excluir"
 
@@ -870,12 +909,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Não"
@@ -888,12 +928,13 @@ msgstr "Não bloquear este usuário"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Sim"
@@ -911,6 +952,7 @@ msgstr "Não foi possível salvar a informação de bloqueio."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1036,7 +1078,7 @@ msgstr "Você não é o dono desta aplicação."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Ocorreu um problema com o seu token de sessão."
 
@@ -1064,6 +1106,58 @@ msgstr "Não excluir esta aplicação"
 msgid "Delete this application"
 msgstr "Excluir esta aplicação"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Você deve estar autenticado para sair de um grupo."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Nenhum apelido ou identificação."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Você não é membro deste grupo."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Não foi possível atualizar o grupo."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s deixou o grupo %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Excluir usuário"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Tem certeza que deseja excluir este usuário? Isso eliminará todos os dados "
+"deste usuário do banco de dados, sem cópia de segurança."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Não excluir esta mensagem."
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Excluir este usuário"
+
 #. 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
@@ -1140,55 +1234,65 @@ msgstr "Aparência"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "A URL da logo é inválida."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "A URL da logo é inválida."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Tema não disponível: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Alterar a logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Logo do site"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Logo do site"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Alterar o tema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Tema do site"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Tema para o site."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Tema personalizado"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 "Você pode enviar um tema personalizado para o StatusNet, na forma de um "
 "arquivo .zip."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Alterar imagem do fundo"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Fundo"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1198,66 +1302,66 @@ msgstr ""
 "arquivo é de %1 $s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Ativado"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Desativado"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Ativar/desativar a imagem de fundo."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Ladrilhar a imagem de fundo"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Alterar a cor"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Conteúdo"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Barra lateral"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Texto"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Links"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avançado"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "CSS personalizado"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Usar o padrão|"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Restaura a aparência padrão"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Restaura de volta ao padrão"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1267,7 +1371,7 @@ msgstr "Restaura de volta ao padrão"
 msgid "Save"
 msgstr "Salvar"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Salvar a aparência"
 
@@ -1745,7 +1849,7 @@ msgstr "Não foi possível converter o token de requisição para token de acess
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "O serviço remoto usa uma versão desconhecida do protocolo OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Ocorreu um erro durante a atualização do perfil remoto."
 
@@ -2344,10 +2448,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Você deve estar autenticado para se associar a um grupo."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Nenhum apelido ou identificação."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2594,6 +2694,11 @@ msgstr "Você não pode enviar mensagens para este usuário."
 msgid "No content!"
 msgstr "Nenhum conteúdo!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Isso é muito extenso. O tamanho máximo das mensagens é %d caracteres."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Não foi especificado nenhum destinatário."
@@ -2758,7 +2863,7 @@ msgstr "Por favor, somente URLs %s sobre HTTP puro."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Não é um formato de dados suportado."
 
@@ -2908,148 +3013,167 @@ msgstr "Caminhos"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Sem permissão de leitura no diretório de temas: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Sem permissão de escrita no diretório de avatares: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Sem permissão de escrita no diretório de imagens de fundo: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Sem permissão de leitura no diretório de locales: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 "Servidor SSL inválido. O comprimento máximo deve ser de 255 caracteres."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Site"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Servidor"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Nome de host do servidor do site."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Caminho"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Caminho do site"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Caminho para os locales"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Diretório dos temas"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Caminho do diretório de locales"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "URLs limpas"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Utilizar URLs limpas (mais legíveis e memorizáveis)?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Tema"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Servidor de temas"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Tema para o site."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Caminho dos temas"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Diretório dos temas"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatares"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Servidor de avatares"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Caminho dos avatares"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Diretório dos avatares"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Imagens de fundo"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Servidor de imagens de fundo"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Caminho das imagens de fundo"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Diretório das imagens de fundo"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Nunca"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Algumas vezes"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Sempre"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Usar SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Quando usar SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "Servidor SSL"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Caminho do site"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Diretório dos temas"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Caminho do diretório de locales"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatares"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Servidor de avatares"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Caminho dos avatares"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Diretório dos avatares"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Imagens de fundo"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Anexos"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Nunca"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Algumas vezes"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Sempre"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Usar SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Quando usar SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Servidor para onde devem ser direcionadas as requisições SSL"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Salvar caminhos"
 
@@ -3820,7 +3944,7 @@ msgstr "Organização"
 msgid "Description"
 msgstr "Descrição"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Estatísticas"
@@ -3962,45 +4086,45 @@ msgstr "Apelidos"
 msgid "Group actions"
 msgstr "Ações do grupo"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Fonte de mensagens do grupo %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Fonte de mensagens do grupo %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Fonte de mensagens do grupo %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF para o grupo %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Membros"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Todos os membros"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Criado"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4016,7 +4140,7 @@ msgstr ""
 "para se tornar parte deste grupo e muito mais! ([Saiba mais](%%%%doc.help%%%"
 "%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4029,7 +4153,7 @@ msgstr ""
 "[StatusNet](http://status.net/). Seus membros compartilham mensagens curtas "
 "sobre suas vidas e interesses. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administradores"
 
@@ -4986,7 +5110,7 @@ msgid "Plugins"
 msgstr "Plugins"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Versão"
 
@@ -5222,7 +5346,7 @@ msgid "Unable to save tag."
 msgstr "Não foi salvar gravar a categoria."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Você está proibido de assinar."
 
@@ -5342,185 +5466,185 @@ msgid "Untitled page"
 msgstr "Página sem título"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Navegação primária no site"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Perfil pessoal e fluxo de mensagens dos amigos"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Pessoal"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Altere seu e-mail, avatar, senha, perfil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Conecte-se a outros serviços"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Conectar"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Altere as configurações do site"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administrar"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Convide seus amigos e colegas para unir-se a você no %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Convidar"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Sair do site"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Sair"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Criar uma conta"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrar-se"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Autentique-se no site"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Entrar"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Ajudem-me!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Ajuda"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Procure por pessoas ou textos"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Pesquisar"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Avisos do site"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Visualizações locais"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Notícia da página"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Navegação secundária no site"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Ajuda"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Sobre"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Termos de uso"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Privacidade"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Fonte"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Contato"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Mini-aplicativo"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Licença do software StatusNet"
 
@@ -5528,7 +5652,7 @@ msgstr "Licença do software StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5538,7 +5662,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%). "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** é um serviço de microblog."
@@ -5547,7 +5671,7 @@ msgstr "**%%site.name%%** é um serviço de microblog."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5559,26 +5683,26 @@ msgstr ""
 "fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licença do conteúdo do site"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "O conteúdo e os dados de %1$s são privados e confidenciais."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos "
@@ -5586,25 +5710,25 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Todo o conteúdo e dados de %1$s estão disponíveis sob a licença %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Paginação"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Próximo"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Anterior"
 
@@ -5748,12 +5872,12 @@ msgid "Could not authenticate you."
 msgstr "Não foi possível autenticá-lo."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Tentou revogar um código desconhecido."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Falha ao eliminar código revogado."
 
@@ -5837,11 +5961,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Acesso padrão para esta aplicação: somente leitura ou leitura e escrita"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Cancelar"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5868,11 +5987,6 @@ msgstr "Revogar"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Anexos"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6339,14 +6453,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Atualizações via SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Conexões"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Aplicações autorizadas conectadas"
@@ -7150,24 +7264,24 @@ msgstr "Chamar a atenção"
 msgid "Send a nudge to this user"
 msgstr "Chame a atenção deste usuário"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Erro ao inserir perfil novo."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Erro ao inserir avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Erro ao inserir perfil remoto."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Nota duplicada."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Não foi possível inserir a nova assinatura."
 
@@ -7522,17 +7636,17 @@ msgid "Moderator"
 msgstr "Moderador"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "alguns segundos atrás"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "cerca de 1 minuto atrás"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7540,12 +7654,12 @@ msgstr[0] "um minuto"
 msgstr[1] "%d minutos"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "cerca de 1 hora atrás"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7553,12 +7667,12 @@ msgstr[0] "uma hora"
 msgstr[1] "%d horas"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "cerca de 1 dia atrás"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7566,12 +7680,12 @@ msgstr[0] "um dia"
 msgstr[1] "%d dias"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "cerca de 1 mês atrás"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7579,7 +7693,7 @@ msgstr[0] "um mês"
 msgstr[1] "%d meses"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "cerca de 1 ano atrás"
 
@@ -7607,3 +7721,31 @@ msgstr "Não foi especificado nenhum ID de usuário."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "O token de requisição %s foi autorizado. Por favor, troque-o por um token "
+#~ "de acesso."
+
+#~ msgid "Deny"
+#~ msgstr "Negar"
+
+#~ msgid "Path to locales"
+#~ msgstr "Caminho para os locales"
+
+#~ msgid "Theme server"
+#~ msgstr "Servidor de temas"
+
+#~ msgid "Theme path"
+#~ msgstr "Caminho dos temas"
+
+#~ msgid "Background server"
+#~ msgstr "Servidor de imagens de fundo"
+
+#~ msgid "Background path"
+#~ msgstr "Caminho das imagens de fundo"
+
+#~ msgid "Background directory"
+#~ msgstr "Diretório das imagens de fundo"
diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po
index 8ccf571013..dbd7da38f1 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:05+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:09+0000\n"
 "Language-Team: Russian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -97,14 +97,15 @@ msgstr "Сохранить"
 msgid "No such page."
 msgstr "Нет такой страницы."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -204,12 +205,13 @@ msgstr "Вы и друзья"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Обновлено от %1$s и его друзей на %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -236,7 +238,7 @@ msgstr "Метод API не найден."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -312,45 +314,62 @@ msgstr "Неудача при блокировке пользователя."
 msgid "Unblock user failed."
 msgstr "Неудача при разблокировке пользователя."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Прямые сообщения от %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Все прямые сообщения от %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Прямые сообщения для %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Все прямые сообщения посланные для %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Отсутствует текст сообщения!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Слишком длинно. Максимальная длина сообщения — %d знаков."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Слишком длинно. Максимальная длина сообщения — %d знаков."
+msgstr[1] "Слишком длинно. Максимальная длина сообщения — %d знаков."
+msgstr[2] "Слишком длинно. Максимальная длина сообщения — %d знаков."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Получатель не найден."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Не удаётся посылать прямые сообщения пользователям, которые не являются "
 "Вашими друзьями."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -533,15 +552,21 @@ msgstr "группы на %s"
 msgid "Upload failed."
 msgstr "Загрузка не удалась."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Задан неверный ключ для входа."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Не задан параметр oauth_token."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Неправильный токен"
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -559,35 +584,22 @@ msgstr "Неправильный токен"
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Проблема с вашим ключом сессии. Пожалуйста, попробуйте ещё раз."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Неверное имя или пароль."
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Ошибка базы данных при удалении пользователя приложения OAuth."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Ключ запроса %s авторизован. Пожалуйста, обменяйте его на ключ доступа."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Ключ запроса %s был запрещён и аннулирован."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -596,15 +608,15 @@ msgstr "Ключ запроса %s был запрещён и аннулиров
 msgid "Unexpected form submission."
 msgstr "Нетиповое подтверждение формы."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Приложение хочет соединиться с вашей учётной записью"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Разрешить или запретить доступ"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -617,11 +629,11 @@ msgstr ""
 "сторонним приложениям, которым вы доверяете."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Настройки"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -630,23 +642,47 @@ msgid "Nickname"
 msgstr "Имя"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Пароль"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Запретить"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Отменить"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Разрешить"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Разрешить или запретить доступ к информации вашей учётной записи."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Подтверждение IM отменено."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Ключ запроса %s был запрещён и аннулирован."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Вы не авторизованы."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Этот метод требует POST или DELETE."
@@ -808,7 +844,8 @@ msgid "Preview"
 msgstr "Просмотр"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Удалить"
 
@@ -864,12 +901,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Нет"
@@ -882,12 +920,13 @@ msgstr "Не блокировать этого пользователя"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Да"
@@ -905,6 +944,7 @@ msgstr "Не удаётся сохранить информацию о блок
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1030,7 +1070,7 @@ msgstr "Вы не являетесь владельцем этого прило
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Проблема с вашим ключом сессии."
 
@@ -1058,6 +1098,58 @@ msgstr "Не удаляйте это приложение"
 msgid "Delete this application"
 msgstr "Удалить это приложение"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Вы должны авторизоваться, чтобы покинуть группу."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Нет имени или ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Вы не являетесь членом этой группы."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Не удаётся обновить информацию о группе."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s покинул группу %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Удалить пользователя"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Вы действительно хотите удалить этого пользователя? Это повлечёт удаление "
+"всех данных о пользователе из базы данных без возможности восстановления."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Не удалять эту запись"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Удалить этого пользователя"
+
 #. 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
@@ -1134,53 +1226,63 @@ msgstr "Оформление"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Неверный URL логотипа."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Неверный URL логотипа."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Тема не доступна: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Изменить логотип"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Логотип сайта"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Логотип сайта"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Изменить тему"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Тема сайта"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Тема для сайта."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Особая тема"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Вы можете загрузить особую тему StatusNet в виде ZIP-архива."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Изменение фонового изображения"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Фон"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1190,66 +1292,66 @@ msgstr ""
 "составляет %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Включить"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Отключить"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Включить или отключить показ фонового изображения."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Растянуть фоновое изображение"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Изменение цветовой гаммы"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Содержание"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Боковая панель"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Текст"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Ссылки"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Расширенный"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Особый CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Использовать значения по умолчанию"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Восстановить оформление по умолчанию"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Восстановить значения по умолчанию"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1259,7 +1361,7 @@ msgstr "Восстановить значения по умолчанию"
 msgid "Save"
 msgstr "Сохранить"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Сохранить оформление"
 
@@ -1742,7 +1844,7 @@ msgstr "Не удаётся преобразовать ключ запроса 
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Удалённый сервис использует неизвестную версию протокола OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Ошибка обновления удалённого профиля."
 
@@ -2340,10 +2442,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Вы должны авторизоваться для вступления в группу."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Нет имени или ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2587,6 +2685,11 @@ msgstr "Вы не можете послать сообщение этому по
 msgid "No content!"
 msgstr "Нет контента!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Слишком длинно. Максимальная длина сообщения — %d знаков."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Нет адресата."
@@ -2746,7 +2849,7 @@ msgstr "Только %s URL в простом HTTP, пожалуйста."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Неподдерживаемый формат данных."
 
@@ -2896,147 +2999,166 @@ msgstr "Пути"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Директория тем не доступна для чтения: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Директория аватар не доступна для записи: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Директория фоновых изображений не доступна для записи: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Директория локализаций не доступна для чтения: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Неверный SSL-сервер. Максимальная длина составляет 255 символов."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Сайт"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Сервер"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Имя хоста сервера сайта."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Путь"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Путь к сайту"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Путь к локализациям"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Директория темы"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Путь к директории локализаций"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Короткие URL"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Использовать ли короткие (более читаемые и запоминаемые) URL-адреса?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Тема"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Сервер темы"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Тема для сайта."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Путь темы"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Директория темы"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Аватары"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Сервер аватар"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Путь к аватарам"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Директория аватар"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Фоновые изображения"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Сервер фонового изображения"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Путь к фоновому изображению"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Директория фонового изображения"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Никогда"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Иногда"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Всегда"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Использовать SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Когда использовать SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-сервер"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Путь к сайту"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Директория темы"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Путь к директории локализаций"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Аватары"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Сервер аватар"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Путь к аватарам"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Директория аватар"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Фоновые изображения"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Вложения"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Никогда"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Иногда"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Всегда"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Использовать SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Когда использовать SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Сервер, которому направлять SSL-запросы"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Сохранить пути"
 
@@ -3800,7 +3922,7 @@ msgstr "Организация"
 msgid "Description"
 msgstr "Описание"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Статистика"
@@ -3943,45 +4065,45 @@ msgstr "Алиасы"
 msgid "Group actions"
 msgstr "Действия группы"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Лента записей группы %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Лента записей группы %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Лента записей группы %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF для группы %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Участники"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Все участники"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Создано"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3997,7 +4119,7 @@ msgstr ""
 "action.register%%%%), чтобы стать участником группы и получить множество "
 "других возможностей! ([Читать далее](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4010,7 +4132,7 @@ msgstr ""
 "обеспечении [StatusNet](http://status.net/). Участники обмениваются "
 "короткими сообщениями о своей жизни и интересах. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Администраторы"
 
@@ -4969,7 +5091,7 @@ msgid "Plugins"
 msgstr "Плагины"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Версия"
 
@@ -5206,7 +5328,7 @@ msgid "Unable to save tag."
 msgstr "Не удаётся сохранить тег."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Вы заблокированы от подписки."
 
@@ -5326,185 +5448,185 @@ msgid "Untitled page"
 msgstr "Страница без названия"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Главная навигация"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Личный профиль и лента друзей"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Личное"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Изменить ваш email, аватар, пароль, профиль"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Соединить с сервисами"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Соединить"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Изменить конфигурацию сайта"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Настройки"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Пригласите друзей и коллег стать такими же как Вы участниками %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Пригласить"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Выйти"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Выход"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Создать новый аккаунт"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Регистрация"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Войти"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Вход"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Помощь"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Помощь"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Искать людей или текст"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Поиск"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Уведомление сайта"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Локальные виды"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Новая запись"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Навигация по подпискам"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Помощь"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "О проекте"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "ЧаВо"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "TOS"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Пользовательское соглашение"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Исходный код"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Контактная информация"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Бедж"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet лицензия"
 
@@ -5512,7 +5634,7 @@ msgstr "StatusNet лицензия"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5522,7 +5644,7 @@ msgstr ""
 "broughtby%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** — сервис микроблогинга."
@@ -5531,7 +5653,7 @@ msgstr "**%%site.name%%** — сервис микроблогинга."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5544,27 +5666,27 @@ msgstr ""
 "licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Лицензия содержимого сайта"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Содержание и данные %1$s являются личными и конфиденциальными."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 "Авторские права на содержание и данные принадлежат %1$s. Все права защищены."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Авторские права на содержание и данные принадлежат разработчикам. Все права "
@@ -5572,25 +5694,25 @@ msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Все материалы и данные %1$s доступны на условиях лицензии %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Разбиение на страницы"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Сюда"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Туда"
 
@@ -5732,12 +5854,12 @@ msgid "Could not authenticate you."
 msgstr "Не удаётся произвести аутентификацию."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Попытка отменить неизвестный ключ."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Не удаётся удалить аннулированный ключ."
 
@@ -5822,11 +5944,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Доступ по умолчанию для этого приложения: только чтение или чтение и запись"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Отменить"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5853,11 +5970,6 @@ msgstr "Отозвать"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Вложения"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6324,14 +6436,14 @@ msgstr "СМС"
 msgid "Updates by SMS"
 msgstr "Обновления по СМС"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Соединения"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Авторизованные соединённые приложения"
@@ -7128,24 +7240,24 @@ msgstr "«Подтолкнуть»"
 msgid "Send a nudge to this user"
 msgstr "«Подтолкнуть» этого пользователя"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Не удаётся вставить новую подписку."
 
@@ -7500,17 +7612,17 @@ msgid "Moderator"
 msgstr "Модератор"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "пару секунд назад"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "около минуты назад"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7519,12 +7631,12 @@ msgstr[1] ""
 msgstr[2] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "около часа назад"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7533,12 +7645,12 @@ msgstr[1] ""
 msgstr[2] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "около дня назад"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7547,12 +7659,12 @@ msgstr[1] ""
 msgstr[2] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "около месяца назад"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7561,7 +7673,7 @@ msgstr[1] ""
 msgstr[2] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "около года назад"
 
@@ -7591,3 +7703,30 @@ msgstr "Не указан идентификатор пользователя."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Ключ запроса %s авторизован. Пожалуйста, обменяйте его на ключ доступа."
+
+#~ msgid "Deny"
+#~ msgstr "Запретить"
+
+#~ msgid "Path to locales"
+#~ msgstr "Путь к локализациям"
+
+#~ msgid "Theme server"
+#~ msgstr "Сервер темы"
+
+#~ msgid "Theme path"
+#~ msgstr "Путь темы"
+
+#~ msgid "Background server"
+#~ msgstr "Сервер фонового изображения"
+
+#~ msgid "Background path"
+#~ msgstr "Путь к фоновому изображению"
+
+#~ msgid "Background directory"
+#~ msgstr "Директория фонового изображения"
diff --git a/locale/statusnet.pot b/locale/statusnet.pot
index 5acb59d598..61313609cf 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-09 14:04+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -86,14 +86,15 @@ msgstr ""
 msgid "No such page."
 msgstr ""
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -187,12 +188,13 @@ msgstr ""
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr ""
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -219,7 +221,7 @@ msgstr ""
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -291,43 +293,58 @@ msgstr ""
 msgid "Unblock user failed."
 msgstr ""
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr ""
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr ""
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr ""
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr ""
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr ""
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
+#: actions/apidirectmessagenew.php:127
 #, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr ""
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+msgstr[1] ""
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr ""
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -507,15 +524,19 @@ msgstr ""
 msgid "Upload failed."
 msgstr ""
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+msgid "Invalid request token or verifier."
+msgstr ""
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+msgid "Invalid request token."
 msgstr ""
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -533,34 +554,22 @@ msgstr ""
 msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr ""
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr ""
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr ""
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -569,15 +578,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr ""
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr ""
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -586,11 +595,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr ""
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -599,21 +608,43 @@ msgid "Nickname"
 msgstr ""
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr ""
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
 msgstr ""
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr ""
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+msgid "Authorize access to your account information."
+msgstr ""
+
+#: actions/apioauthauthorize.php:433
+msgid "Authorization canceled."
+msgstr ""
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, php-format
+msgid "You have successfully authorized %s."
+msgstr ""
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
@@ -776,7 +807,8 @@ msgid "Preview"
 msgstr ""
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr ""
 
@@ -829,12 +861,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr ""
@@ -847,12 +880,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr ""
@@ -870,6 +904,7 @@ msgstr ""
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -995,7 +1030,7 @@ msgstr ""
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1020,6 +1055,50 @@ msgstr ""
 msgid "Delete this application"
 msgstr ""
 
+#: actions/deletegroup.php:65
+msgid "You must be logged in to delete a group."
+msgstr ""
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr ""
+
+#: actions/deletegroup.php:104
+msgid "You are not allowed to delete this group."
+msgstr ""
+
+#: actions/deletegroup.php:146
+#, php-format
+msgid "Could not delete group %2$s."
+msgstr ""
+
+#: actions/deletegroup.php:153
+#, php-format
+msgid "Deleted group %2$s"
+msgstr ""
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+msgid "Delete group"
+msgstr ""
+
+#: actions/deletegroup.php:197
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+msgid "Do not delete this group"
+msgstr ""
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+msgid "Delete this group"
+msgstr ""
+
 #. 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
@@ -1092,53 +1171,61 @@ msgstr ""
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr ""
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+msgid "Invalid SSL logo URL."
+msgstr ""
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr ""
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr ""
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr ""
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+msgid "SSL logo"
+msgstr ""
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr ""
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr ""
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr ""
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr ""
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr ""
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr ""
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1146,66 +1233,66 @@ msgid ""
 msgstr ""
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr ""
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr ""
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr ""
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr ""
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr ""
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr ""
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr ""
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr ""
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr ""
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr ""
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr ""
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr ""
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr ""
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr ""
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1215,7 +1302,7 @@ msgstr ""
 msgid "Save"
 msgstr ""
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr ""
 
@@ -1677,7 +1764,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr ""
 
@@ -2212,10 +2299,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr ""
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr ""
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2454,6 +2537,11 @@ msgstr ""
 msgid "No content!"
 msgstr ""
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr ""
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr ""
@@ -2605,7 +2693,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr ""
 
@@ -2753,147 +2841,161 @@ msgstr ""
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr ""
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr ""
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr ""
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
+#: actions/pathsadminpanel.php:247
+msgid "Locale Directory"
 msgstr ""
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr ""
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
+#: actions/pathsadminpanel.php:265
+msgid "Server for themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr ""
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr ""
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr ""
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr ""
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr ""
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr ""
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr ""
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr ""
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr ""
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+msgid "SSL path"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+msgid "Directory"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr ""
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr ""
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr ""
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr ""
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr ""
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr ""
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr ""
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr ""
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr ""
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr ""
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr ""
 
@@ -3599,7 +3701,7 @@ msgstr ""
 msgid "Description"
 msgstr ""
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr ""
@@ -3732,45 +3834,45 @@ msgstr ""
 msgid "Group actions"
 msgstr ""
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr ""
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr ""
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr ""
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr ""
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr ""
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr ""
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr ""
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3780,7 +3882,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3789,7 +3891,7 @@ msgid ""
 "their life and interests. "
 msgstr ""
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr ""
 
@@ -4680,7 +4782,7 @@ msgid "Plugins"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr ""
 
@@ -4908,7 +5010,7 @@ msgid "Unable to save tag."
 msgstr ""
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr ""
 
@@ -5028,185 +5130,185 @@ msgid "Untitled page"
 msgstr ""
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr ""
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr ""
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr ""
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr ""
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr ""
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr ""
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr ""
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr ""
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr ""
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr ""
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr ""
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr ""
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr ""
 
@@ -5214,7 +5316,7 @@ msgstr ""
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5222,7 +5324,7 @@ msgid ""
 msgstr ""
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr ""
@@ -5231,7 +5333,7 @@ msgstr ""
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5240,50 +5342,50 @@ msgid ""
 msgstr ""
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr ""
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr ""
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr ""
 
@@ -5423,12 +5525,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5511,11 +5613,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr ""
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5542,11 +5639,6 @@ msgstr ""
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr ""
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -5959,13 +6051,13 @@ msgstr ""
 msgid "Updates by SMS"
 msgstr ""
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 msgctxt "MENU"
 msgid "Connections"
 msgstr ""
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr ""
@@ -6650,24 +6742,24 @@ msgstr ""
 msgid "Send a nudge to this user"
 msgstr ""
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr ""
 
@@ -7018,17 +7110,17 @@ msgid "Moderator"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7036,12 +7128,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7049,12 +7141,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7062,12 +7154,12 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7075,7 +7167,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr ""
 
diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po
index d529ea4bb9..04e5327a16 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:06+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:11+0000\n"
 "Language-Team: Swedish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -93,14 +93,15 @@ msgstr "Spara"
 msgid "No such page."
 msgstr "Ingen sådan sida"
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -200,12 +201,13 @@ msgstr "Du och vänner"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Uppdateringar från %1$s och vänner på %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -232,7 +234,7 @@ msgstr "API-metod hittades inte."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -306,43 +308,61 @@ msgstr "Blockering av användare misslyckades."
 msgid "Unblock user failed."
 msgstr "Hävning av blockering av användare misslyckades."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Direktmeddelanden från %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Alla direktmeddelanden skickade från %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Direktmeddelande till %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Alla direktmeddelanden skickade till %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Ingen meddelandetext!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Detta är för långt. Maximal meddelandestorlek är %d tecken."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Detta är för långt. Maximal meddelandestorlek är %d tecken."
+msgstr[1] "Detta är för långt. Maximal meddelandestorlek är %d tecken."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Mottagare hittades inte."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Kan inte skicka direktmeddelanden till användare som inte är din vän."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Skicka inte meddelande till dig själv; viska lite tyst till dig själv "
+"istället."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -523,15 +543,21 @@ msgstr "grupper på %s"
 msgid "Upload failed."
 msgstr "Uppladdning misslyckades."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Ogiltig inloggnings-token angiven."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Ingen oauth_token-parameter angiven."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Ogiltig token."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -549,34 +575,22 @@ msgstr "Ogiltig token."
 msgid "There was a problem with your session token. Try again, please."
 msgstr "Det var ett problem med din sessions-token. Var vänlig försök igen."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Ogiltigt smeknamn / lösenord!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Databasfel vid borttagning av OAuth-applikationsanvändare."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Databasfel vid infogning av OAuth-applikationsanvändare."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr "Begäran-token %s har godkänts. Byt ut den mot en åtkomst-token."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Begäran-token %s har nekats och återkallats."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -585,15 +599,15 @@ msgstr "Begäran-token %s har nekats och återkallats."
 msgid "Unexpected form submission."
 msgstr "Oväntat inskick av formulär."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "En applikation skulle vilja ansluta till ditt konto"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Tillåt eller neka åtkomst"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -605,11 +619,11 @@ msgstr ""
 "ge tillgång till ditt %4$s-konto till tredje-parter du litar på."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Konto"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -618,23 +632,47 @@ msgid "Nickname"
 msgstr "Smeknamn"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Lösenord"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Neka"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Avbryt"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Tillåt"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Tillåt eller neka åtkomst till din kontoinformation."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Bekräftelse för snabbmeddelanden avbruten."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Begäran-token %s har nekats och återkallats."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Du har inte tillstånd."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Denna metod kräver en POST eller en DELETE."
@@ -796,7 +834,8 @@ msgid "Preview"
 msgstr "Förhandsgranska"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Ta bort"
 
@@ -852,12 +891,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Nej"
@@ -870,12 +910,13 @@ msgstr "Blockera inte denna användare"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Ja"
@@ -893,6 +934,7 @@ msgstr "Misslyckades att spara blockeringsinformation."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1019,7 +1061,7 @@ msgstr "Du är inte ägaren av denna applikation."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Det var ett problem med din sessions-token."
 
@@ -1047,6 +1089,58 @@ msgstr "Ta inte bort denna applikation"
 msgid "Delete this application"
 msgstr "Ta bort denna applikation"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Du måste vara inloggad för att lämna en grupp."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Inget smeknamn eller ID."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Du är inte en medlem i denna grupp."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Kunde inte uppdatera grupp."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s lämnade grupp %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Ta bort användare"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Är du säker på att du vill ta bort denna användare? Det kommer rensa all "
+"data om användaren från databasen, utan en säkerhetskopia."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Ta inte bort denna notis"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Ta bort denna användare"
+
 #. 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
@@ -1123,53 +1217,63 @@ msgstr "Utseende"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Ogiltig webbadress för logtyp."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Ogiltig webbadress för logtyp."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Tema inte tillgängligt: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Byt logotyp"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Webbplatslogotyp"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Webbplatslogotyp"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Byt tema"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Webbplatstema"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Tema för webbplatsen."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Anpassat tema"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Du kan ladda upp ett eget StatusNet-tema som ett .ZIP-arkiv."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Ändra bakgrundsbild"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Bakgrund"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1179,66 +1283,66 @@ msgstr ""
 "filstorleken är %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "På"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Av"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Sätt på eller stäng av bakgrundsbild."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Upprepa bakgrundsbild"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Byt färger"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Innehåll"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Sidofält"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Text"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Länkar"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Avancerat"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Anpassad CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Använd standardvärden"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Återställ standardutseende"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Återställ till standardvärde"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1248,7 +1352,7 @@ msgstr "Återställ till standardvärde"
 msgid "Save"
 msgstr "Spara"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Spara utseende"
 
@@ -1722,7 +1826,7 @@ msgstr "Kunde inte konvertera token för begäran till token för åtkomst."
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Fjärrtjänsten använder en okänd version av OMB-protokollet."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Fel vid uppdatering av fjärrprofil."
 
@@ -2318,10 +2422,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Du måste vara inloggad för att kunna gå med i en grupp."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Inget smeknamn eller ID."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2564,6 +2664,11 @@ msgstr "Du kan inte skicka ett meddelande till den användaren."
 msgid "No content!"
 msgstr "Inget innehåll!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Detta är för långt. Maximal meddelandestorlek är %d tecken."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Ingen mottagare angiven."
@@ -2726,7 +2831,7 @@ msgstr "Endast %s-webbadresser över vanlig HTTP."
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Ett dataformat som inte stödjs"
 
@@ -2874,148 +2979,167 @@ msgstr "Sökvägar"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Katalog med teman är inte läsbar: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Katalog med avatarer är inte skrivbar: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Katalog med bakgrunder är inte skrivbar: %s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Katalog med lokaliseringfiler (locales) är inte läsbar. %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Ogiltigt SSL-servernamn. Den maximala längden är 255 tecken."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Webbplats"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Server"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Värdnamn för webbplatsens server."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Sökväg"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Sökväg till webbplats"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Sökväg till lokaliseringfiler (locales)"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Katalog med teman"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Katalogsökväg till lokaliseringfiler (locales)"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Utsmyckade URL:er"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 "Skall utsmyckade URL:er användas (mer läsbara och lättare att komma ihåg)?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Teman"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Server med teman"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Tema för webbplatsen."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Sökväg till teman"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Katalog med teman"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Avatarer"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Server med avatarer"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Sökväg till avatarer"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Katalog med avatarer"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Bakgrunder"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Server med bakgrunder"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Sökväg till bakgrunder"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Katalog med bakgrunder"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Aldrig"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Ibland"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Alltid"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Använd SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "När SSL skall användas"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-server"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Sökväg till webbplats"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Katalog med teman"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Katalogsökväg till lokaliseringfiler (locales)"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Avatarer"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Server med avatarer"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Sökväg till avatarer"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Katalog med avatarer"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Bakgrunder"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Bilagor"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Aldrig"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Ibland"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Alltid"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Använd SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "När SSL skall användas"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Server att dirigera SSL-begäran till"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Spara sökvägar"
 
@@ -3782,7 +3906,7 @@ msgstr "Organisation"
 msgid "Description"
 msgstr "Beskrivning"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Statistik"
@@ -3925,45 +4049,45 @@ msgstr "Alias"
 msgid "Group actions"
 msgstr "Åtgärder för grupp"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, 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:344
+#: actions/showgroup.php:350
 #, 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:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Flöde av notiser för %s grupp (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF för %s grupp"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Medlemmar"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Alla medlemmar"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Skapad"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3978,7 +4102,7 @@ msgstr ""
 "sina liv och intressen. [Gå med nu](%%%%action.register%%%%) för att bli en "
 "del av denna grupp och många fler! ([Läs mer](%%%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3991,7 +4115,7 @@ msgstr ""
 "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om "
 "sina liv och intressen. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Administratörer"
 
@@ -4945,7 +5069,7 @@ msgid "Plugins"
 msgstr "Insticksmoduler"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Version"
 
@@ -5179,7 +5303,7 @@ msgid "Unable to save tag."
 msgstr "Kunde inte spara tagg."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Du har blivit utestängd från att prenumerera."
 
@@ -5299,185 +5423,185 @@ msgid "Untitled page"
 msgstr "Namnlös sida"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Primär webbplatsnavigation"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Personlig profil och vänners tidslinje"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Personligt"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Ändra din e-post, avatar, lösenord, profil"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Anslut till tjänster"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Anslut"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Ändra webbplatskonfiguration"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Administratör"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Bjud in vänner och kollegor att gå med dig på %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Bjud in"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Logga ut från webbplatsen"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Logga ut"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Skapa ett konto"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Registrera"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Logga in på webbplatsen"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Logga in"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Hjälp mig!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Hjälp"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Sök efter personer eller text"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Sök"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Webbplatsnotis"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Lokala vyer"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Sidnotis"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Sekundär webbplatsnavigation"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Hjälp"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Om"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "Frågor & svar"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Användarvillkor"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Sekretess"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Källa"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Kontakt"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Emblem"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Programvarulicens för StatusNet"
 
@@ -5485,7 +5609,7 @@ msgstr "Programvarulicens för StatusNet"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5495,7 +5619,7 @@ msgstr ""
 "%%](%%site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** är en mikrobloggtjänst."
@@ -5504,7 +5628,7 @@ msgstr "**%%site.name%%** är en mikrobloggtjänst."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5516,51 +5640,51 @@ msgstr ""
 "fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Licens för webbplatsinnehåll"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Innehåll och data av %1$s är privat och konfidensiell."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "Innehåll och data copyright av %1$s. Alla rättigheter reserverade."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade."
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Innehåll och data på %1$s är tillgänglig under licensen %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Numrering av sidor"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Senare"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Tidigare"
 
@@ -5701,12 +5825,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5790,11 +5914,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Avbryt"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5821,11 +5940,6 @@ msgstr "Återkalla"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Bilagor"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6287,14 +6401,14 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "Uppdateringar via SMS"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Anslutningar"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Tillåt anslutna applikationer"
@@ -7091,24 +7205,24 @@ msgstr "Knuffa"
 msgid "Send a nudge to this user"
 msgstr "Skicka en knuff till denna användare"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Fel vid infogning av ny profil."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Fel vid infogning av avatar."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Fel vid infogning av fjärrprofil."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Duplicera notis."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Kunde inte infoga ny prenumeration."
 
@@ -7462,17 +7576,17 @@ msgid "Moderator"
 msgstr "Moderator"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "ett par sekunder sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "för nån minut sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7480,12 +7594,12 @@ msgstr[0] "för ungefär en minut sedan"
 msgstr[1] "för ungefär %d minuter sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "för en timma sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7493,12 +7607,12 @@ msgstr[0] "för ungefär en timma sedan"
 msgstr[1] "för ungefär %d timmar sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "för en dag sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7506,12 +7620,12 @@ msgstr[0] "för ungefär en dag sedan"
 msgstr[1] "för ungefär %d dagar sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "för en månad sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7519,7 +7633,7 @@ msgstr[0] "för ungefär en månad sedan"
 msgstr[1] "för ungefär %d månader sedan"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "för ett år sedan"
 
@@ -7547,3 +7661,29 @@ msgstr "Ingen användar-ID angiven."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr "Begäran-token %s har godkänts. Byt ut den mot en åtkomst-token."
+
+#~ msgid "Deny"
+#~ msgstr "Neka"
+
+#~ msgid "Path to locales"
+#~ msgstr "Sökväg till lokaliseringfiler (locales)"
+
+#~ msgid "Theme server"
+#~ msgstr "Server med teman"
+
+#~ msgid "Theme path"
+#~ msgstr "Sökväg till teman"
+
+#~ msgid "Background server"
+#~ msgstr "Server med bakgrunder"
+
+#~ msgid "Background path"
+#~ msgstr "Sökväg till bakgrunder"
+
+#~ msgid "Background directory"
+#~ msgstr "Katalog med bakgrunder"
diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po
index f5475c9ea5..1a8db7c6ec 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:07+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:13+0000\n"
 "Language-Team: Telugu \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -91,14 +91,15 @@ msgstr "భద్రపరచు"
 msgid "No such page."
 msgstr "అటువంటి పేజీ లేదు."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -193,12 +194,13 @@ msgstr "మీరు మరియు మీ స్నేహితులు"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -226,7 +228,7 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -302,43 +304,59 @@ msgstr "వాడుకరి నిరోధం విఫలమైంది."
 msgid "Unblock user failed."
 msgstr "వాడుకరి నిరోధం విఫలమైంది."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "%s నుండి నేరు సందేశాలు"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "%s నుండి పంపిన అన్ని నేరు సందేశాలు"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "%s కి నేరు సందేశాలు"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "%sకి పంపిన అన్ని నేరు సందేశాలు"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "సందేశపు పాఠ్యం లేదు!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం %d అక్షరాలు."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం %d అక్షరాలు."
+msgstr[1] "చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం %d అక్షరాలు."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "మీ స్నేహితులు కాని వాడుకరులకి నేరు సందేశాలు పంపించలేరు."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "మీకు మీరే సందేశాన్ని పంపుకోకండి; దాని బదులు మీలో మీరే మెల్లగా చెప్పుకోండి."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -518,15 +536,21 @@ msgstr "%s పై గుంపులు"
 msgid "Upload failed."
 msgstr "ఎక్కింపు విఫలమైంది."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "సందేశపు విషయం సరైనది కాదు"
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr ""
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "తప్పుడు పాత్ర."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -544,35 +568,23 @@ msgstr "తప్పుడు పాత్ర."
 msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "తప్పుడు పేరు / సంకేతపదం!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "ఈ ఉపకరణాన్ని తొలగించకు"
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 #, fuzzy
 msgid "Database error inserting OAuth application user."
 msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -581,15 +593,15 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr ""
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "ఒక ఉపకరణం మీ ఖాతాకి అనుసంధానమవ్వాలనుకుంటూంది."
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "అనుమతిని ఇవ్వండి లేదా తిరస్కరించండి"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -598,11 +610,11 @@ msgid ""
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "ఖాతా"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -611,23 +623,47 @@ msgid "Nickname"
 msgstr "పేరు"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "సంకేతపదం"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "తిరస్కరించు"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "రద్దుచేయి"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "అనుమతించు"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "మీ ఖాతా సమాచారాన్ని సంప్రాపించడానికి అనుమతించండి లేదా నిరాకరించండి."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "IM నిర్ధారణ రద్దయింది."
+
+#: actions/apioauthauthorize.php:435
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "మీకు అధీకరణ లేదు."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr ""
@@ -790,7 +826,8 @@ msgid "Preview"
 msgstr "మునుజూపు"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "తొలగించు"
 
@@ -845,12 +882,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "కాదు"
@@ -863,12 +901,13 @@ msgstr "ఈ వాడుకరిని నిరోధించకు"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "అవును"
@@ -886,6 +925,7 @@ msgstr "నిరోధపు సమాచారాన్ని భద్రప
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1011,7 +1051,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని 
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1038,6 +1078,58 @@ msgstr "ఈ ఉపకరణాన్ని తొలగించకు"
 msgid "Delete this application"
 msgstr "ఈ ఉపకరణాన్ని తొలగించు"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Jabber ID లేదు."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "మీరు ఈ గుంపులో సభ్యులు కాదు."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "గుంపుని తాజాకరించలేకున్నాం."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "వాడుకరిని తొలగించు"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"మీరు నిజంగానే ఈ వాడుకరిని తొలగించాలనుకుంటున్నారా? ఇది ఆ వాడుకరి భోగట్టాని డాటాబేసు నుండి తొలగిస్తుంది, "
+"వెనక్కి తేలేకుండా."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "ఈ నోటీసుని తొలగించకు"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "ఈ వాడుకరిని తొలగించు"
+
 #. 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
@@ -1112,54 +1204,64 @@ msgstr "రూపురేఖలు"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "చిహ్నపు URL చెల్లదు."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "చిహ్నపు URL చెల్లదు."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "అలంకారం అందుబాటులో లేదు: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "చిహ్నాన్ని మార్చు"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "సైటు చిహ్నం"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "సైటు చిహ్నం"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "అలంకారాన్ని మార్చు"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "సైటు అలంకారం"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "సైటుకి అలంకారం."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 #, fuzzy
 msgid "Custom theme"
 msgstr "సైటు అలంకారం"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr ""
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "నేపథ్య చిత్రాన్ని మార్చు"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "నేపథ్యం"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1167,70 +1269,70 @@ msgid ""
 msgstr "సైటుకి మీరు నేపథ్యపు చిత్రాన్ని ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం %1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "ఆన్"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "ఆఫ్"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 #, fuzzy
 msgid "Turn background image on or off."
 msgstr "నేపథ్య చిత్రాన్ని మార్చు"
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 #, fuzzy
 msgid "Tile background image"
 msgstr "నేపథ్య చిత్రాన్ని మార్చు"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "రంగులను మార్చు"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "విషయం"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "పక్కపట్టీ"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "పాఠ్యం"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "లంకెలు"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "ఉన్నత"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "ప్రత్యేక CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "అప్రమేయాలని ఉపయోగించు"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 #, fuzzy
 msgid "Restore default designs"
 msgstr "అప్రమేయాలని ఉపయోగించు"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 #, fuzzy
 msgid "Reset back to default"
 msgstr "అప్రమేయాలని ఉపయోగించు"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1240,7 +1342,7 @@ msgstr "అప్రమేయాలని ఉపయోగించు"
 msgid "Save"
 msgstr "భద్రపరచు"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "రూపురేఖలని భద్రపరచు"
 
@@ -1719,7 +1821,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr ""
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు"
@@ -2299,10 +2401,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "గుంపుల్లో చేరడానికి మీరు ప్రవేశించి ఉండాలి."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Jabber ID లేదు."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2543,6 +2641,11 @@ msgstr "ఈ వాడుకరికి మీరు సందేశాన్న
 msgid "No content!"
 msgstr "విషయం లేదు!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం %d అక్షరాలు."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "ఎవరికి పంపించాలో పేర్కొనలేదు."
@@ -2701,7 +2804,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr ""
 
@@ -2853,152 +2956,168 @@ msgstr "త్రోవలు"
 msgid "Path and server settings for this StatusNet site"
 msgstr ""
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "అలంకారం అందుబాటులో లేదు: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "అవతారాల సంచయం"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "నేపథ్యాల సంచయం"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "హోమ్ పేజీ URL సరైనది కాదు."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 #, fuzzy
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "చెల్లని స్వాగత పాఠ్యం. గరిష్ఠ పొడవు 255 అక్షరాలు."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "సైటు"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "సేవకి"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "త్రోవ"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "సైటు అలంకారం"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "అలంకార సంచయం"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "అలంకారం"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "అలంకారాల సేవకి"
-
-#: actions/pathsadminpanel.php:268
+#: actions/pathsadminpanel.php:265
 #, fuzzy
-msgid "Theme path"
-msgstr "అలంకారం"
+msgid "Server for themes"
+msgstr "సైటుకి అలంకారం."
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
+
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
+msgid "SSL server"
+msgstr "సేవకి"
+
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "సైటు అలంకారం"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
 msgstr "అలంకార సంచయం"
 
-#: actions/pathsadminpanel.php:279
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
 msgid "Avatars"
 msgstr "అవతారాలు"
 
-#: actions/pathsadminpanel.php:284
+#: actions/pathsadminpanel.php:293
 msgid "Avatar server"
 msgstr "అవతారాల సేవకి"
 
-#: actions/pathsadminpanel.php:288
+#: actions/pathsadminpanel.php:297
 #, fuzzy
 msgid "Avatar path"
 msgstr "అవతారాన్ని తాజాకరించాం."
 
-#: actions/pathsadminpanel.php:292
+#: actions/pathsadminpanel.php:301
 msgid "Avatar directory"
 msgstr "అవతారాల సంచయం"
 
-#: actions/pathsadminpanel.php:301
+#: actions/pathsadminpanel.php:310
 msgid "Backgrounds"
 msgstr "నేపథ్యాలు"
 
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "నేపథ్యాల సేవకి"
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "జోడింపులు"
 
-#: actions/pathsadminpanel.php:309
-#, fuzzy
-msgid "Background path"
-msgstr "నేపథ్యం"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "నేపథ్యాల సంచయం"
-
-#: actions/pathsadminpanel.php:320
+#: actions/pathsadminpanel.php:366
 #, fuzzy
 msgid "SSL"
 msgstr "SSLని ఉపయోగించు"
 
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
 msgid "Never"
 msgstr "సేవకి"
 
-#: actions/pathsadminpanel.php:324
+#: actions/pathsadminpanel.php:371
 msgid "Sometimes"
 msgstr "కొన్నిసార్లు"
 
-#: actions/pathsadminpanel.php:325
+#: actions/pathsadminpanel.php:372
 msgid "Always"
 msgstr "ఎల్లప్పుడూ"
 
-#: actions/pathsadminpanel.php:329
+#: actions/pathsadminpanel.php:374
 msgid "Use SSL"
 msgstr "SSLని ఉపయోగించు"
 
-#: actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:375
 msgid "When to use SSL"
 msgstr "SSLని ఎప్పుడు ఉపయోగించాలి"
 
-#: actions/pathsadminpanel.php:335
-msgid "SSL server"
-msgstr "సేవకి"
-
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 #, fuzzy
 msgid "Save paths"
 msgstr "కొత్త సందేశం"
@@ -3755,7 +3874,7 @@ msgstr "సంస్ధ"
 msgid "Description"
 msgstr "వివరణ"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "గణాంకాలు"
@@ -3893,45 +4012,45 @@ msgstr "మారుపేర్లు"
 msgid "Group actions"
 msgstr "గుంపు చర్యలు"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "%s కొరకు స్పందనల ఫీడు (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "%s కొరకు స్పందనల ఫీడు (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "%s గుంపు"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "సభ్యులు"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "అందరు సభ్యులూ"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "సృష్టితం"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3947,7 +4066,7 @@ msgstr ""
 "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%"
 "doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, fuzzy, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3962,7 +4081,7 @@ msgstr ""
 "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%"
 "doc.help%%%%))"
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "నిర్వాహకులు"
 
@@ -4889,7 +5008,7 @@ msgid "Plugins"
 msgstr "ప్లగిన్లు"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "సంచిక"
 
@@ -5122,7 +5241,7 @@ msgid "Unable to save tag."
 msgstr "ట్యాగులని భద్రపరచలేకపోయాం."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు."
 
@@ -5244,186 +5363,186 @@ msgid "Untitled page"
 msgstr "శీర్షికలేని పేజీ"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "ప్రాధమిక సైటు మార్గదర్శిని"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr ""
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "వ్యక్తిగత"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 #, fuzzy
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "అనుసంధానాలు"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "అనుసంధానించు"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "సైటు స్వరూపణాన్ని మార్చండి"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "నిర్వాహకులు"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "ఆహ్వానించు"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "సైటు నుండి నిష్క్రమించు"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "నిష్క్రమించు"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "ఖాతాని సృష్టించుకోండి"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "నమోదు"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "సైటు లోనికి ప్రవేశించండి"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "ప్రవేశించు"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "సహాయం కావాలి!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "సహాయం"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "ప్రజలు లేదా పాఠ్యం కొరకు వెతకండి"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "వెతుకు"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "సైటు గమనిక"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "స్థానిక వీక్షణలు"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "పేజీ గమనిక"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "ద్వితీయ సైటు మార్గదర్శిని"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "సహాయం"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "గురించి"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "ప్రశ్నలు"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "సేవా నియమాలు"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "అంతరంగికత"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "మూలము"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "సంప్రదించు"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "బాడ్జి"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు"
 
@@ -5431,7 +5550,7 @@ msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైస
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5441,7 +5560,7 @@ msgstr ""
 "అందిస్తున్న సూక్ష్మ బ్లాగింగు సేవ."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం."
@@ -5450,7 +5569,7 @@ msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగి
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5462,50 +5581,50 @@ msgstr ""
 "పై నడుస్తుంది."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "పేజీకరణ"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "తర్వాత"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "ఇంతక్రితం"
 
@@ -5648,12 +5767,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5737,11 +5856,6 @@ msgstr "చదవడం-వ్రాయడం"
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "రద్దుచేయి"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5769,11 +5883,6 @@ msgstr "తొలగించు"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "జోడింపులు"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6202,14 +6311,14 @@ msgstr "SSLని ఉపయోగించు"
 msgid "Updates by SMS"
 msgstr ""
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "అనుసంధానాలు"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "అధీకృత అనుసంధాన ఉపకరణాలు"
@@ -6994,24 +7103,24 @@ msgstr "బాడ్జి"
 msgid "Send a nudge to this user"
 msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "కొత్త చందాని చేర్చలేకపోయాం."
 
@@ -7366,17 +7475,17 @@ msgid "Moderator"
 msgstr "సమన్వయకర్త"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "కొన్ని క్షణాల క్రితం"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "ఓ నిమిషం క్రితం"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7384,12 +7493,12 @@ msgstr[0] "సుమారు ఒక నిమిషం క్రితం"
 msgstr[1] "సుమారు %d నిమిషాల క్రితం"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "ఒక గంట క్రితం"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7397,12 +7506,12 @@ msgstr[0] "ఒక గంట"
 msgstr[1] "%d గంటల"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "ఓ రోజు క్రితం"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7410,12 +7519,12 @@ msgstr[0] "ఒక రోజు"
 msgstr[1] "%d రోజుల"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "ఓ నెల క్రితం"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7423,7 +7532,7 @@ msgstr[0] "ఒక నెల"
 msgstr[1] "%d నెలల"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "ఒక సంవత్సరం క్రితం"
 
@@ -7451,3 +7560,23 @@ msgstr "గుంపు ఏమీ పేర్కొనలేదు."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid "Deny"
+#~ msgstr "తిరస్కరించు"
+
+#~ msgid "Theme server"
+#~ msgstr "అలంకారాల సేవకి"
+
+#, fuzzy
+#~ msgid "Theme path"
+#~ msgstr "అలంకారం"
+
+#~ msgid "Background server"
+#~ msgstr "నేపథ్యాల సేవకి"
+
+#, fuzzy
+#~ msgid "Background path"
+#~ msgstr "నేపథ్యం"
+
+#~ msgid "Background directory"
+#~ msgstr "నేపథ్యాల సంచయం"
diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po
index 5c859186d2..fcc6bb8d27 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:08+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:14+0000\n"
 "Language-Team: Turkish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -93,14 +93,15 @@ msgstr "Kaydet"
 msgid "No such page."
 msgstr "Böyle bir kullanıcı yok."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -167,6 +168,8 @@ msgid ""
 "Try subscribing to more people, [join a group](%%action.groups%%) or post "
 "something yourself."
 msgstr ""
+"Daha fazla kişiye abone olmayı deneyin, [bir gruba katılın](%%action.groups%"
+"%) veya kendiniz bir şeyler yazın."
 
 #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@"
 #: actions/all.php:146
@@ -175,6 +178,9 @@ msgid ""
 "You can try to [nudge %1$s](../%2$s) from their profile or [post something "
 "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)."
 msgstr ""
+"Profil sayfalarından insanları [dürtmeyi %1$s](../%2$s) deneyebilirsiniz "
+"veya [onlara bir şeyler yazabilirsiniz](%%%%action.newnotice%%%%?"
+"status_textarea=%3$s)"
 
 #: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211
 #, php-format
@@ -182,6 +188,8 @@ msgid ""
 "Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
 "post a notice to them."
 msgstr ""
+"Neden bir [hesap oluşturup](%%%%action.register%%%%) sonrasında %s "
+"kullanıcısını dürtmüyor veya onlara durum mesajı yazmıyorsunuz."
 
 #. TRANS: H1 text
 #: actions/all.php:182
@@ -194,14 +202,15 @@ msgstr "Sen ve arkadaşların"
 #: actions/apitimelinehome.php:122
 #, php-format
 msgid "Updates from %1$s and friends on %2$s!"
-msgstr ""
+msgstr "%2$s üzerindeki %1$s ve arkadaşlarından güncellemeler!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -229,20 +238,22 @@ msgstr "Onay kodu bulunamadı."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
 #: actions/apigroupleave.php:93 actions/apimediaupload.php:68
 #: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199
 msgid "This method requires a POST."
-msgstr ""
+msgstr "Bu yöntem bir POST gerektirir."
 
 #: actions/apiaccountupdatedeliverydevice.php:107
 msgid ""
 "You must specify a parameter named 'device' with a value of one of: sms, im, "
 "none."
 msgstr ""
+"sms, im, none değerlerinden birine sahip 'device' isimli bir parametre "
+"belirtmelisiniz."
 
 #: actions/apiaccountupdatedeliverydevice.php:134
 #, fuzzy
@@ -275,6 +286,8 @@ msgid ""
 "The server was unable to handle that much POST data (%s bytes) due to its "
 "current configuration."
 msgstr ""
+"Sunucu, şu anki yapılandırması dolayısıyla bu kadar çok POST verisiyle (%s "
+"bytes) başa çıkamıyor."
 
 #: actions/apiaccountupdateprofilebackgroundimage.php:137
 #: actions/apiaccountupdateprofilebackgroundimage.php:147
@@ -304,43 +317,57 @@ msgstr "Kullanıcıyı engelleme başarısız oldu."
 msgid "Unblock user failed."
 msgstr "Kullanıcının engellemesini kaldırma başarısız oldu."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "%s kullanıcısından özel mesajlar"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "%s tarafından gönderilmiş tüm özel mesajlar"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "%s kullanıcısına özel mesaj"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "%s kullanıcısına gönderilmiş tüm özel mesajlar"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Mesaj metni yok!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Bu çok uzun. Maksimum mesaj boyutu %d karakterdir."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Bu çok uzun. Maksimum mesaj boyutu %d karakterdir."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Alıcı kullanıcı bulunamadı."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "Arkadaşınız olmayan kullanıcılara özel mesaj gönderemezsiniz."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -441,7 +468,7 @@ msgstr "Yer bilgisi çok uzun (azm: 255 karakter)."
 #: actions/newgroup.php:159
 #, php-format
 msgid "Too many aliases! Maximum %d."
-msgstr ""
+msgstr "Çok fazla diğerisim! En fazla %d."
 
 #: actions/apigroupcreate.php:268
 #, php-format
@@ -450,14 +477,14 @@ msgstr "Geçersiz büyüklük."
 
 #: actions/apigroupcreate.php:277 actions/editgroup.php:232
 #: actions/newgroup.php:172
-#, fuzzy, php-format
+#, php-format
 msgid "Alias \"%s\" already in use. Try another one."
-msgstr "Takma ad kullanımda. Başka bir tane deneyin."
+msgstr "Diğerisim \"%s\" kullanımda. Başka bir tane deneyin."
 
 #: actions/apigroupcreate.php:290 actions/editgroup.php:238
 #: actions/newgroup.php:178
 msgid "Alias can't be the same as nickname."
-msgstr ""
+msgstr "Diğerisim, kullanıcı adı ile aynı olamaz."
 
 #: actions/apigroupismember.php:96 actions/apigroupjoin.php:106
 #: actions/apigroupleave.php:106 actions/apigroupmembership.php:92
@@ -478,9 +505,9 @@ msgstr "Bu gruptan yönetici tarafından engellendiniz."
 #. TRANS: Message given having failed to add a user to a group.
 #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
 #: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350
-#, fuzzy, php-format
+#, php-format
 msgid "Could not join user %1$s to group %2$s."
-msgstr "Sunucuya yönlendirme yapılamadı: %s"
+msgstr "%1$s kullanıcısı, %2$s grubuna katılamadı."
 
 #: actions/apigroupleave.php:116
 msgid "You are not a member of this group."
@@ -502,9 +529,9 @@ msgstr "%s kullanıcısının grupları"
 
 #. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
 #: actions/apigrouplist.php:108
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s groups %2$s is a member of."
-msgstr "Bize o profili yollamadınız"
+msgstr "%2$s kullanıcısının üye olduğu %1$s grupları."
 
 #. TRANS: Message is used as a title. %s is a site name.
 #. TRANS: Message is used as a page title. %s is a nick name.
@@ -522,16 +549,21 @@ msgstr "%s üzerindeki gruplar"
 msgid "Upload failed."
 msgstr "Yükleme başarısız."
 
-#: actions/apioauthauthorize.php:101
-msgid "No oauth_token parameter provided."
-msgstr ""
-
-#: actions/apioauthauthorize.php:106
+#: actions/apioauthaccesstoken.php:108
 #, fuzzy
-msgid "Invalid token."
-msgstr "Geçersiz büyüklük."
+msgid "Invalid request token or verifier."
+msgstr "Geçersiz durum mesajı"
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:109
+msgid "No oauth_token parameter provided."
+msgstr "Hiçbir oauth_token parametresi sağlanmıyor."
+
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
+msgstr "Geçersiz belirteç."
+
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -547,38 +579,24 @@ msgstr "Geçersiz büyüklük."
 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
 #: lib/designsettings.php:294
 msgid "There was a problem with your session token. Try again, please."
-msgstr ""
+msgstr "Oturum belirtecinizde bir sorun var. Lütfen, tekrar deneyin."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Geçersiz kullanıcı adı / parola!"
 
-#: actions/apioauthauthorize.php:159
-#, fuzzy
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
-msgstr "Kullanıcı ayarlamada hata oluştu."
+msgstr "OAuth uygulama kullanıcısı silerken veritabanı hatası."
 
-#: actions/apioauthauthorize.php:185
-#, fuzzy
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
-msgstr "Cevap eklenirken veritabanı hatası: %s"
-
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr ""
+msgstr "OAuth uygulama kullanıcısı eklerken veritabanı hatası."
 
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -587,28 +605,32 @@ msgstr ""
 msgid "Unexpected form submission."
 msgstr "Beklenmeğen form girdisi."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
-msgstr ""
+msgstr "Bir uygulama hesabınıza bağlanmak istiyor"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
-msgstr ""
+msgstr "Erişime izin verin ya da erişimi engelleyin"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s 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 ""
+"%2$s tarafından sunulan %1$s uygulaması, %4"
+"$s hesap verileriniz üzerinde şunları yapmak istiyor: %3$s. "
+"%4$s hesabınıza erişmek için yalnızca güvendiğiniz üçüncü şahıslara izin "
+"vermelisiniz."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Hesap"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -617,26 +639,50 @@ msgid "Nickname"
 msgstr "Takma ad"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Parola"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Reddet"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "İptal et"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "İzin Ver"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
+msgstr "Hesap bilgilerinize erişim için izin verin ya da erişimi reddedin."
+
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Onay kodu yok."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "İstek belirteci %s, reddedildi ve iptal edildi."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Takip talebine izin verildi"
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
 msgstr ""
 
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
-msgstr ""
+msgstr " Bu yöntem bir POST veya DELETE gerektirir."
 
 #: actions/apistatusesdestroy.php:135
 msgid "You may not delete another user's status."
@@ -797,7 +843,8 @@ msgid "Preview"
 msgstr "Önizleme"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Sil"
 
@@ -854,12 +901,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Hayır"
@@ -872,12 +920,13 @@ msgstr "Bu kullanıcıyı engelleme"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Evet"
@@ -895,6 +944,7 @@ msgstr "Engelleme bilgisinin kaydedilmesi başarısızlığa uğradı."
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1020,7 +1070,7 @@ msgstr "Bu uygulamanın sahibi değilsiniz."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr ""
 
@@ -1048,6 +1098,59 @@ msgstr "Bu uygulamayı silme"
 msgid "Delete this application"
 msgstr "Bu uygulamayı sil"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Bir grup oluşturmak için giriş yapmış olmanız gerekir."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "Takma ad yok"
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Bu grubun bir üyesi değilsiniz."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Grup güncellenemedi."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s'in %2$s'deki durum mesajları "
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Kullanıcıyı sil"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Bu kullanıcıyı silmek istediğinizden emin misiniz? Bu, veritabanından "
+"kullanıcıya ait tüm verileri herhangi bir yedek olmaksızın temizleyecektir."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Bu durum mesajını silme"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Bu kullanıcıyı sil"
+
 #. 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
@@ -1124,53 +1227,63 @@ msgstr "Dizayn"
 msgid "Design settings for this StatusNet site"
 msgstr ""
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Geçersiz logo bağlantısı."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Geçersiz logo bağlantısı."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Tema mevcut değil: %s"
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Değiştir"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Site logosu"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Site logosu"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Temayı değiştir"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Site teması"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Site için tema."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Özel tema"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Özel bir StatusNet temasını .ZIP arşivi olarak yükleyebilirsiniz."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Arkaplan resmini değiştir"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Arkaplan"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1180,66 +1293,66 @@ msgstr ""
 "$s'dir."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Açık"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Kapalı"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Arkaplan resmini açın ya da kapatın."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Arkaplan resmini döşe"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Renkleri değiştir"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "İçerik"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Kenar Çubuğu"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Metin"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Bağlantılar"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Gelişmiş"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Özel CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "Öntanımlıları kullan"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr ""
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Öntanımlıya geri dön"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1249,7 +1362,7 @@ msgstr "Öntanımlıya geri dön"
 msgid "Save"
 msgstr "Kaydet"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Dizaynı kaydet"
 
@@ -1728,7 +1841,7 @@ msgstr ""
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "OMB protokolünün bilinmeğen sürümü."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 #, fuzzy
 msgid "Error updating remote profile."
 msgstr "Uzaktaki profili güncellemede hata oluştu"
@@ -2290,11 +2403,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Gruba katılmak için giriş yapmalısınız."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-#, fuzzy
-msgid "No nickname or ID."
-msgstr "Takma ad yok"
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2543,6 +2651,11 @@ msgstr "Bize o profili yollamadınız"
 msgid "No content!"
 msgstr "İçerik yok!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Bu çok uzun. Maksimum mesaj boyutu %d karakterdir."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr ""
@@ -2696,7 +2809,7 @@ msgstr ""
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Desteklenen bir veri biçimi değil."
 
@@ -2849,151 +2962,169 @@ msgstr "Yollar"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Bu StatusNet sitesi için yol ve sunucu ayarları"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, fuzzy, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, fuzzy, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, fuzzy, php-format
 msgid "Background directory not writable: %s."
 msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, fuzzy, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr ""
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Site"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Sunucu"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr ""
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Yol"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Site yolu"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr ""
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Avatar güncellendi."
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr ""
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr ""
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr ""
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr ""
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Site için tema."
+
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
 msgstr ""
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
+msgid "SSL server"
+msgstr "Sunucu"
+
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
 msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Site yolu"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
 msgstr ""
 
-#: actions/pathsadminpanel.php:279
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Avatar güncellendi."
+
+#: actions/pathsadminpanel.php:281
+msgid "Directory where themes are located"
+msgstr ""
+
+#: actions/pathsadminpanel.php:288
 #, fuzzy
 msgid "Avatars"
 msgstr "Avatar"
 
-#: actions/pathsadminpanel.php:284
+#: actions/pathsadminpanel.php:293
 msgid "Avatar server"
 msgstr "Avatar"
 
-#: actions/pathsadminpanel.php:288
+#: actions/pathsadminpanel.php:297
 #, fuzzy
 msgid "Avatar path"
 msgstr "Avatar güncellendi."
 
-#: actions/pathsadminpanel.php:292
+#: actions/pathsadminpanel.php:301
 #, fuzzy
 msgid "Avatar directory"
 msgstr "Avatar güncellendi."
 
-#: actions/pathsadminpanel.php:301
+#: actions/pathsadminpanel.php:310
 msgid "Backgrounds"
 msgstr ""
 
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
 msgstr ""
 
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr ""
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr ""
-
-#: actions/pathsadminpanel.php:320
+#: actions/pathsadminpanel.php:366
 msgid "SSL"
 msgstr ""
 
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
 msgid "Never"
 msgstr "Sunucu"
 
-#: actions/pathsadminpanel.php:324
+#: actions/pathsadminpanel.php:371
 #, fuzzy
 msgid "Sometimes"
 msgstr "Durum mesajları"
 
-#: actions/pathsadminpanel.php:325
+#: actions/pathsadminpanel.php:372
 msgid "Always"
 msgstr ""
 
-#: actions/pathsadminpanel.php:329
+#: actions/pathsadminpanel.php:374
 msgid "Use SSL"
 msgstr ""
 
-#: actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:375
 msgid "When to use SSL"
 msgstr ""
 
-#: actions/pathsadminpanel.php:335
-msgid "SSL server"
-msgstr "Sunucu"
-
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr ""
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 #, fuzzy
 msgid "Save paths"
 msgstr "Yeni durum mesajı"
@@ -3749,7 +3880,7 @@ msgstr "Organizasyon"
 msgid "Description"
 msgstr "Tanım"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "İstatistikler"
@@ -3877,52 +4008,51 @@ msgstr "Not"
 
 #: actions/showgroup.php:293 lib/groupeditform.php:184
 msgid "Aliases"
-msgstr ""
+msgstr "Diğerisimler"
 
 #: actions/showgroup.php:302
 msgid "Group actions"
 msgstr ""
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, fuzzy, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "%s için durum RSS beslemesi"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, fuzzy, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "%s için durum RSS beslemesi"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, fuzzy, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "%s için durum RSS beslemesi"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, fuzzy, php-format
 msgid "FOAF for %s group"
 msgstr "%s için durum RSS beslemesi"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
-#, fuzzy
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
-msgstr "Üyelik başlangıcı"
+msgstr "Üyeler"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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 ""
+msgstr "(Yok)"
 
-#: actions/showgroup.php:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Tüm üyeler"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Oluşturuldu"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3932,7 +4062,7 @@ msgid ""
 "of this group and many more! ([Read more](%%%%doc.help%%%%))"
 msgstr ""
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3941,7 +4071,7 @@ msgid ""
 "their life and interests. "
 msgstr ""
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Yöneticiler"
 
@@ -4875,7 +5005,7 @@ msgid "Plugins"
 msgstr "Eklentiler"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Sürüm"
 
@@ -5111,7 +5241,7 @@ msgid "Unable to save tag."
 msgstr "Etiket kaydedilemedi."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr ""
 
@@ -5233,54 +5363,54 @@ msgid "Untitled page"
 msgstr "Başlıksız sayfa"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr ""
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Kişisel profil ve arkadaşların zaman çizelgesi"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Kişisel"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "E-postanızı, kullanıcı resminizi, parolanızı, profilinizi değiştirin"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "Servislere bağlan"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "Bağlan"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Site yapılandırmasını değiştir"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Yönetim"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
@@ -5289,135 +5419,135 @@ msgstr ""
 "edin"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Davet et"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr ""
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 #, fuzzy
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Çıkış"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Bir hesap oluştur"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Kayıt"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Siteye giriş"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Giriş"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Bana yardım et!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Yardım"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Kişi ya da yazılar için arama yap"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Ara"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 #, fuzzy
 msgid "Site notice"
 msgstr "Yeni durum mesajı"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr ""
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 #, fuzzy
 msgid "Page notice"
 msgstr "Yeni durum mesajı"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 #, fuzzy
 msgid "Secondary site navigation"
 msgstr "Abonelikler"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Yardım"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Hakkında"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "SSS"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr ""
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Gizlilik"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Kaynak"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "İletişim"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr ""
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet yazılım lisansı"
 
@@ -5425,7 +5555,7 @@ msgstr "StatusNet yazılım lisansı"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, fuzzy, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5435,7 +5565,7 @@ msgstr ""
 "hazırlanan anında mesajlaşma ağıdır. "
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır."
@@ -5444,7 +5574,7 @@ msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5456,50 +5586,50 @@ msgstr ""
 "microbloglama yazılımının %s. versiyonunu kullanmaktadır."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Site içeriği lisansı"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr ""
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr ""
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr ""
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Sonra"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Önce"
 
@@ -5641,12 +5771,12 @@ msgid "Could not authenticate you."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr ""
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr ""
 
@@ -5734,11 +5864,6 @@ msgstr ""
 msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "İptal et"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5765,11 +5890,6 @@ msgstr "Geri al"
 msgid "author element must contain a name element."
 msgstr ""
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr ""
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6191,14 +6311,14 @@ msgstr ""
 msgid "Updates by SMS"
 msgstr ""
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "Bağlan"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr ""
@@ -6915,24 +7035,24 @@ msgstr ""
 msgid "Send a nudge to this user"
 msgstr ""
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr ""
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr ""
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr ""
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr ""
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Yeni abonelik eklenemedi."
 
@@ -7302,60 +7422,60 @@ msgid "Moderator"
 msgstr ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "birkaç saniye önce"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "yaklaşık bir dakika önce"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "yaklaşık bir saat önce"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "yaklaşık bir gün önce"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "yaklaşık bir ay önce"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
 msgstr[0] ""
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "yaklaşık bir yıl önce"
 
@@ -7383,3 +7503,13 @@ msgstr "Yeni durum mesajı"
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "İstek belirteci %s yetkilendirilmemiş. Bir giriş belirteci için "
+#~ "değiştirin."
+
+#~ msgid "Deny"
+#~ msgstr "Reddet"
diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po
index 0743548676..8886c5f3ef 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:09+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:16+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -96,14 +96,15 @@ msgstr "Зберегти"
 msgid "No such page."
 msgstr "Немає такої сторінки."
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -203,12 +204,13 @@ msgstr "Ви з друзями"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "Оновлення від %1$s та друзів на %2$s!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -235,7 +237,7 @@ msgstr "API метод не знайдено."
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -310,44 +312,62 @@ msgstr "Спроба заблокувати користувача невдал
 msgid "Unblock user failed."
 msgstr "Спроба розблокувати користувача невдала."
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "Прямі повідомлення від %s"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "Всі прямі повідомлення надіслані від %s"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "Пряме повідомлення до %s"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "Всі прямі повідомлення надіслані до %s"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "Повідомлення без тексту!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Надто довго. Максимальний розмір %d знаків."
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "Надто довго. Максимальний розмір %d знаків."
+msgstr[1] "Надто довго. Максимальний розмір %d знаків."
+msgstr[2] "Надто довго. Максимальний розмір %d знаків."
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "Отримувача не знайдено."
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr ""
 "Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом."
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Не надсилайте повідомлень самому собі; краще поговоріть із собою вголос."
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -529,15 +549,21 @@ msgstr "спільноти на %s"
 msgid "Upload failed."
 msgstr "Збій при завантаженні."
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "Токен для входу визначено як неправильний."
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Жодного параметру oauth_token не забезпечено."
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "Невірний токен."
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -556,36 +582,22 @@ msgid "There was a problem with your session token. Try again, please."
 msgstr ""
 "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка."
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "Недійсне ім’я / пароль!"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "Помилка бази даних при видаленні користувача OAuth-додатку."
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "Помилка бази даних при додаванні користувача OAuth-додатку."
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-"Токен запиту %s було авторизовано. Будь ласка, обміняйте його на токен "
-"доступу."
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "Токен запиту %s було скасовано і відхилено."
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -594,15 +606,15 @@ msgstr "Токен запиту %s було скасовано і відхиле
 msgid "Unexpected form submission."
 msgstr "Несподіване представлення форми."
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "Запит на дозвіл під’єднатися до вашого облікового запису"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "Дозволити або заборонити доступ"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -615,11 +627,11 @@ msgstr ""
 "довіряєте."
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "Акаунт"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -628,23 +640,47 @@ msgid "Nickname"
 msgstr "Ім’я користувача"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "Пароль"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "Відхилити"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Скасувати"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "Дозволити"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "Дозволити або заборонити доступ до вашого облікового запису."
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "Підтвердження ІМ скасовано."
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "Токен запиту %s було скасовано і відхилено."
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "Не авторизовано."
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "Цей метод потребує або НАПИСАТИ, або ВИДАЛИТИ."
@@ -807,7 +843,8 @@ msgid "Preview"
 msgstr "Перегляд"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "Видалити"
 
@@ -863,12 +900,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "Ні"
@@ -881,12 +919,13 @@ msgstr "Не блокувати цього користувача"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "Так"
@@ -904,6 +943,7 @@ msgstr "Збереження інформації про блокування з
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1029,7 +1069,7 @@ msgstr "Ви не є власником цього додатку."
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "Виникли певні проблеми з токеном поточної сесії."
 
@@ -1057,6 +1097,58 @@ msgstr "Не видаляти додаток"
 msgid "Delete this application"
 msgstr "Видалити додаток"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "Ви повинні спочатку увійти на сайт, аби залишити спільноту."
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Немає імені або ІД."
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "Ви не стоїте у цій спільноті."
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "Не вдалося оновити спільноту."
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s залишив спільноту %2$s"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "Видалити користувача"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"Впевнені, що бажаєте видалити цього користувача? Усі дані буде знищено без "
+"можливості відновлення."
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "Не видаляти цей допис"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "Видалити цього користувача"
+
 #. 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
@@ -1131,53 +1223,63 @@ msgstr "Дизайн"
 msgid "Design settings for this StatusNet site"
 msgstr "Налаштування дизайну для цього сайту StatusNet"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "Помилкова URL-адреса логотипу."
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "Помилкова URL-адреса логотипу."
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "Тема недоступна: %s."
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "Змінити логотип"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "Логотип сайту"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "Логотип сайту"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "Змінити тему"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "Тема сайту"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "Тема для цього сайту."
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "Своя тема"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "Ви можете завантажити свою тему для сайту StatusNet як .ZIP архів."
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "Змінити фонове зображення"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "Фон"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1187,66 +1289,66 @@ msgstr ""
 "%1$s."
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "Увімк."
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "Вимк."
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "Увімкнути або вимкнути фонове зображення."
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "Замостити фон"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "Змінити кольори"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "Зміст"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "Сайдбар"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "Текст"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "Посилання"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "Додатково"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "Свій CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "За замовч."
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "Оновити налаштування за замовчуванням"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "Повернутись до початкових налаштувань"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1256,7 +1358,7 @@ msgstr "Повернутись до початкових налаштувань"
 msgid "Save"
 msgstr "Зберегти"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "Зберегти дизайн"
 
@@ -1729,7 +1831,7 @@ msgstr "Не вдалося перетворити токени запиту н
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "Невідома версія протоколу OMB."
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "Помилка при оновленні віддаленого профілю."
 
@@ -2329,10 +2431,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "Ви повинні спочатку увійти на сайт, аби долучитися до спільноти."
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Немає імені або ІД."
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2582,6 +2680,11 @@ msgstr "Ви не можете надіслати повідомлення ць
 msgid "No content!"
 msgstr "Немає змісту!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Надто довго. Максимальний розмір %d знаків."
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "Жодного отримувача не визначено."
@@ -2742,7 +2845,7 @@ msgstr "URL-адреса %s лише в простому HTTP, будь ласк
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "Такий формат даних не підтримується."
 
@@ -2892,147 +2995,166 @@ msgstr "Шлях"
 msgid "Path and server settings for this StatusNet site"
 msgstr "Параметри серверу та шляху для даного сайту StatusNet"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "Директорію теми не можна прочитати: %s."
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "Директорія аватарів не доступна для запису: %s."
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "Директорія фонових зображень не доступна для запису:% s."
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "Не можна прочитати директорію локалі: %s."
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "Помилковий SSL-сервер. Максимальна довжина 255 знаків."
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "Сайт"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "Сервер"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "Ім’я хосту сервера на якому знаходиться сайт."
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "Шлях"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "Шлях до сайту"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "Шлях до локалей"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "Директорія теми"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "Директорія шляху до локалей"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "Надзвичайні URL-адреси"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "Використовувати надзвичайні (найбільш пам’ятні і визначні) URL-адреси?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "Тема"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "Сервер теми"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "Тема для цього сайту."
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "Шлях до теми"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "Директорія теми"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "Аватари"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "Сервер аватари"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "Шлях до аватари"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "Директорія аватари"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "Фони"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "Сервер фонів"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "Шлях до фонів"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "Директорія фонів"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL-шифрування"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "Ніколи"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "Іноді"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "Завжди"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "Використовувати SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "Тоді використовувати SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL-сервер"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "Шлях до сайту"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "Директорія теми"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "Директорія шляху до локалей"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "Аватари"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "Сервер аватари"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "Шлях до аватари"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "Директорія аватари"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "Фони"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "Вкладення"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL-шифрування"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Ніколи"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "Іноді"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "Завжди"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "Використовувати SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "Тоді використовувати SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "Сервер на який направляти SSL-запити"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "Зберегти шляхи"
 
@@ -3797,7 +3919,7 @@ msgstr "Організація"
 msgid "Description"
 msgstr "Опис"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "Статистика"
@@ -3940,45 +4062,45 @@ msgstr "Додаткові імена"
 msgid "Group actions"
 msgstr "Дії спільноти"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "Стрічка дописів спільноти %s (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "Стрічка дописів спільноти %s (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "Стрічка дописів спільноти %s (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "FOAF спільноти %s"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "Учасники"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "Всі учасники"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "Створено"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3994,7 +4116,7 @@ msgstr ""
 "register%%%%) зараз і долучіться до спілкування! ([Дізнатися більше](%%%%doc."
 "help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4007,7 +4129,7 @@ msgstr ""
 "програмному забезпеченні [StatusNet](http://status.net/). Учасники цієї "
 "спільноти роблять короткі дописи про своє життя та інтереси. "
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "Адміни"
 
@@ -4964,7 +5086,7 @@ msgid "Plugins"
 msgstr "Додатки"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "Версія"
 
@@ -5199,7 +5321,7 @@ msgid "Unable to save tag."
 msgstr "Не вдається зберегти теґ."
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "Вас позбавлено можливості підписатись."
 
@@ -5319,185 +5441,185 @@ msgid "Untitled page"
 msgstr "Сторінка без заголовку"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "Відправна навігація по сайту"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "Персональний профіль і стрічка друзів"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "Особисте"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "Змінити електронну адресу, аватару, пароль, профіль"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "З’єднання з сервісами"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "З’єднання"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "Змінити конфігурацію сайту"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "Адмін"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "Запросіть друзів та колег приєднатись до вас на %s"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "Запросити"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "Вийти з сайту"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "Вийти"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "Створити новий акаунт"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "Реєстрація"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "Увійти на сайт"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "Увійти"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "Допоможіть!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "Довідка"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "Пошук людей або текстів"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "Пошук"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "Об’яви на сайті"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "Огляд"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "Зауваження сторінки"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "Другорядна навігація по сайту"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "Допомога"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "Про"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "ЧаП"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "Умови"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "Приватність"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "Джерело"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "Контакт"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "Бедж"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "Ліцензія програмного забезпечення StatusNet"
 
@@ -5505,7 +5627,7 @@ msgstr "Ліцензія програмного забезпечення StatusN
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5515,7 +5637,7 @@ msgstr ""
 "site.broughtbyurl%%)."
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** — це сервіс мікроблоґів."
@@ -5524,7 +5646,7 @@ msgstr "**%%site.name%%** — це сервіс мікроблоґів."
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5536,51 +5658,51 @@ msgstr ""
 "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "Ліцензія змісту сайту"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "Зміст і дані %1$s є приватними і конфіденційними."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено."
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr ""
 "Авторські права на зміст і дані належать розробникам. Всі права захищено."
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "Весь зміст і дані %1$s доступні на умовах ліцензії %2$s."
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "Нумерація сторінок"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "Вперед"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "Назад"
 
@@ -5723,12 +5845,12 @@ msgid "Could not authenticate you."
 msgstr "Не вдалося автентифікувати вас."
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "Спроба скасувати невідомий токен."
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "Не вдалося видалити скасований токен."
 
@@ -5813,11 +5935,6 @@ msgid "Default access for this application: read-only, or read-write"
 msgstr ""
 "Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "Скасувати"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5844,11 +5961,6 @@ msgstr "Відкликати"
 msgid "author element must contain a name element."
 msgstr "авторський елемент повинен містити назву елемента."
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "Вкладення"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6313,14 +6425,14 @@ msgstr "СМС"
 msgid "Updates by SMS"
 msgstr "Оновлення через СМС"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 #, fuzzy
 msgctxt "MENU"
 msgid "Connections"
 msgstr "З’єднання"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "Авторизовані під’єднані додатки"
@@ -7121,24 +7233,24 @@ msgstr "«Розштовхати»"
 msgid "Send a nudge to this user"
 msgstr "Спробувати «розштовхати» цього користувача"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "Помилка при додаванні нового профілю."
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "Помилка при додаванні аватари."
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "Помилка при додаванні віддаленого профілю."
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "Дублікат допису."
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "Не вдалося додати нову підписку."
 
@@ -7495,17 +7607,17 @@ msgid "Moderator"
 msgstr "Модератор"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "мить тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "хвилину тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
@@ -7514,12 +7626,12 @@ msgstr[1] "близько %d хвилин тому"
 msgstr[2] "близько %d хвилин тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "годину тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
@@ -7528,12 +7640,12 @@ msgstr[1] "близько %d годин тому"
 msgstr[2] "близько %d годин тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "день тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
@@ -7542,12 +7654,12 @@ msgstr[1] "близько %d днів тому"
 msgstr[2] "близько %d днів тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "місяць тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
@@ -7556,7 +7668,7 @@ msgstr[1] "близько %d місяців тому"
 msgstr[2] "близько %d місяців тому"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "близько року тому"
 
@@ -7585,3 +7697,31 @@ msgstr ""
 #, php-format
 msgid "%d entries in backup."
 msgstr "У резервному файлі збережено %d дописів."
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr ""
+#~ "Токен запиту %s було авторизовано. Будь ласка, обміняйте його на токен "
+#~ "доступу."
+
+#~ msgid "Deny"
+#~ msgstr "Відхилити"
+
+#~ msgid "Path to locales"
+#~ msgstr "Шлях до локалей"
+
+#~ msgid "Theme server"
+#~ msgstr "Сервер теми"
+
+#~ msgid "Theme path"
+#~ msgstr "Шлях до теми"
+
+#~ msgid "Background server"
+#~ msgstr "Сервер фонів"
+
+#~ msgid "Background path"
+#~ msgstr "Шлях до фонів"
+
+#~ msgid "Background directory"
+#~ msgstr "Директорія фонів"
diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po
index a9600d1bba..d33b0e36cf 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:10+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:17+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 (r74529); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-04 23:06:40+0000\n"
+"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -96,14 +96,15 @@ msgstr "保存"
 msgid "No such page."
 msgstr "没有这个页面。"
 
+#. TRANS: Client error given when a user was not found (404).
 #. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
 #: actions/all.php:79 actions/allrss.php:68
 #: actions/apiaccountupdatedeliverydevice.php:115
 #: actions/apiaccountupdateprofile.php:106
 #: actions/apiaccountupdateprofilebackgroundimage.php:117
 #: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
+#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:78
+#: actions/apidirectmessagenew.php:72 actions/apigroupcreate.php:114
 #: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
 #: actions/apigroupleave.php:101 actions/apigrouplist.php:73
 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
@@ -201,12 +202,13 @@ msgstr "你和好友们"
 msgid "Updates from %1$s and friends on %2$s!"
 msgstr "%2$s上%1$s和好友们的更新!"
 
+#. TRANS: Client error given when an API method was not found (404).
 #: actions/apiaccountratelimitstatus.php:72
 #: actions/apiaccountupdatedeliverydevice.php:95
 #: actions/apiaccountupdateprofile.php:98
 #: actions/apiaccountupdateprofilebackgroundimage.php:95
 #: actions/apiaccountupdateprofilecolors.php:119
-#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
+#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:162
 #: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102
 #: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101
 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140
@@ -233,7 +235,7 @@ msgstr "API方法没有找到。"
 #: actions/apiaccountupdateprofilebackgroundimage.php:87
 #: actions/apiaccountupdateprofilecolors.php:111
 #: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
+#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:107
 #: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
 #: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
 #: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
@@ -306,43 +308,58 @@ msgstr "屏蔽用户失败。"
 msgid "Unblock user failed."
 msgstr "取消屏蔽用户失败。"
 
-#: actions/apidirectmessage.php:89
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:91
 #, php-format
 msgid "Direct messages from %s"
 msgstr "%s发来的私信"
 
-#: actions/apidirectmessage.php:93
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:96
 #, php-format
 msgid "All the direct messages sent from %s"
 msgstr "所有来自%s的私信"
 
-#: actions/apidirectmessage.php:101
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:105
 #, php-format
 msgid "Direct messages to %s"
 msgstr "发给%s的私信"
 
-#: actions/apidirectmessage.php:105
+#. TRANS: %s is a user nickname.
+#: actions/apidirectmessage.php:110
 #, php-format
 msgid "All the direct messages sent to %s"
 msgstr "所有发给%s的私信"
 
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error (406).
+#: actions/apidirectmessagenew.php:117
 msgid "No message text!"
 msgstr "消息没有正文!"
 
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "太长了。最长的信息长度是%d个字符。"
+#: actions/apidirectmessagenew.php:127
+#, fuzzy, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "太长了。最长的信息长度是%d个字符。"
 
+#. TRANS: Client error displayed if a recipient user could not be found (403).
 #: actions/apidirectmessagenew.php:139
 msgid "Recipient user not found."
 msgstr "未找到收件人。"
 
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
 msgid "Can't send direct messages to users who aren't your friend."
 msgstr "不能给未成为好友的用户发送私信。"
 
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+#, fuzzy
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "不要向自己发送消息;跟自己悄悄说就得了。"
+
 #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
 #: actions/apistatusesdestroy.php:121
 msgid "No status found with that ID."
@@ -522,15 +539,21 @@ msgstr "在%s上的小组"
 msgid "Upload failed."
 msgstr "上传失败"
 
-#: actions/apioauthauthorize.php:101
+#: actions/apioauthaccesstoken.php:108
+#, fuzzy
+msgid "Invalid request token or verifier."
+msgstr "指定的登录 token 无效。"
+
+#: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "没有提供 oauth_token 参数"
 
-#: actions/apioauthauthorize.php:106
-msgid "Invalid token."
+#: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
+#, fuzzy
+msgid "Invalid request token."
 msgstr "无效的 token。"
 
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: 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
@@ -548,34 +571,22 @@ msgstr "无效的 token。"
 msgid "There was a problem with your session token. Try again, please."
 msgstr "你的 session 出现了一个问题,请重试。"
 
-#: actions/apioauthauthorize.php:135
+#: actions/apioauthauthorize.php:163
 msgid "Invalid nickname / password!"
 msgstr "用户名或密码不正确。"
 
-#: actions/apioauthauthorize.php:159
+#: actions/apioauthauthorize.php:193
 msgid "Database error deleting OAuth application user."
 msgstr "删除 OAuth 应用用户时数据库出错。"
 
-#: actions/apioauthauthorize.php:185
+#: actions/apioauthauthorize.php:218
 msgid "Database error inserting OAuth application user."
 msgstr "插入 OAuth 应用用户时数据库出错。"
 
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr "Request token 已被批准。请为它换一个 access token。"
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
-msgstr "%s的 request token 被拒绝并被取消。"
-
 #. 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: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
+#: actions/apioauthauthorize.php:265 actions/avatarsettings.php:281
 #: actions/designadminpanel.php:104 actions/editapplication.php:139
 #: actions/emailsettings.php:290 actions/grouplogo.php:322
 #: actions/imsettings.php:245 actions/newapplication.php:121
@@ -584,15 +595,15 @@ msgstr "%s的 request token 被拒绝并被取消。"
 msgid "Unexpected form submission."
 msgstr "未预料的表单提交。"
 
-#: actions/apioauthauthorize.php:259
+#: actions/apioauthauthorize.php:291
 msgid "An application would like to connect to your account"
 msgstr "一个应用想连接到你的账号"
 
-#: actions/apioauthauthorize.php:276
+#: actions/apioauthauthorize.php:308
 msgid "Allow or deny access"
 msgstr "允许或阻止访问"
 
-#: actions/apioauthauthorize.php:292
+#: actions/apioauthauthorize.php:324
 #, php-format
 msgid ""
 "The application %1$s by %2$s would like "
@@ -603,11 +614,11 @@ msgstr ""
 "strong>你的%4$s账户数据。你应该只允许你信任信任的第三方程序访问你的%4$s账户。"
 
 #. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:462
+#: actions/apioauthauthorize.php:342 lib/action.php:490
 msgid "Account"
 msgstr "帐号"
 
-#: actions/apioauthauthorize.php:313 actions/login.php:252
+#: actions/apioauthauthorize.php:345 actions/login.php:252
 #: actions/profilesettings.php:106 actions/register.php:431
 #: actions/showgroup.php:245 actions/tagother.php:94
 #: actions/userauthorization.php:145 lib/groupeditform.php:152
@@ -616,23 +627,47 @@ msgid "Nickname"
 msgstr "昵称"
 
 #. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
+#: actions/apioauthauthorize.php:348 actions/login.php:255
 #: actions/register.php:436 lib/accountsettingsaction.php:120
 msgid "Password"
 msgstr "密码"
 
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr "阻止"
+#. TRANS: Submit button title.
+#: actions/apioauthauthorize.php:360 lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "取消"
 
-#: actions/apioauthauthorize.php:334
+#: actions/apioauthauthorize.php:366
 msgid "Allow"
 msgstr "允许"
 
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#: actions/apioauthauthorize.php:383
+#, fuzzy
+msgid "Authorize access to your account information."
 msgstr "允许或阻止对你账户信息的访问。"
 
+#: actions/apioauthauthorize.php:433
+#, fuzzy
+msgid "Authorization canceled."
+msgstr "IM 确认已取消。"
+
+#: actions/apioauthauthorize.php:435
+#, fuzzy, php-format
+msgid "The request token %s has been revoked."
+msgstr "%s的 request token 被拒绝并被取消。"
+
+#: actions/apioauthauthorize.php:453
+#, fuzzy, php-format
+msgid "You have successfully authorized %s."
+msgstr "你没有被授权。"
+
+#: actions/apioauthauthorize.php:458
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
 msgstr "此方法接受POST或DELETE请求。"
@@ -793,7 +828,8 @@ msgid "Preview"
 msgstr "预览"
 
 #: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:667
+#: lib/deletegroupform.php:121 lib/deleteuserform.php:66
+#: lib/noticelist.php:667
 msgid "Delete"
 msgstr "删除"
 
@@ -848,12 +884,13 @@ msgstr ""
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:150 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
 msgstr "否"
@@ -866,12 +903,13 @@ msgstr "不要屏蔽这个用户"
 
 #. TRANS: Button label on the user block form.
 #. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
 #. 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/deletenotice.php:157 actions/deleteuser.php:159
-#: actions/groupblock.php:185
+#: actions/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
 msgstr "是"
@@ -889,6 +927,7 @@ msgstr "保存屏蔽信息失败。"
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
 #: actions/editgroup.php:100 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
@@ -1014,7 +1053,7 @@ msgstr "你不是该应用的拥有者。"
 #. TRANS: Client error text when there is a problem with the session token.
 #: actions/deleteapplication.php:102 actions/editapplication.php:127
 #: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1307
+#: lib/action.php:1353
 msgid "There was a problem with your session token."
 msgstr "你的 session token 出现了问题。"
 
@@ -1041,6 +1080,57 @@ msgstr "不删除该应用"
 msgid "Delete this application"
 msgstr "删除这个应用"
 
+#: actions/deletegroup.php:65
+#, fuzzy
+msgid "You must be logged in to delete a group."
+msgstr "你必须登录才能离开小组。"
+
+#: actions/deletegroup.php:93 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "没有昵称或 ID。"
+
+#: actions/deletegroup.php:104
+#, fuzzy
+msgid "You are not allowed to delete this group."
+msgstr "你不是该小组成员。"
+
+#: actions/deletegroup.php:146
+#, fuzzy, php-format
+msgid "Could not delete group %2$s."
+msgstr "无法更新小组"
+
+#: actions/deletegroup.php:153
+#, fuzzy, php-format
+msgid "Deleted group %2$s"
+msgstr "%1$s离开了%2$s小组。"
+
+#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#, fuzzy
+msgid "Delete group"
+msgstr "删除用户"
+
+#: actions/deletegroup.php:197
+#, fuzzy
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+"你确定要删除这个用户吗?这将从数据库中清除有关这个用户的所有数据,没有备份。"
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:215
+#, fuzzy
+msgid "Do not delete this group"
+msgstr "不要删除这个消息"
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:222
+#, fuzzy
+msgid "Delete this group"
+msgstr "删除这个用户"
+
 #. 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
@@ -1114,53 +1204,63 @@ msgstr "外观"
 msgid "Design settings for this StatusNet site"
 msgstr "这个 StatusNet 网站的外观设置"
 
-#: actions/designadminpanel.php:331
+#: actions/designadminpanel.php:332
 msgid "Invalid logo URL."
 msgstr "无效的 logo URL。"
 
-#: actions/designadminpanel.php:335
+#: actions/designadminpanel.php:337
+#, fuzzy
+msgid "Invalid SSL logo URL."
+msgstr "无效的 logo URL。"
+
+#: actions/designadminpanel.php:341
 #, php-format
 msgid "Theme not available: %s."
 msgstr "主题不可用:%s。"
 
-#: actions/designadminpanel.php:439
+#: actions/designadminpanel.php:445
 msgid "Change logo"
 msgstr "更换 logo"
 
-#: actions/designadminpanel.php:444
+#: actions/designadminpanel.php:450
 msgid "Site logo"
 msgstr "网站 logo"
 
-#: actions/designadminpanel.php:456
+#: actions/designadminpanel.php:454
+#, fuzzy
+msgid "SSL logo"
+msgstr "网站 logo"
+
+#: actions/designadminpanel.php:466
 msgid "Change theme"
 msgstr "更换主题"
 
-#: actions/designadminpanel.php:473
+#: actions/designadminpanel.php:483
 msgid "Site theme"
 msgstr "网站主题"
 
-#: actions/designadminpanel.php:474
+#: actions/designadminpanel.php:484
 msgid "Theme for the site."
 msgstr "这个网站的主题。"
 
-#: actions/designadminpanel.php:480
+#: actions/designadminpanel.php:490
 msgid "Custom theme"
 msgstr "自定义主题"
 
-#: actions/designadminpanel.php:484
+#: actions/designadminpanel.php:494
 msgid "You can upload a custom StatusNet theme as a .ZIP archive."
 msgstr "你可以上传一个 .ZIP 压缩文件作为一个自定义的 StatusNet 主题"
 
-#: actions/designadminpanel.php:499 lib/designsettings.php:101
+#: actions/designadminpanel.php:509 lib/designsettings.php:101
 msgid "Change background image"
 msgstr "更换背景图像"
 
-#: actions/designadminpanel.php:504 actions/designadminpanel.php:587
+#: actions/designadminpanel.php:514 actions/designadminpanel.php:597
 #: lib/designsettings.php:178
 msgid "Background"
 msgstr "背景"
 
-#: actions/designadminpanel.php:509
+#: actions/designadminpanel.php:519
 #, php-format
 msgid ""
 "You can upload a background image for the site. The maximum file size is %1"
@@ -1168,66 +1268,66 @@ msgid ""
 msgstr "你可以为网站上传一个背景图像。文件大小限制在%1$s以下。"
 
 #. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:540 lib/designsettings.php:139
+#: actions/designadminpanel.php:550 lib/designsettings.php:139
 msgid "On"
 msgstr "打开"
 
 #. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:557 lib/designsettings.php:155
+#: actions/designadminpanel.php:567 lib/designsettings.php:155
 msgid "Off"
 msgstr "关闭"
 
-#: actions/designadminpanel.php:558 lib/designsettings.php:156
+#: actions/designadminpanel.php:568 lib/designsettings.php:156
 msgid "Turn background image on or off."
 msgstr "打开或关闭背景图片"
 
-#: actions/designadminpanel.php:563 lib/designsettings.php:161
+#: actions/designadminpanel.php:573 lib/designsettings.php:161
 msgid "Tile background image"
 msgstr "平铺背景图片"
 
-#: actions/designadminpanel.php:577 lib/designsettings.php:170
+#: actions/designadminpanel.php:587 lib/designsettings.php:170
 msgid "Change colours"
 msgstr "改变颜色"
 
-#: actions/designadminpanel.php:600 lib/designsettings.php:191
+#: actions/designadminpanel.php:610 lib/designsettings.php:191
 msgid "Content"
 msgstr "内容"
 
-#: actions/designadminpanel.php:613 lib/designsettings.php:204
+#: actions/designadminpanel.php:623 lib/designsettings.php:204
 msgid "Sidebar"
 msgstr "边栏"
 
-#: actions/designadminpanel.php:626 lib/designsettings.php:217
+#: actions/designadminpanel.php:636 lib/designsettings.php:217
 msgid "Text"
 msgstr "文字"
 
-#: actions/designadminpanel.php:639 lib/designsettings.php:230
+#: actions/designadminpanel.php:649 lib/designsettings.php:230
 msgid "Links"
 msgstr "链接"
 
-#: actions/designadminpanel.php:664
+#: actions/designadminpanel.php:674
 msgid "Advanced"
 msgstr "高级"
 
-#: actions/designadminpanel.php:668
+#: actions/designadminpanel.php:678
 msgid "Custom CSS"
 msgstr "自定义CSS"
 
-#: actions/designadminpanel.php:689 lib/designsettings.php:247
+#: actions/designadminpanel.php:699 lib/designsettings.php:247
 msgid "Use defaults"
 msgstr "使用默认值"
 
-#: actions/designadminpanel.php:690 lib/designsettings.php:248
+#: actions/designadminpanel.php:700 lib/designsettings.php:248
 msgid "Restore default designs"
 msgstr "恢复默认外观"
 
-#: actions/designadminpanel.php:696 lib/designsettings.php:254
+#: actions/designadminpanel.php:706 lib/designsettings.php:254
 msgid "Reset back to default"
 msgstr "重置到默认"
 
 #. TRANS: Submit button title.
-#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319
-#: actions/othersettings.php:126 actions/pathsadminpanel.php:351
+#: actions/designadminpanel.php:708 actions/licenseadminpanel.php:319
+#: actions/othersettings.php:126 actions/pathsadminpanel.php:396
 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
 #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195
 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226
@@ -1237,7 +1337,7 @@ msgstr "重置到默认"
 msgid "Save"
 msgstr "保存"
 
-#: actions/designadminpanel.php:699 lib/designsettings.php:257
+#: actions/designadminpanel.php:709 lib/designsettings.php:257
 msgid "Save design"
 msgstr "保存外观"
 
@@ -1703,7 +1803,7 @@ msgstr "无法将 request token 转换为 access token。"
 msgid "Remote service uses unknown version of OMB protocol."
 msgstr "远程服务使用了未知版本的 OMB 协议。"
 
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
 msgid "Error updating remote profile."
 msgstr "更新远程的个人信息时出错。"
 
@@ -2276,10 +2376,6 @@ msgstr ""
 msgid "You must be logged in to join a group."
 msgstr "你必须登录才能加入小组。"
 
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "没有昵称或 ID。"
-
 #: actions/joingroup.php:141
 #, php-format
 msgid "%1$s joined group %2$s"
@@ -2518,6 +2614,11 @@ msgstr "无法向此用户发送消息。"
 msgid "No content!"
 msgstr "没有内容!"
 
+#: actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "太长了。最长的信息长度是%d个字符。"
+
 #: actions/newmessage.php:158
 msgid "No recipient specified."
 msgstr "没有收件人。"
@@ -2675,7 +2776,7 @@ msgstr "请只用HTTP明文的%sURLs的地址。"
 
 #. TRANS: Client error on an API request with an unsupported data format.
 #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200
-#: lib/apiaction.php:1227 lib/apiaction.php:1350
+#: lib/apiaction.php:1227 lib/apiaction.php:1356
 msgid "Not a supported data format."
 msgstr "不支持的数据格式。"
 
@@ -2823,147 +2924,166 @@ msgstr "路径"
 msgid "Path and server settings for this StatusNet site"
 msgstr "这个 StatusNet 网站的路径和服务器设置。"
 
-#: actions/pathsadminpanel.php:157
+#: actions/pathsadminpanel.php:158
 #, php-format
 msgid "Theme directory not readable: %s."
 msgstr "主题目录无法读取:%s。"
 
-#: actions/pathsadminpanel.php:163
+#: actions/pathsadminpanel.php:164
 #, php-format
 msgid "Avatar directory not writable: %s."
 msgstr "头像目录无法写入:%s。"
 
-#: actions/pathsadminpanel.php:169
+#: actions/pathsadminpanel.php:170
 #, php-format
 msgid "Background directory not writable: %s."
 msgstr "背景目录无法写入:%s。"
 
-#: actions/pathsadminpanel.php:177
+#: actions/pathsadminpanel.php:178
 #, php-format
 msgid "Locales directory not readable: %s."
 msgstr "本地化目录无法读取:%s。"
 
-#: actions/pathsadminpanel.php:183
+#: actions/pathsadminpanel.php:184
 msgid "Invalid SSL server. The maximum length is 255 characters."
 msgstr "无效的 SSL 服务器。最大长度255个字符。"
 
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
 msgid "Site"
 msgstr "网站"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239 actions/pathsadminpanel.php:265
+#: actions/pathsadminpanel.php:314 actions/pathsadminpanel.php:343
 msgid "Server"
 msgstr "服务器"
 
-#: actions/pathsadminpanel.php:238
+#: actions/pathsadminpanel.php:239
 msgid "Site's server hostname."
 msgstr "网站的服务器主机名。"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243 actions/pathsadminpanel.php:269
+#: actions/pathsadminpanel.php:318 actions/pathsadminpanel.php:347
 msgid "Path"
 msgstr "路径"
 
-#: actions/pathsadminpanel.php:242
+#: actions/pathsadminpanel.php:243
 msgid "Site path"
 msgstr "网站路径"
 
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
-msgstr "本地化文件路径"
+#: actions/pathsadminpanel.php:247
+#, fuzzy
+msgid "Locale Directory"
+msgstr "主题目录"
 
-#: actions/pathsadminpanel.php:246
+#: actions/pathsadminpanel.php:247
 msgid "Directory path to locales"
 msgstr "本地化文件的目录路径"
 
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:251
 msgid "Fancy URLs"
 msgstr "优化 URLs"
 
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:253
 msgid "Use fancy (more readable and memorable) URLs?"
 msgstr "使用优化的 URLs(更简洁易记)?"
 
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:260
 msgid "Theme"
 msgstr "主题"
 
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
-msgstr "主题服务器"
+#: actions/pathsadminpanel.php:265
+#, fuzzy
+msgid "Server for themes"
+msgstr "这个网站的主题。"
 
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
-msgstr "主题路径"
+#: actions/pathsadminpanel.php:269
+msgid "Web path to themes"
+msgstr ""
 
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
-msgstr "主题目录"
-
-#: actions/pathsadminpanel.php:279
-msgid "Avatars"
-msgstr "头像"
-
-#: actions/pathsadminpanel.php:284
-msgid "Avatar server"
-msgstr "头像服务器"
-
-#: actions/pathsadminpanel.php:288
-msgid "Avatar path"
-msgstr "头像路径"
-
-#: actions/pathsadminpanel.php:292
-msgid "Avatar directory"
-msgstr "头像目录"
-
-#: actions/pathsadminpanel.php:301
-msgid "Backgrounds"
-msgstr "背景"
-
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
-msgstr "背景服务器"
-
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
-msgstr "背景图路径"
-
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
-msgstr "背景图目录"
-
-#: actions/pathsadminpanel.php:320
-msgid "SSL"
-msgstr "SSL"
-
-#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202
-msgid "Never"
-msgstr "从不"
-
-#: actions/pathsadminpanel.php:324
-msgid "Sometimes"
-msgstr "有时"
-
-#: actions/pathsadminpanel.php:325
-msgid "Always"
-msgstr "总是"
-
-#: actions/pathsadminpanel.php:329
-msgid "Use SSL"
-msgstr "使用 SSL"
-
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
-msgstr "什么时候使用 SSL"
-
-#: actions/pathsadminpanel.php:335
+#: actions/pathsadminpanel.php:273 actions/pathsadminpanel.php:322
+#: actions/pathsadminpanel.php:351 actions/pathsadminpanel.php:380
 msgid "SSL server"
 msgstr "SSL 服务器"
 
-#: actions/pathsadminpanel.php:336
+#: actions/pathsadminpanel.php:273
+msgid "SSL server for themes (default: SSL server)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:277 actions/pathsadminpanel.php:326
+#: actions/pathsadminpanel.php:355
+#, fuzzy
+msgid "SSL path"
+msgstr "网站路径"
+
+#: actions/pathsadminpanel.php:277
+msgid "SSL path to themes (default: /theme/)"
+msgstr ""
+
+#: actions/pathsadminpanel.php:281 actions/pathsadminpanel.php:330
+#: actions/pathsadminpanel.php:359
+#, fuzzy
+msgid "Directory"
+msgstr "主题目录"
+
+#: actions/pathsadminpanel.php:281
+#, fuzzy
+msgid "Directory where themes are located"
+msgstr "本地化文件的目录路径"
+
+#: actions/pathsadminpanel.php:288
+msgid "Avatars"
+msgstr "头像"
+
+#: actions/pathsadminpanel.php:293
+msgid "Avatar server"
+msgstr "头像服务器"
+
+#: actions/pathsadminpanel.php:297
+msgid "Avatar path"
+msgstr "头像路径"
+
+#: actions/pathsadminpanel.php:301
+msgid "Avatar directory"
+msgstr "头像目录"
+
+#: actions/pathsadminpanel.php:310
+msgid "Backgrounds"
+msgstr "背景"
+
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:339 lib/attachmentlist.php:85
+msgid "Attachments"
+msgstr "附件"
+
+#: actions/pathsadminpanel.php:366
+msgid "SSL"
+msgstr "SSL"
+
+#: actions/pathsadminpanel.php:370 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "从不"
+
+#: actions/pathsadminpanel.php:371
+msgid "Sometimes"
+msgstr "有时"
+
+#: actions/pathsadminpanel.php:372
+msgid "Always"
+msgstr "总是"
+
+#: actions/pathsadminpanel.php:374
+msgid "Use SSL"
+msgstr "使用 SSL"
+
+#: actions/pathsadminpanel.php:375
+msgid "When to use SSL"
+msgstr "什么时候使用 SSL"
+
+#: actions/pathsadminpanel.php:381
 msgid "Server to direct SSL requests to"
 msgstr "直接SSL请求访问的服务器"
 
-#: actions/pathsadminpanel.php:352
+#: actions/pathsadminpanel.php:397
 msgid "Save paths"
 msgstr "保存路径"
 
@@ -3698,7 +3818,7 @@ msgstr "组织名称必填。"
 msgid "Description"
 msgstr "描述"
 
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#: actions/showapplication.php:192 actions/showgroup.php:442
 #: lib/profileaction.php:187
 msgid "Statistics"
 msgstr "统计"
@@ -3835,45 +3955,45 @@ msgstr "别名"
 msgid "Group actions"
 msgstr "小组动作"
 
-#: actions/showgroup.php:338
+#: actions/showgroup.php:344
 #, php-format
 msgid "Notice feed for %s group (RSS 1.0)"
 msgstr "%s小组的消息聚合 (RSS 1.0)"
 
-#: actions/showgroup.php:344
+#: actions/showgroup.php:350
 #, php-format
 msgid "Notice feed for %s group (RSS 2.0)"
 msgstr "%s小组的消息聚合 (RSS 2.0)"
 
-#: actions/showgroup.php:350
+#: actions/showgroup.php:356
 #, php-format
 msgid "Notice feed for %s group (Atom)"
 msgstr "%s小组的消息聚合 (Atom)"
 
-#: actions/showgroup.php:355
+#: actions/showgroup.php:361
 #, php-format
 msgid "FOAF for %s group"
 msgstr "%s 的发件箱"
 
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#: actions/showgroup.php:399 actions/showgroup.php:451
 msgid "Members"
 msgstr "小组成员"
 
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#: actions/showgroup.php:404 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:404
+#: actions/showgroup.php:410
 msgid "All members"
 msgstr "所有成员"
 
-#: actions/showgroup.php:439
+#: actions/showgroup.php:445
 msgid "Created"
 msgstr "建立"
 
-#: actions/showgroup.php:455
+#: actions/showgroup.php:461
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3888,7 +4008,7 @@ msgstr ""
 "入](%%%%action.register%%%%)成为该小组的一员并享受更多的欢乐!([阅读更多](%%"
 "%%doc.help%%%%))"
 
-#: actions/showgroup.php:461
+#: actions/showgroup.php:467
 #, php-format
 msgid ""
 "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -3901,7 +4021,7 @@ msgstr ""
 "E5%BE%AE%E5%8D%9A%E5%AE%A2)。%%%%site.name%%%%的用户分享关于他们生活和各种兴"
 "趣的消息。"
 
-#: actions/showgroup.php:489
+#: actions/showgroup.php:495
 msgid "Admins"
 msgstr "管理员"
 
@@ -4820,7 +4940,7 @@ msgid "Plugins"
 msgstr "插件"
 
 #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:802
+#: actions/version.php:198 lib/action.php:830
 msgid "Version"
 msgstr "版本"
 
@@ -5049,7 +5169,7 @@ msgid "Unable to save tag."
 msgstr "无法保存标签。"
 
 #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:75 lib/oauthstore.php:482
 msgid "You have been banned from subscribing."
 msgstr "你被禁止添加关注。"
 
@@ -5169,185 +5289,185 @@ msgid "Untitled page"
 msgstr "无标题页"
 
 #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:448
+#: lib/action.php:476
 msgid "Primary site navigation"
 msgstr "主站导航"
 
 #. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:454
+#: lib/action.php:482
 msgctxt "TOOLTIP"
 msgid "Personal profile and friends timeline"
 msgstr "个人资料及朋友的时间线"
 
 #. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:457
+#: lib/action.php:485
 msgctxt "MENU"
 msgid "Personal"
 msgstr "个人"
 
 #. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:459
+#: lib/action.php:487
 msgctxt "TOOLTIP"
 msgid "Change your email, avatar, password, profile"
 msgstr "修改你的 email 地址、头像、密码、资料"
 
 #. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:464
+#: lib/action.php:492
 msgctxt "TOOLTIP"
 msgid "Connect to services"
 msgstr "关联的服务"
 
 #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:467
+#: lib/action.php:495
 msgid "Connect"
 msgstr "关联"
 
 #. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:470
+#: lib/action.php:498
 msgctxt "TOOLTIP"
 msgid "Change site configuration"
 msgstr "更改网站配置"
 
 #. TRANS: Main menu option when logged in and site admin for access to site configuration
 #. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:473 lib/groupnav.php:117
+#: lib/action.php:501 lib/groupnav.php:117
 msgctxt "MENU"
 msgid "Admin"
 msgstr "管理"
 
 #. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:477
+#: lib/action.php:505
 #, php-format
 msgctxt "TOOLTIP"
 msgid "Invite friends and colleagues to join you on %s"
 msgstr "邀请好友和同事加入%s。"
 
 #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:480
+#: lib/action.php:508
 msgctxt "MENU"
 msgid "Invite"
 msgstr "邀请"
 
 #. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:486
+#: lib/action.php:514
 msgctxt "TOOLTIP"
 msgid "Logout from the site"
 msgstr "从网站登出"
 
 #. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:489
+#: lib/action.php:517
 msgctxt "MENU"
 msgid "Logout"
 msgstr "登出"
 
 #. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:494
+#: lib/action.php:522
 msgctxt "TOOLTIP"
 msgid "Create an account"
 msgstr "创建一个账户"
 
 #. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:497
+#: lib/action.php:525
 msgctxt "MENU"
 msgid "Register"
 msgstr "注册"
 
 #. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:500
+#: lib/action.php:528
 msgctxt "TOOLTIP"
 msgid "Login to the site"
 msgstr "登录这个网站"
 
-#: lib/action.php:503
+#: lib/action.php:531
 msgctxt "MENU"
 msgid "Login"
 msgstr "登录"
 
 #. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:506
+#: lib/action.php:534
 msgctxt "TOOLTIP"
 msgid "Help me!"
 msgstr "帮助我!"
 
-#: lib/action.php:509
+#: lib/action.php:537
 msgctxt "MENU"
 msgid "Help"
 msgstr "帮助"
 
 #. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:512
+#: lib/action.php:540
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
 msgstr "搜索人或文字"
 
-#: lib/action.php:515
+#: lib/action.php:543
 msgctxt "MENU"
 msgid "Search"
 msgstr "搜索"
 
 #. TRANS: DT element for site notice. String is hidden in default CSS.
 #. TRANS: Menu item for site administration
-#: lib/action.php:537 lib/adminpanelaction.php:387
+#: lib/action.php:565 lib/adminpanelaction.php:387
 msgid "Site notice"
 msgstr "网站消息"
 
 #. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:604
+#: lib/action.php:632
 msgid "Local views"
 msgstr "本地显示"
 
 #. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:674
+#: lib/action.php:702
 msgid "Page notice"
 msgstr "页面消息"
 
 #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:775
+#: lib/action.php:803
 msgid "Secondary site navigation"
 msgstr "副站导航"
 
 #. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:781
+#: lib/action.php:809
 msgid "Help"
 msgstr "帮助"
 
 #. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:784
+#: lib/action.php:812
 msgid "About"
 msgstr "关于"
 
 #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:787
+#: lib/action.php:815
 msgid "FAQ"
 msgstr "FAQ"
 
 #. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:792
+#: lib/action.php:820
 msgid "TOS"
 msgstr "条款"
 
 #. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:796
+#: lib/action.php:824
 msgid "Privacy"
 msgstr "隐私"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:799
+#: lib/action.php:827
 msgid "Source"
 msgstr "源码"
 
 #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:805
+#: lib/action.php:833
 msgid "Contact"
 msgstr "联系"
 
 #. TRANS: Secondary navigation menu option.
-#: lib/action.php:808
+#: lib/action.php:836
 msgid "Badge"
 msgstr "挂件"
 
 #. TRANS: DT element for StatusNet software license.
-#: lib/action.php:837
+#: lib/action.php:865
 msgid "StatusNet software license"
 msgstr "StatusNet 软件许可证"
 
@@ -5355,7 +5475,7 @@ msgstr "StatusNet 软件许可证"
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:844
+#: lib/action.php:872
 #, php-format
 msgid ""
 "**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -5365,7 +5485,7 @@ msgstr ""
 "broughtbyurl%%)。"
 
 #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:847
+#: lib/action.php:875
 #, php-format
 msgid "**%%site.name%%** is a microblogging service."
 msgstr "**%%site.name%%** 是一个微博客服务。"
@@ -5374,7 +5494,7 @@ msgstr "**%%site.name%%** 是一个微博客服务。"
 #. TRANS: Make sure there is no whitespace between "]" and "(".
 #. TRANS: Text between [] is a link description, text between () is the link itself.
 #. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:854
+#: lib/action.php:882
 #, php-format
 msgid ""
 "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -5385,50 +5505,50 @@ msgstr ""
 "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)授权。"
 
 #. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:870
+#: lib/action.php:898
 msgid "Site content license"
 msgstr "网站内容许可协议"
 
 #. TRANS: Content license displayed when license is set to 'private'.
 #. TRANS: %1$s is the site name.
-#: lib/action.php:877
+#: lib/action.php:905
 #, php-format
 msgid "Content and data of %1$s are private and confidential."
 msgstr "%1$s的内容和数据是私人且保密的。"
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved'.
 #. TRANS: %1$s is the copyright owner.
-#: lib/action.php:884
+#: lib/action.php:912
 #, php-format
 msgid "Content and data copyright by %1$s. All rights reserved."
 msgstr "内容和数据%1$s版权所有并保留所有权利。"
 
 #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:888
+#: lib/action.php:916
 msgid "Content and data copyright by contributors. All rights reserved."
 msgstr "内容和数据贡献者版权所有并保留所有权利。"
 
 #. TRANS: license message in footer.
 #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:902
+#: lib/action.php:948
 #, php-format
 msgid "All %1$s content and data are available under the %2$s license."
 msgstr "所有%1$s的内容和数据在%2$s许可下有效。"
 
 #. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1238
+#: lib/action.php:1284
 msgid "Pagination"
 msgstr "分页"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: present than the currently displayed information.
-#: lib/action.php:1249
+#: lib/action.php:1295
 msgid "After"
 msgstr "之后"
 
 #. TRANS: Pagination message to go to a page displaying information more in the
 #. TRANS: past than the currently displayed information.
-#: lib/action.php:1259
+#: lib/action.php:1305
 msgid "Before"
 msgstr "之前"
 
@@ -5568,12 +5688,12 @@ msgid "Could not authenticate you."
 msgstr "无法验证你。"
 
 #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:184
 msgid "Tried to revoke unknown token."
 msgstr "尝试了取消未知的 token。"
 
 #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:183
+#: lib/apioauthstore.php:189
 msgid "Failed to delete revoked token."
 msgstr "删除取消的 token 失败。"
 
@@ -5655,11 +5775,6 @@ msgstr "读写"
 msgid "Default access for this application: read-only, or read-write"
 msgstr "该应用默认的访问权限:只读或读写"
 
-#. TRANS: Submit button title.
-#: lib/applicationeditform.php:353
-msgid "Cancel"
-msgstr "取消"
-
 #. TRANS: Application access type
 #: lib/applicationlist.php:134
 msgid "read-write"
@@ -5686,11 +5801,6 @@ msgstr "取消"
 msgid "author element must contain a name element."
 msgstr "作者元素必须包含一个名称元素。"
 
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:85
-msgid "Attachments"
-msgstr "附件"
-
 #. TRANS: DT element label in attachment list item.
 #: lib/attachmentlist.php:256
 msgid "Author"
@@ -6141,13 +6251,13 @@ msgstr "SMS"
 msgid "Updates by SMS"
 msgstr "使用 SMS 更新"
 
-#. TRANS: Menu item for OAth connection settings.
+#. TRANS: Menu item for OuAth connection settings.
 #: lib/connectsettingsaction.php:120
 msgctxt "MENU"
 msgid "Connections"
 msgstr "关联"
 
-#. TRANS: Tooltip for connected applications (Connections through OAth) menu item.
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
 #: lib/connectsettingsaction.php:122
 msgid "Authorized connected applications"
 msgstr "被授权已连接的应用"
@@ -6932,24 +7042,24 @@ msgstr "呼叫"
 msgid "Send a nudge to this user"
 msgstr "呼叫这个用户"
 
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
 msgid "Error inserting new profile."
 msgstr "添加新个人信息出错。"
 
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
 msgid "Error inserting avatar."
 msgstr "添加头像出错。"
 
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
 msgid "Error inserting remote profile."
 msgstr "添加远程个人信息时出错。"
 
 #. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
 msgid "Duplicate notice."
 msgstr "复制消息。"
 
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
 msgid "Couldn't insert new subscription."
 msgstr "无法添加新的关注。"
 
@@ -7301,60 +7411,60 @@ msgid "Moderator"
 msgstr "审核员"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1153
+#: lib/util.php:1163
 msgid "a few seconds ago"
 msgstr "几秒前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1156
+#: lib/util.php:1166
 msgid "about a minute ago"
 msgstr "约1分钟前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1160
+#: lib/util.php:1170
 #, php-format
 msgid "about one minute ago"
 msgid_plural "about %d minutes ago"
 msgstr[0] "约1分钟前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1163
+#: lib/util.php:1173
 msgid "about an hour ago"
 msgstr "约1小时前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1167
+#: lib/util.php:1177
 #, php-format
 msgid "about one hour ago"
 msgid_plural "about %d hours ago"
 msgstr[0] "约一小时前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1170
+#: lib/util.php:1180
 msgid "about a day ago"
 msgstr "约1天前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1174
+#: lib/util.php:1184
 #, php-format
 msgid "about one day ago"
 msgid_plural "about %d days ago"
 msgstr[0] "约1天前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1177
+#: lib/util.php:1187
 msgid "about a month ago"
 msgstr "约1个月前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1181
+#: lib/util.php:1191
 #, php-format
 msgid "about one month ago"
 msgid_plural "about %d months ago"
 msgstr[0] "约1个月前"
 
 #. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1184
+#: lib/util.php:1194
 msgid "about a year ago"
 msgstr "约1年前"
 
@@ -7381,3 +7491,29 @@ msgstr "没有用户被指定;使用备份用户。"
 #, php-format
 msgid "%d entries in backup."
 msgstr "备份中有 %d 个条目。"
+
+#~ msgid ""
+#~ "The request token %s has been authorized. Please exchange it for an "
+#~ "access token."
+#~ msgstr "Request token 已被批准。请为它换一个 access token。"
+
+#~ msgid "Deny"
+#~ msgstr "阻止"
+
+#~ msgid "Path to locales"
+#~ msgstr "本地化文件路径"
+
+#~ msgid "Theme server"
+#~ msgstr "主题服务器"
+
+#~ msgid "Theme path"
+#~ msgstr "主题路径"
+
+#~ msgid "Background server"
+#~ msgstr "背景服务器"
+
+#~ msgid "Background path"
+#~ msgstr "背景图路径"
+
+#~ msgid "Background directory"
+#~ msgstr "背景图目录"
diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
index 5af023356b..093825b906 100644
--- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Adsense\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-04 22:30+0000\n"
-"PO-Revision-Date: 2010-10-04 22:32:48+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:19+0000\n"
 "Language-Team: Breton \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:33:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: br\n"
 "X-Message-Group: #out-statusnet-plugin-adsense\n"
@@ -46,27 +46,27 @@ msgstr "Arventennoù Adsense evit al lec'hienn StatusNet-mañ."
 
 #: adsenseadminpanel.php:164
 msgid "Client ID"
-msgstr ""
+msgstr "ID an arval"
 
 #: adsenseadminpanel.php:165
 msgid "Google client ID"
-msgstr ""
+msgstr "ID an arval Google"
 
 #: adsenseadminpanel.php:170
 msgid "Ad script URL"
-msgstr ""
+msgstr "URL ar skript kemenn"
 
 #: adsenseadminpanel.php:171
 msgid "Script URL (advanced)"
-msgstr ""
+msgstr "URL ar skript (araokaet)"
 
 #: adsenseadminpanel.php:176
 msgid "Medium rectangle"
-msgstr ""
+msgstr "Skouergornek etre"
 
 #: adsenseadminpanel.php:177
 msgid "Medium rectangle slot code"
-msgstr ""
+msgstr "Kod lakaet en ur skouergornek etre"
 
 #: adsenseadminpanel.php:182
 msgid "Rectangle"
@@ -74,23 +74,23 @@ msgstr "Skouergornek"
 
 #: adsenseadminpanel.php:183
 msgid "Rectangle slot code"
-msgstr ""
+msgstr "Kod lakaet er skouergornek"
 
 #: adsenseadminpanel.php:188
 msgid "Leaderboard"
-msgstr ""
+msgstr "Panell an urzhiadoù"
 
 #: adsenseadminpanel.php:189
 msgid "Leaderboard slot code"
-msgstr ""
+msgstr "Kod lakaet e panell an urzhiadoù"
 
 #: adsenseadminpanel.php:194
 msgid "Skyscraper"
-msgstr ""
+msgstr "Giton a-serzh"
 
 #: adsenseadminpanel.php:195
 msgid "Wide skyscraper slot code"
-msgstr ""
+msgstr "Kod lakaet en ur giton ledan a-serzh"
 
 #: adsenseadminpanel.php:208
 msgid "Save"
@@ -98,4 +98,4 @@ msgstr "Enrollañ"
 
 #: adsenseadminpanel.php:208
 msgid "Save AdSense settings"
-msgstr ""
+msgstr "Enrollañ arventennoù AdSense"
diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
new file mode 100644
index 0000000000..f30b1fdc9d
--- /dev/null
+++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
@@ -0,0 +1,101 @@
+# Translation of StatusNet - Adsense to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Adsense\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:19+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-adsense\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Menu item title/tooltip
+#: AdsensePlugin.php:194
+msgid "AdSense configuration"
+msgstr "AdSense-Konfiguration"
+
+#. TRANS: Menu item for site administration
+#: AdsensePlugin.php:196
+msgid "AdSense"
+msgstr "AdSense"
+
+#: AdsensePlugin.php:209
+msgid "Plugin to add Google Adsense to StatusNet sites."
+msgstr "Plugin, das Google Adsense auf StatusNet-Websites hinzufügt."
+
+#: adsenseadminpanel.php:52
+msgctxt "TITLE"
+msgid "AdSense"
+msgstr "AdSense"
+
+#: adsenseadminpanel.php:62
+msgid "AdSense settings for this StatusNet site"
+msgstr "AdSense-Einstellungen dieser StatusNet-Website"
+
+#: adsenseadminpanel.php:164
+msgid "Client ID"
+msgstr "Client-ID"
+
+#: adsenseadminpanel.php:165
+msgid "Google client ID"
+msgstr "Google-Client-ID"
+
+#: adsenseadminpanel.php:170
+msgid "Ad script URL"
+msgstr "Skript-URL"
+
+#: adsenseadminpanel.php:171
+msgid "Script URL (advanced)"
+msgstr ""
+
+#: adsenseadminpanel.php:176
+msgid "Medium rectangle"
+msgstr ""
+
+#: adsenseadminpanel.php:177
+msgid "Medium rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:182
+msgid "Rectangle"
+msgstr ""
+
+#: adsenseadminpanel.php:183
+msgid "Rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:188
+msgid "Leaderboard"
+msgstr ""
+
+#: adsenseadminpanel.php:189
+msgid "Leaderboard slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:194
+msgid "Skyscraper"
+msgstr ""
+
+#: adsenseadminpanel.php:195
+msgid "Wide skyscraper slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:208
+msgid "Save"
+msgstr "Speichern"
+
+#: adsenseadminpanel.php:208
+msgid "Save AdSense settings"
+msgstr "AdSense-Einstellungen speichern"
diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
new file mode 100644
index 0000000000..02d1495b16
--- /dev/null
+++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
@@ -0,0 +1,103 @@
+# Translation of StatusNet - Adsense to Brazilian Portuguese (Português do Brasil)
+# Expored from translatewiki.net
+#
+# Author: Giro720
+# Author: Luckas Blade
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Adsense\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:20+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-09 14:33:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. TRANS: Menu item title/tooltip
+#: AdsensePlugin.php:194
+msgid "AdSense configuration"
+msgstr "Configuração do AdSense"
+
+#. TRANS: Menu item for site administration
+#: AdsensePlugin.php:196
+msgid "AdSense"
+msgstr "AdSense"
+
+#: AdsensePlugin.php:209
+msgid "Plugin to add Google Adsense to StatusNet sites."
+msgstr "Plugin para adicionar Google Adsense aos sites StatusNet."
+
+#: adsenseadminpanel.php:52
+msgctxt "TITLE"
+msgid "AdSense"
+msgstr "AdSense"
+
+#: adsenseadminpanel.php:62
+msgid "AdSense settings for this StatusNet site"
+msgstr "Configurações do AdSense para este site StatusNet"
+
+#: adsenseadminpanel.php:164
+msgid "Client ID"
+msgstr "Identificação do cliente"
+
+#: adsenseadminpanel.php:165
+msgid "Google client ID"
+msgstr "ID de cliente Google"
+
+#: adsenseadminpanel.php:170
+msgid "Ad script URL"
+msgstr "URL do script do anúncio"
+
+#: adsenseadminpanel.php:171
+msgid "Script URL (advanced)"
+msgstr "URL do script (avançado)"
+
+#: adsenseadminpanel.php:176
+msgid "Medium rectangle"
+msgstr "Retângulo médio"
+
+#: adsenseadminpanel.php:177
+msgid "Medium rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:182
+msgid "Rectangle"
+msgstr ""
+
+#: adsenseadminpanel.php:183
+msgid "Rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:188
+msgid "Leaderboard"
+msgstr ""
+
+#: adsenseadminpanel.php:189
+msgid "Leaderboard slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:194
+msgid "Skyscraper"
+msgstr ""
+
+#: adsenseadminpanel.php:195
+msgid "Wide skyscraper slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:208
+msgid "Save"
+msgstr "Salvar"
+
+#: adsenseadminpanel.php:208
+msgid "Save AdSense settings"
+msgstr "Salvar as configurações do AdSense"
diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
new file mode 100644
index 0000000000..d95dc7fed4
--- /dev/null
+++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
@@ -0,0 +1,102 @@
+# Translation of StatusNet - AnonymousFave to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Y-M D
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - AnonymousFave\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:22+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. TRANS: Label for tally for number of times a notice was favored.
+#: AnonymousFavePlugin.php:207
+msgid "Favored"
+msgstr "Karetañ"
+
+#. TRANS: Server exception.
+#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
+msgid "Couldn't create anonymous user session."
+msgstr "Dibosupl eo krouiñ un dalc'h implijer dizanv."
+
+#. TRANS: Plugin description.
+#: AnonymousFavePlugin.php:326
+msgid "Allow anonymous users to favorite notices."
+msgstr "Aotreañ an implijerien dizanv da gavout gwelloc'h kemennoù."
+
+#. TRANS: Client error.
+#: anonfavor.php:60
+msgid ""
+"Could not favor notice! Please make sure your browser has cookies enabled."
+msgstr ""
+"Dibosupl eo merkañ ar c'hemenn-mañ evel pennroll ! Mar plij gwiriekait e "
+"tegemer ho urzhiataer an toupinoù."
+
+#. TRANS: Client error.
+#: anonfavor.php:71 anondisfavor.php:72
+msgid "There was a problem with your session token. Try again, please."
+msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit."
+
+#. TRANS: Client error.
+#: anonfavor.php:78
+msgid "This notice is already a favorite!"
+msgstr "Ouzhpennet eo bet ar c'hemenn-mañ d'ho pennrolloù dija !"
+
+#. TRANS: Server error.
+#: anonfavor.php:85
+msgid "Could not create favorite."
+msgstr "Diposupl eo krouiñ ar pennroll-mañ."
+
+#. TRANS: Title.
+#: anonfavor.php:95
+msgid "Disfavor favorite"
+msgstr "Tennañ ar pennroll"
+
+#. TRANS: Server exception.
+#. TRANS: %d is the notice ID (number).
+#: Fave_tally.php:155 Fave_tally.php:184
+#, php-format
+msgid "Couldn't update favorite tally for notice ID %d."
+msgstr "Dibosupl eo hizivaat ar skor penndibaboù evit ar c'hemenn %d."
+
+#. TRANS: Server exception.
+#. TRANS: %d is the notice ID (number).
+#: Fave_tally.php:215
+#, php-format
+msgid "Couldn't create favorite tally for notice ID %d."
+msgstr "Dibosupl eo krouiñ ar skor penndibaboù evit ar c'hemenn %d."
+
+#. TRANS: Client error.
+#: anondisfavor.php:61
+msgid ""
+"Could not disfavor notice! Please make sure your browser has cookies enabled."
+msgstr ""
+"Dibosupl eo merkañ ar c'hemenn-mañ evel nann-pennroll ! Mar plij gwiriekait "
+"e tegemer ho urzhiataer an toupinoù."
+
+#. TRANS: Client error.
+#: anondisfavor.php:82
+msgid "This notice is not a favorite!"
+msgstr "N'eo ket ar c'hemenn-mañ ur pennroll !"
+
+#. TRANS: Server error.
+#: anondisfavor.php:91
+msgid "Could not delete favorite."
+msgstr "Diposupl eo dilemel ar pennroll-mañ."
+
+#. TRANS: Title.
+#: anondisfavor.php:101
+msgid "Add to favorites"
+msgstr "Ouzhpennañ d'ar pennrolloù"
diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
new file mode 100644
index 0000000000..879de77186
--- /dev/null
+++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
@@ -0,0 +1,102 @@
+# Translation of StatusNet - AnonymousFave to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - AnonymousFave\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:22+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-anonymousfave\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Label for tally for number of times a notice was favored.
+#: AnonymousFavePlugin.php:207
+msgid "Favored"
+msgstr ""
+
+#. TRANS: Server exception.
+#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
+msgid "Couldn't create anonymous user session."
+msgstr "Konnte keine anonyme Benutzer-Sitzung erstellen."
+
+#. TRANS: Plugin description.
+#: AnonymousFavePlugin.php:326
+msgid "Allow anonymous users to favorite notices."
+msgstr "Ermöglicht anonymen Benutzern Nachrichten zu favorisieren."
+
+#. TRANS: Client error.
+#: anonfavor.php:60
+msgid ""
+"Could not favor notice! Please make sure your browser has cookies enabled."
+msgstr ""
+"Konnte Nachricht nicht favorisieren! Bitte stelle sicher, dass Cookies in "
+"deinem Browser aktiviert sind."
+
+#. TRANS: Client error.
+#: anonfavor.php:71 anondisfavor.php:72
+msgid "There was a problem with your session token. Try again, please."
+msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
+
+#. TRANS: Client error.
+#: anonfavor.php:78
+msgid "This notice is already a favorite!"
+msgstr "Diese Nachricht ist bereits ein Favorit!"
+
+#. TRANS: Server error.
+#: anonfavor.php:85
+msgid "Could not create favorite."
+msgstr "Konnte keinen Favoriten erstellen."
+
+#. TRANS: Title.
+#: anonfavor.php:95
+msgid "Disfavor favorite"
+msgstr "Aus Favoriten entfernen"
+
+#. TRANS: Server exception.
+#. TRANS: %d is the notice ID (number).
+#: Fave_tally.php:155 Fave_tally.php:184
+#, php-format
+msgid "Couldn't update favorite tally for notice ID %d."
+msgstr ""
+
+#. TRANS: Server exception.
+#. TRANS: %d is the notice ID (number).
+#: Fave_tally.php:215
+#, php-format
+msgid "Couldn't create favorite tally for notice ID %d."
+msgstr ""
+
+#. TRANS: Client error.
+#: anondisfavor.php:61
+msgid ""
+"Could not disfavor notice! Please make sure your browser has cookies enabled."
+msgstr ""
+"Konnte Nachricht nicht aus den Favoriten entfernen! Bitte stelle sicher, "
+"dass Cookies in deinem Browser aktiviert sind."
+
+#. TRANS: Client error.
+#: anondisfavor.php:82
+msgid "This notice is not a favorite!"
+msgstr "Diese Nachricht ist kein Favorit!"
+
+#. TRANS: Server error.
+#: anondisfavor.php:91
+msgid "Could not delete favorite."
+msgstr "Konnte Favoriten nicht löschen."
+
+#. TRANS: Title.
+#: anondisfavor.php:101
+msgid "Add to favorites"
+msgstr "Zu Favoriten hinzufügen"
diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
index d7d357c967..a451aaec8d 100644
--- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
@@ -1,6 +1,7 @@
 # Translation of StatusNet - AnonymousFave to Spanish (Español)
 # Expored from translatewiki.net
 #
+# Author: Locos epraix
 # Author: Translationista
 # --
 # This file is distributed under the same license as the StatusNet package.
@@ -9,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - AnonymousFave\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:13+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:22+0000\n"
 "Language-Team: Spanish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-anonymousfave\n"
@@ -24,7 +25,7 @@ msgstr ""
 #. TRANS: Label for tally for number of times a notice was favored.
 #: AnonymousFavePlugin.php:207
 msgid "Favored"
-msgstr ""
+msgstr "Favorito"
 
 #. TRANS: Server exception.
 #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
index e2174d347c..147bb289be 100644
--- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - AnonymousFave\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:13+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:22+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
@@ -24,7 +24,7 @@ msgstr ""
 #. TRANS: Label for tally for number of times a notice was favored.
 #: AnonymousFavePlugin.php:207
 msgid "Favored"
-msgstr ""
+msgstr "Favorite"
 
 #. TRANS: Server exception.
 #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
index 6579d35e82..cef8f60171 100644
--- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - AnonymousFave\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:13+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:22+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
@@ -24,7 +24,7 @@ msgstr ""
 #. TRANS: Label for tally for number of times a notice was favored.
 #: AnonymousFavePlugin.php:207
 msgid "Favored"
-msgstr ""
+msgstr "Бендисано"
 
 #. TRANS: Server exception.
 #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
index b4e9503306..f9addab250 100644
--- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
@@ -10,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - AnonymousFave\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:13+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:22+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-04 23:06:35+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-anonymousfave\n"
@@ -25,7 +25,7 @@ msgstr ""
 #. TRANS: Label for tally for number of times a notice was favored.
 #: AnonymousFavePlugin.php:207
 msgid "Favored"
-msgstr ""
+msgstr "Als favoriet aangemerkt"
 
 #. TRANS: Server exception.
 #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po
index 294db46316..7408489b66 100644
--- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - AnonymousFave\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:13+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:22+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:06:35+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:33:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
@@ -25,7 +25,7 @@ msgstr ""
 #. TRANS: Label for tally for number of times a notice was favored.
 #: AnonymousFavePlugin.php:207
 msgid "Favored"
-msgstr ""
+msgstr "Обране"
 
 #. TRANS: Server exception.
 #: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po
new file mode 100644
index 0000000000..1ab375aa90
--- /dev/null
+++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po
@@ -0,0 +1,45 @@
+# Translation of StatusNet - AutoSandbox to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - AutoSandbox\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:31+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:22+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-autosandbox\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: AutoSandboxPlugin.php:66
+msgid "Automatically sandboxes newly registered members."
+msgstr "Neu registrierte Benutzer automatisch auf die Spielwiese setzen."
+
+#: AutoSandboxPlugin.php:72
+msgid ""
+"Note you will initially be \"sandboxed\" so your posts will not appear in "
+"the public timeline."
+msgstr ""
+"Beachte, dass du anfangs in die „Spielwiese“ gesetzt wirst, sodass deine "
+"Beiträge nicht in der öffentlichen Zeitleiste erscheinen."
+
+#. TRANS: $contactlink is a clickable e-mailaddress.
+#: AutoSandboxPlugin.php:79
+msgid ""
+"Note you will initially be \"sandboxed\" so your posts will not appear in "
+"the public timeline. Send a message to $contactlink to speed up the "
+"unsandboxing process."
+msgstr ""
+"Beachte, dass du anfangs in die „Spielwiese“ gesetzt wirst, sodass deine "
+"Beiträge nicht in der öffentlichen Zeitleiste erscheinen. Schicke eine "
+"Nachricht an $contactlink, um schneller aus der Spielwiese rauszukommen."
diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po
new file mode 100644
index 0000000000..85a2398622
--- /dev/null
+++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po
@@ -0,0 +1,46 @@
+# Translation of StatusNet - AutoSandbox to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: MaxSem
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - AutoSandbox\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:31+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:22+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-autosandbox\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"
+
+#: AutoSandboxPlugin.php:66
+msgid "Automatically sandboxes newly registered members."
+msgstr "Автоматически отсылает всех новых пользователей в «песочницу»."
+
+#: AutoSandboxPlugin.php:72
+msgid ""
+"Note you will initially be \"sandboxed\" so your posts will not appear in "
+"the public timeline."
+msgstr ""
+"Обратите внимание, что сначала вы будете находиться в «песочнице», так что "
+"ваши сообщения не будут появляться в общей ленте."
+
+#. TRANS: $contactlink is a clickable e-mailaddress.
+#: AutoSandboxPlugin.php:79
+msgid ""
+"Note you will initially be \"sandboxed\" so your posts will not appear in "
+"the public timeline. Send a message to $contactlink to speed up the "
+"unsandboxing process."
+msgstr ""
+"Обратите внимание, что сначала вы будете находиться в «песочнице», так что "
+"ваши сообщения не будут появляться в общей ленте. Отправьте сообщение на "
+"адрес $contactlink, чтобы ускорить перевод из песочницы."
diff --git a/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po
new file mode 100644
index 0000000000..ad60a53b98
--- /dev/null
+++ b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po
@@ -0,0 +1,33 @@
+# Translation of StatusNet - Autocomplete to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Autocomplete\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:23+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: AutocompletePlugin.php:80
+msgid ""
+"The autocomplete plugin allows users to autocomplete screen names in @ "
+"replies. When an \"@\" is typed into the notice text area, an autocomplete "
+"box is displayed populated with the user's friend' screen names."
+msgstr ""
+"Talvezout a ra an adveziant emglokaat d'an implijerien da glokaat en un "
+"doare emgefre al lesanvioù er respontoù @. Pa vez merket un \"@\" e takad "
+"skridaozañ ar c'hemenn e vez diskouezet ur voest emglokaat enni lesanvioù "
+"mignoned an implijer."
diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po
new file mode 100644
index 0000000000..6053415d42
--- /dev/null
+++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po
@@ -0,0 +1,33 @@
+# Translation of StatusNet - Autocomplete to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Autocomplete\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:23+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-autocomplete\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: AutocompletePlugin.php:80
+msgid ""
+"The autocomplete plugin allows users to autocomplete screen names in @ "
+"replies. When an \"@\" is typed into the notice text area, an autocomplete "
+"box is displayed populated with the user's friend' screen names."
+msgstr ""
+"Das „Autocomplete“-Plugin ermöglicht die Autovervollständigung von "
+"Benutzernamen in @-Antworten. Wenn ein „@“ in die Nachrichten-Textbox "
+"eingegeben wird, wird eine Autovervollständigen-Box mit den Benutzernamen "
+"der Freunde des Benutzers angezeigt."
diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po
index ce4a7de7b0..a7159e1bf0 100644
--- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po
@@ -9,22 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - BitlyUrl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:16+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:32+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:35:11+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #: BitlyUrlPlugin.php:48
-#, fuzzy
 msgid "You must specify a serviceUrl for bit.ly shortening."
-msgstr "Vous devez spécifier un serviceUrl."
+msgstr ""
 
 #: BitlyUrlPlugin.php:171
 #, php-format
@@ -35,11 +34,11 @@ msgstr ""
 
 #: BitlyUrlPlugin.php:212
 msgid "bit.ly"
-msgstr ""
+msgstr "bit.ly"
 
 #: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54
 msgid "bit.ly URL shortening"
-msgstr ""
+msgstr "Raccourcissement d’URL bit.ly"
 
 #: bitlyadminpanelaction.php:65
 msgid ""
@@ -47,35 +46,42 @@ msgid ""
 "bit.ly/a/your_api_key). This verifies that this is an authorized account, "
 "and allow you to use bit.ly's tracking features and custom domains."
 msgstr ""
+"Le raccourcissement d’URL par bit.ly nécessite [un compte bit.ly et une clé "
+"API](http://bit.ly/a/your_api_key). Ceci permet de vérifier qu'il s'agit "
+"bien d’un compte autorisé et vous permet d’utiliser les fonctionnalités de "
+"suivi et les domaines personnalisés de bit.ly."
 
 #: bitlyadminpanelaction.php:132
 msgid "Invalid login. Max length is 255 characters."
 msgstr ""
+"Nom d’utilisateur invalide. La longueur maximale est de 255 caractères."
 
 #: bitlyadminpanelaction.php:138
 msgid "Invalid API key. Max length is 255 characters."
-msgstr ""
+msgstr "Clé d’API invalide. La longueur maximale est de 255 caractères."
 
 #: bitlyadminpanelaction.php:191
 msgid "Credentials"
-msgstr ""
+msgstr "Pouvoirs"
 
 #: bitlyadminpanelaction.php:199
 msgid "Leave these empty to use global default credentials."
-msgstr ""
+msgstr "Laissez ceci vide pour utiliser les pouvoirs globaux par défaut."
 
 #: bitlyadminpanelaction.php:202
 msgid "If you leave these empty, bit.ly will be unavailable to users."
 msgstr ""
+"Si vous laissez ceci vide, bit.ly ne sera pas disponible pour les "
+"utilisateurs."
 
 #: bitlyadminpanelaction.php:209
 msgid "Login name"
-msgstr ""
+msgstr "Nom d’utilisateur"
 
 #: bitlyadminpanelaction.php:218
 msgid "API key"
-msgstr ""
+msgstr "Clé API"
 
 #: bitlyadminpanelaction.php:236
 msgid "Save bit.ly settings"
-msgstr ""
+msgstr "Sauvegarder les paramètres bit.ly"
diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po
index a6605c9171..93dc56bed4 100644
--- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po
@@ -9,22 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - BitlyUrl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:16+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:34+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:35:11+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: BitlyUrlPlugin.php:48
-#, fuzzy
 msgid "You must specify a serviceUrl for bit.ly shortening."
-msgstr "Tu debe specificar un serviceUrl."
+msgstr ""
 
 #: BitlyUrlPlugin.php:171
 #, php-format
@@ -33,11 +32,11 @@ msgstr "Usa abbreviator de URL %1$s."
 
 #: BitlyUrlPlugin.php:212
 msgid "bit.ly"
-msgstr ""
+msgstr "bit.ly"
 
 #: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54
 msgid "bit.ly URL shortening"
-msgstr ""
+msgstr "Accurtamento de URL con bit.ly"
 
 #: bitlyadminpanelaction.php:65
 msgid ""
@@ -45,35 +44,40 @@ msgid ""
 "bit.ly/a/your_api_key). This verifies that this is an authorized account, "
 "and allow you to use bit.ly's tracking features and custom domains."
 msgstr ""
+"Le accurtamento de URL con bit.ly require [un conto de bit.ly e un clave API]"
+"(http://bit.ly/a/your_api_key). Isto verifica que isto es un conto "
+"autorisate, e permitte usar le functionalitate de traciamento e dominios "
+"personalisate de bit.ly."
 
 #: bitlyadminpanelaction.php:132
 msgid "Invalid login. Max length is 255 characters."
-msgstr ""
+msgstr "Nomine de usator invalide. Longitude maximal es 255 characteres."
 
 #: bitlyadminpanelaction.php:138
 msgid "Invalid API key. Max length is 255 characters."
-msgstr ""
+msgstr "Clave API invalide. Longitude maximal es 255 characteres."
 
 #: bitlyadminpanelaction.php:191
 msgid "Credentials"
-msgstr ""
+msgstr "Datos de authentication"
 
 #: bitlyadminpanelaction.php:199
 msgid "Leave these empty to use global default credentials."
 msgstr ""
+"Lassa istes vacue pro usar le datos de authentication global predefinite."
 
 #: bitlyadminpanelaction.php:202
 msgid "If you leave these empty, bit.ly will be unavailable to users."
-msgstr ""
+msgstr "Si tu lassa istes vacue, bit.ly non essera disponibile al usatores."
 
 #: bitlyadminpanelaction.php:209
 msgid "Login name"
-msgstr ""
+msgstr "Nomine de conto"
 
 #: bitlyadminpanelaction.php:218
 msgid "API key"
-msgstr ""
+msgstr "Clave API"
 
 #: bitlyadminpanelaction.php:236
 msgid "Save bit.ly settings"
-msgstr ""
+msgstr "Salveguardar configurationes de bit.ly"
diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po
index f7e262b42e..8b6e28b3fe 100644
--- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po
@@ -9,22 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - BitlyUrl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:16+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:34+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:35:11+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
 "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
 
 #: BitlyUrlPlugin.php:48
-#, fuzzy
 msgid "You must specify a serviceUrl for bit.ly shortening."
-msgstr "Мора да назначите serviceUrl."
+msgstr ""
 
 #: BitlyUrlPlugin.php:171
 #, php-format
@@ -35,11 +34,11 @@ msgstr ""
 
 #: BitlyUrlPlugin.php:212
 msgid "bit.ly"
-msgstr ""
+msgstr "bit.ly"
 
 #: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54
 msgid "bit.ly URL shortening"
-msgstr ""
+msgstr "Скратување на URL со bit.ly"
 
 #: bitlyadminpanelaction.php:65
 msgid ""
@@ -47,35 +46,40 @@ msgid ""
 "bit.ly/a/your_api_key). This verifies that this is an authorized account, "
 "and allow you to use bit.ly's tracking features and custom domains."
 msgstr ""
+"Скратувањето на URL-адреси со bit.ly бара [сметка и API-клуч за bit.ly]"
+"(http://bit.ly/a/your_api_key). Со ова се потврдува дека ова е овластена "
+"сметка, и Ви овозможува да ги користите можностите за следење и "
+"прилагодување на домени што ги нуди bit.ly's."
 
 #: bitlyadminpanelaction.php:132
 msgid "Invalid login. Max length is 255 characters."
-msgstr ""
+msgstr "Неважечко корисничко име. Дозволени се највеќе 255 знаци."
 
 #: bitlyadminpanelaction.php:138
 msgid "Invalid API key. Max length is 255 characters."
-msgstr ""
+msgstr "Неважечки API-клуч. Дозволени се највеќе 255 знаци."
 
 #: bitlyadminpanelaction.php:191
 msgid "Credentials"
-msgstr ""
+msgstr "Уверенија"
 
 #: bitlyadminpanelaction.php:199
 msgid "Leave these empty to use global default credentials."
 msgstr ""
+"Оставете го ова празно за да го користите глобалното уверение по основно."
 
 #: bitlyadminpanelaction.php:202
 msgid "If you leave these empty, bit.ly will be unavailable to users."
-msgstr ""
+msgstr "Ако ова го оставите празно, bit.ly ќе биде недостапен за корисниците."
 
 #: bitlyadminpanelaction.php:209
 msgid "Login name"
-msgstr ""
+msgstr "Корисничко име"
 
 #: bitlyadminpanelaction.php:218
 msgid "API key"
-msgstr ""
+msgstr "API-клуч"
 
 #: bitlyadminpanelaction.php:236
 msgid "Save bit.ly settings"
-msgstr ""
+msgstr "Зачувај нагодувања на bit.ly"
diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po
index 4d5dba6483..7669c1ebcd 100644
--- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po
@@ -9,22 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - BitlyUrl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:16+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:34+0000\n"
 "Language-Team: Norwegian (bokmål)‬ \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:35:11+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-bitlyurl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: BitlyUrlPlugin.php:48
-#, fuzzy
 msgid "You must specify a serviceUrl for bit.ly shortening."
-msgstr "Du må oppgi en tjeneste-Url."
+msgstr ""
 
 #: BitlyUrlPlugin.php:171
 #, php-format
@@ -33,11 +32,11 @@ msgstr "Bruker URL-forkortertjenesten %1$s."
 
 #: BitlyUrlPlugin.php:212
 msgid "bit.ly"
-msgstr ""
+msgstr "bit.ly"
 
 #: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54
 msgid "bit.ly URL shortening"
-msgstr ""
+msgstr "bit.ly URL-forkortelse"
 
 #: bitlyadminpanelaction.php:65
 msgid ""
@@ -45,35 +44,38 @@ msgid ""
 "bit.ly/a/your_api_key). This verifies that this is an authorized account, "
 "and allow you to use bit.ly's tracking features and custom domains."
 msgstr ""
+"URL-forkortelse med bit.ly krever [en bit.ly-konto og API-nøkkel](http://bit."
+"ly/a/your_api_key). Denne bekrefter at dette er en autorisert konto og "
+"tillater deg å bruke bit.lys sporingsfunksjoner og egendefinerte domener."
 
 #: bitlyadminpanelaction.php:132
 msgid "Invalid login. Max length is 255 characters."
-msgstr ""
+msgstr "Ugyldig pålogging. Maks lengde er 255 tegn."
 
 #: bitlyadminpanelaction.php:138
 msgid "Invalid API key. Max length is 255 characters."
-msgstr ""
+msgstr "Ugyldig API-nøkkel. Maks lengde er 255 tegn."
 
 #: bitlyadminpanelaction.php:191
 msgid "Credentials"
-msgstr ""
+msgstr "Attester"
 
 #: bitlyadminpanelaction.php:199
 msgid "Leave these empty to use global default credentials."
-msgstr ""
+msgstr "La disse være tomme for å bruke globale standardattester."
 
 #: bitlyadminpanelaction.php:202
 msgid "If you leave these empty, bit.ly will be unavailable to users."
-msgstr ""
+msgstr "Om du lar disse være tomme vil bit.ly være utilgjengelig for brukere."
 
 #: bitlyadminpanelaction.php:209
 msgid "Login name"
-msgstr ""
+msgstr "Innloggingsnavn"
 
 #: bitlyadminpanelaction.php:218
 msgid "API key"
-msgstr ""
+msgstr "API-nøkkel"
 
 #: bitlyadminpanelaction.php:236
 msgid "Save bit.ly settings"
-msgstr ""
+msgstr "Lagre bit.ly-innstillinger"
diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po
index b26fe0d42e..29e305c84b 100644
--- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po
@@ -9,22 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - BitlyUrl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:16+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:34+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-03 20:54:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:35:11+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-bitlyurl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: BitlyUrlPlugin.php:48
-#, fuzzy
 msgid "You must specify a serviceUrl for bit.ly shortening."
-msgstr "U moet een serviceURL opgeven."
+msgstr ""
 
 #: BitlyUrlPlugin.php:171
 #, php-format
@@ -35,11 +34,11 @@ msgstr ""
 
 #: BitlyUrlPlugin.php:212
 msgid "bit.ly"
-msgstr ""
+msgstr "bit.ly"
 
 #: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54
 msgid "bit.ly URL shortening"
-msgstr ""
+msgstr "URL's inkorten via bit.ly"
 
 #: bitlyadminpanelaction.php:65
 msgid ""
@@ -47,35 +46,39 @@ msgid ""
 "bit.ly/a/your_api_key). This verifies that this is an authorized account, "
 "and allow you to use bit.ly's tracking features and custom domains."
 msgstr ""
+"Het inkorten van URL's via bit.ly vereist een [account bij bit.ly en een API-"
+"sleutel](http://bit.ly/a/your_api_key)."
 
 #: bitlyadminpanelaction.php:132
 msgid "Invalid login. Max length is 255 characters."
-msgstr ""
+msgstr "Ongeldige aanmeldgegevens. De maximale lengte is 255 tekens."
 
 #: bitlyadminpanelaction.php:138
 msgid "Invalid API key. Max length is 255 characters."
-msgstr ""
+msgstr "De API-sleutel is ongeldig. De maximale lengte is 255 tekens."
 
 #: bitlyadminpanelaction.php:191
 msgid "Credentials"
-msgstr ""
+msgstr "Gebruikersgegevens"
 
 #: bitlyadminpanelaction.php:199
 msgid "Leave these empty to use global default credentials."
-msgstr ""
+msgstr "Laat deze leeg om globale standaard gebruikersgegevens te gebruiken."
 
 #: bitlyadminpanelaction.php:202
 msgid "If you leave these empty, bit.ly will be unavailable to users."
 msgstr ""
+"Als u deze velden oningevuld laat, is bit.ly niet beschikbaar voor "
+"gebruikers."
 
 #: bitlyadminpanelaction.php:209
 msgid "Login name"
-msgstr ""
+msgstr "Gebruikersnaam"
 
 #: bitlyadminpanelaction.php:218
 msgid "API key"
-msgstr ""
+msgstr "API-sleutel"
 
 #: bitlyadminpanelaction.php:236
 msgid "Save bit.ly settings"
-msgstr ""
+msgstr "bit.ly-instellingen opslaan"
diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po
index a5c1ad86aa..3a22522133 100644
--- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - BitlyUrl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:16+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:34+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:54:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:35:11+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
@@ -23,9 +23,8 @@ msgstr ""
 "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
 
 #: BitlyUrlPlugin.php:48
-#, fuzzy
 msgid "You must specify a serviceUrl for bit.ly shortening."
-msgstr "Ви маєте вказати URL-адресу сервісу."
+msgstr ""
 
 #: BitlyUrlPlugin.php:171
 #, php-format
@@ -35,11 +34,11 @@ msgstr ""
 
 #: BitlyUrlPlugin.php:212
 msgid "bit.ly"
-msgstr ""
+msgstr "bit.ly"
 
 #: BitlyUrlPlugin.php:213 bitlyadminpanelaction.php:54
 msgid "bit.ly URL shortening"
-msgstr ""
+msgstr "Скорочення URL-адрес bit.ly"
 
 #: bitlyadminpanelaction.php:65
 msgid ""
@@ -47,35 +46,43 @@ msgid ""
 "bit.ly/a/your_api_key). This verifies that this is an authorized account, "
 "and allow you to use bit.ly's tracking features and custom domains."
 msgstr ""
+"Скорочення URL-адрес за допомогою bit.ly вимагає [акаунт bit.ly та API-ключ]"
+"(http://bit.ly/a/your_api_key). Це підтвердить те, що даний акаунт є "
+"авторизованим і дозволить користуватися функцією відстеження bit.ly, а також "
+"доменами користувачів."
 
 #: bitlyadminpanelaction.php:132
 msgid "Invalid login. Max length is 255 characters."
-msgstr ""
+msgstr "Невірний лоґін. Максимальна довжина — 255 символів."
 
 #: bitlyadminpanelaction.php:138
 msgid "Invalid API key. Max length is 255 characters."
-msgstr ""
+msgstr "Невірний API-ключ. Максимальна довжина — 255 символів."
 
 #: bitlyadminpanelaction.php:191
 msgid "Credentials"
-msgstr ""
+msgstr "Повноваження"
 
 #: bitlyadminpanelaction.php:199
 msgid "Leave these empty to use global default credentials."
 msgstr ""
+"Залиште це поле порожнім, щоб користуватися загальними повноваженнями за "
+"замовчуванням."
 
 #: bitlyadminpanelaction.php:202
 msgid "If you leave these empty, bit.ly will be unavailable to users."
 msgstr ""
+"Якщо ви залишите це поле порожнім, сервіс bit.ly стане недоступним для інших "
+"користувачів."
 
 #: bitlyadminpanelaction.php:209
 msgid "Login name"
-msgstr ""
+msgstr "Лоґін"
 
 #: bitlyadminpanelaction.php:218
 msgid "API key"
-msgstr ""
+msgstr "API-ключ"
 
 #: bitlyadminpanelaction.php:236
 msgid "Save bit.ly settings"
-msgstr ""
+msgstr "Зберегти налаштування bit.ly"
diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po
new file mode 100644
index 0000000000..cbc54fa4e5
--- /dev/null
+++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po
@@ -0,0 +1,95 @@
+# Translation of StatusNet - Blacklist to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Blacklist\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:35+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:25+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-blacklist\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: BlacklistPlugin.php:148
+#, php-format
+msgid "You may not register with homepage '%s'."
+msgstr "Du darfst dich nicht mit der Homepage „%s“ anmelden."
+
+#: BlacklistPlugin.php:158
+#, php-format
+msgid "You may not register with nickname '%s'."
+msgstr "Du darfst dich nicht mit den Benutzernamen „%s“ anmelden."
+
+#: BlacklistPlugin.php:182
+#, php-format
+msgid "You may not use homepage '%s'."
+msgstr "Du darfst nicht die Homepage „%s“ benutzen."
+
+#: BlacklistPlugin.php:192
+#, php-format
+msgid "You may not use nickname '%s'."
+msgstr "Du darfst nicht den Benutzernamen „%s“ benutzen."
+
+#: BlacklistPlugin.php:234
+#, php-format
+msgid "You may not use URL \"%s\" in notices."
+msgstr "Du darfst nicht die URL „%s“ in Nachrichten verwenden."
+
+#: BlacklistPlugin.php:338
+msgid "Keeps a blacklist of forbidden nickname and URL patterns."
+msgstr "Hält eine schwarze Liste der verbotenen Benutzernamen und URL-Muster."
+
+#: BlacklistPlugin.php:375 blacklistadminpanel.php:52
+msgid "Blacklist"
+msgstr "Schwarze Liste"
+
+#: BlacklistPlugin.php:376
+msgid "Blacklist configuration"
+msgstr "Konfiguration der schwarzen Liste"
+
+#: BlacklistPlugin.php:402
+msgid "Add this nickname pattern to blacklist"
+msgstr "Dieses Benutzernamen-Muster zur schwarzen Liste hinzufügen"
+
+#: BlacklistPlugin.php:411
+msgid "Add this homepage pattern to blacklist"
+msgstr "Dieses Homepage-Muster zur schwarzen Liste hinzufügen"
+
+#: blacklistadminpanel.php:62
+msgid "Blacklisted URLs and nicknames"
+msgstr "URLs und Benutzernamen auf der schwarzen Liste"
+
+#: blacklistadminpanel.php:174
+msgid "Nicknames"
+msgstr "Benutzernamen"
+
+#: blacklistadminpanel.php:176
+msgid "Patterns of nicknames to block, one per line"
+msgstr "Muster der zu blockierenden Benutzernamen, einer pro Zeile"
+
+#: blacklistadminpanel.php:182
+msgid "URLs"
+msgstr "URLs"
+
+#: blacklistadminpanel.php:184
+msgid "Patterns of URLs to block, one per line"
+msgstr "Muster der zu blockierenden URLS, eine pro Zeile"
+
+#: blacklistadminpanel.php:198
+msgid "Save"
+msgstr "Speichern"
+
+#: blacklistadminpanel.php:201
+msgid "Save site settings"
+msgstr "Website-Einstellungen speichern"
diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po
new file mode 100644
index 0000000000..8a6f38b5f8
--- /dev/null
+++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - BlankAd to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - BlankAd\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:36+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:25+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-blankad\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: BlankAdPlugin.php:127
+msgid "Plugin for testing ad layout."
+msgstr "Utvidelse for å teste annonseplasseringer."
diff --git a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po
new file mode 100644
index 0000000000..f7c0dcfabf
--- /dev/null
+++ b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - BlogspamNet to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - BlogspamNet\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:37+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:33:27+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-blogspamnet\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: BlogspamNetPlugin.php:152
+msgid "Plugin to check submitted notices with blogspam.net."
+msgstr "Astenn evit gwiriañ gant blogspam.net ar c'hmennoù kaset."
diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po
new file mode 100644
index 0000000000..dd4a52afb2
--- /dev/null
+++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po
@@ -0,0 +1,34 @@
+# Translation of StatusNet - ClientSideShorten to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - ClientSideShorten\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:40+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:33+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-clientsideshorten\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ClientSideShortenPlugin.php:74
+msgid ""
+"ClientSideShorten causes the web interface's notice form to automatically "
+"shorten URLs as they entered, and before the notice is submitted."
+msgstr ""
+"ClientSideShorten sorgt dafür, dass in die Nachrichtenbox eingegebene URLs "
+"sofort gekürzt werden, noch bevor die Nachricht gespeichert wird."
+
+#: shorten.php:55
+msgid "'text' argument must be specified."
+msgstr ""
diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po
new file mode 100644
index 0000000000..8b44b37962
--- /dev/null
+++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po
@@ -0,0 +1,27 @@
+# Translation of StatusNet - DirectionDetector to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - DirectionDetector\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:42+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-directiondetector\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: DirectionDetectorPlugin.php:261
+msgid "Shows notices with right-to-left content in correct direction."
+msgstr ""
+"Zeigt Nachrichten mit Rechts-nach-Links-Inhalt in der korrekten Richtung an."
diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po
new file mode 100644
index 0000000000..be330446d7
--- /dev/null
+++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - DirectionDetector to Hebrew (עברית)
+# Expored from translatewiki.net
+#
+# Author: YaronSh
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - DirectionDetector\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:43+0000\n"
+"Language-Team: Hebrew \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: he\n"
+"X-Message-Group: #out-statusnet-plugin-directiondetector\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: DirectionDetectorPlugin.php:261
+msgid "Shows notices with right-to-left content in correct direction."
+msgstr "הצגת הערות עם תוכן מימין לשמאל בכיוון הנכון."
diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po
new file mode 100644
index 0000000000..fe98e76337
--- /dev/null
+++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - DiskCache to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - DiskCache\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:43+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:37+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-diskcache\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: DiskCachePlugin.php:175
+msgid "Plugin to implement cache interface with disk files."
+msgstr "Utvidelse for å implementere hurtiglagergrensesnitt med disk-filer."
diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po
new file mode 100644
index 0000000000..c051259a9d
--- /dev/null
+++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po
@@ -0,0 +1,27 @@
+# Translation of StatusNet - DiskCache to Brazilian Portuguese (Português do Brasil)
+# Expored from translatewiki.net
+#
+# Author: Giro720
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - DiskCache\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:43+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-09 14:34:37+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-diskcache\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: DiskCachePlugin.php:175
+msgid "Plugin to implement cache interface with disk files."
+msgstr "Plugin para implementar interface de cache com arquivos de disco."
diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po
new file mode 100644
index 0000000000..f9fd0aa429
--- /dev/null
+++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po
@@ -0,0 +1,46 @@
+# Translation of StatusNet - Disqus to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: Michael
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Disqus\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:44+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:40+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-disqus\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: DisqusPlugin.php:142
+#, php-format
+msgid ""
+"Please enable JavaScript to view the [comments powered by Disqus](http://"
+"disqus.com/?ref_noscript=%s)."
+msgstr ""
+
+#: DisqusPlugin.php:149
+msgid "Comments powered by "
+msgstr ""
+
+#: DisqusPlugin.php:201
+msgid "Comments"
+msgstr "Kommentare"
+
+#: DisqusPlugin.php:241
+msgid ""
+"Use Disqus to add commenting to notice "
+"pages."
+msgstr ""
+"Benutzung von Disqus zum Hinzufügen von "
+"Kommentaren auf Nachrichtenseiten."
diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po
new file mode 100644
index 0000000000..251eccddd7
--- /dev/null
+++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po
@@ -0,0 +1,47 @@
+# Translation of StatusNet - Disqus to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Disqus\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:45+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:40+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-disqus\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: DisqusPlugin.php:142
+#, php-format
+msgid ""
+"Please enable JavaScript to view the [comments powered by Disqus](http://"
+"disqus.com/?ref_noscript=%s)."
+msgstr ""
+"Aktiver JavaScript for å vise [kommentarene levert av Disqus](http://disqus."
+"com/?ref_noscript=%s)."
+
+#: DisqusPlugin.php:149
+msgid "Comments powered by "
+msgstr "Kommentarer levert av "
+
+#: DisqusPlugin.php:201
+msgid "Comments"
+msgstr "Kommentarer"
+
+#: DisqusPlugin.php:241
+msgid ""
+"Use Disqus to add commenting to notice "
+"pages."
+msgstr ""
+"Bruk Disqus til å legge kommentering til "
+"notissider."
diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po
new file mode 100644
index 0000000000..2a4d9ca31e
--- /dev/null
+++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - Echo to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Echo\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:46+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:40+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-echo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: EchoPlugin.php:111
+msgid ""
+"Use Echo to add commenting to notice "
+"pages."
+msgstr ""
+"Benutzung von Echo zum Hinzufügen von "
+"Kommentaren auf Nachrichtenseiten."
diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po
new file mode 100644
index 0000000000..98ff588e53
--- /dev/null
+++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po
@@ -0,0 +1,31 @@
+# Translation of StatusNet - Echo to Brazilian Portuguese (Português do Brasil)
+# Expored from translatewiki.net
+#
+# Author: Giro720
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Echo\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:46+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-09 14:34:40+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-echo\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: EchoPlugin.php:111
+msgid ""
+"Use Echo to add commenting to notice "
+"pages."
+msgstr ""
+"Use o Echo para adicionar comentários "
+"às páginas de notas."
diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po
new file mode 100644
index 0000000000..155b527ca2
--- /dev/null
+++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - EmailAuthentication to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - EmailAuthentication\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:47+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:42+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-emailauthentication\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: EmailAuthenticationPlugin.php:60
+msgid ""
+"The Email Authentication plugin allows users to login using their email "
+"address."
+msgstr ""
+"Talvezout a ra an adveziant dilesa d'an implijerien da gevreañ en ur ober "
+"gant o chomlec'h postel."
diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po
new file mode 100644
index 0000000000..22d4a3e160
--- /dev/null
+++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - EmailAuthentication to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - EmailAuthentication\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:47+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:42+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-emailauthentication\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: EmailAuthenticationPlugin.php:60
+msgid ""
+"The Email Authentication plugin allows users to login using their email "
+"address."
+msgstr ""
+"Das „Email Authentication“-Plugin ermöglicht Benutzern, sich mit ihrer E-"
+"Mail-Adresse anzumelden."
diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po
new file mode 100644
index 0000000000..c9554d2663
--- /dev/null
+++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po
@@ -0,0 +1,31 @@
+# Translation of StatusNet - EmailAuthentication to Brazilian Portuguese (Português do Brasil)
+# Expored from translatewiki.net
+#
+# Author: Giro720
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - EmailAuthentication\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:47+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-09 14:34:42+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-emailauthentication\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: EmailAuthenticationPlugin.php:60
+msgid ""
+"The Email Authentication plugin allows users to login using their email "
+"address."
+msgstr ""
+"O plugin de autenticação por e-mail permite aos usuário autenticarem-se "
+"usando o seu endereço de e-mail."
diff --git a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po
index b2c81c9d7c..fa1594ab86 100644
--- a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po
+++ b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po
@@ -1,6 +1,7 @@
 # Translation of StatusNet - Facebook to Breton (Brezhoneg)
 # Expored from translatewiki.net
 #
+# Author: Fulup
 # Author: Y-M D
 # --
 # This file is distributed under the same license as the StatusNet package.
@@ -9,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Facebook\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:35+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:54+0000\n"
 "Language-Team: Breton \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: br\n"
 "X-Message-Group: #out-statusnet-plugin-facebook\n"
@@ -203,9 +204,9 @@ msgstr "Anv implijer pe ger-tremen direizh."
 #. TRANS: Page title.
 #. TRANS: %1$s is a user nickname, %2$s is a page number.
 #: facebookhome.php:153
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s and friends, page %2$d"
-msgstr "%s hag e vignoned"
+msgstr "%1$s hag e vignoned, pajenn %2$d"
 
 #. TRANS: Page title.
 #. TRANS: %s is a user nickname
@@ -327,9 +328,8 @@ msgid "Facebook Login"
 msgstr "Kevreadenn Facebook"
 
 #: facebookremove.php:53
-#, fuzzy
 msgid "Couldn't remove Facebook user: already deleted."
-msgstr "Dibosupl eo dilemel an implijer Facebook."
+msgstr ""
 
 #: facebookremove.php:63
 msgid "Couldn't remove Facebook user."
@@ -366,7 +366,7 @@ msgstr "Arventennoù"
 #. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set.
 #: facebookaction.php:194
 msgid "Settings"
-msgstr ""
+msgstr "Penndibaboù"
 
 #: facebookaction.php:233
 #, php-format
@@ -395,7 +395,7 @@ msgstr "Kevreañ"
 
 #: facebookaction.php:288
 msgid "Lost or forgotten password?"
-msgstr "Ha kollet o peus ho ker-tremen ?"
+msgstr "Ha kollet ho peus ho ker-tremen ?"
 
 #: facebookaction.php:370
 msgid "No notice content!"
@@ -416,7 +416,7 @@ msgstr "Facebook"
 
 #: facebookadminpanel.php:62
 msgid "Facebook integration settings"
-msgstr ""
+msgstr "Arventennoù enframmañ Facebook"
 
 #: facebookadminpanel.php:123
 msgid "Invalid Facebook API key. Max length is 255 characters."
@@ -432,11 +432,11 @@ msgstr ""
 
 #: facebookadminpanel.php:184
 msgid "API key"
-msgstr ""
+msgstr "Alc'hwez API"
 
 #: facebookadminpanel.php:185
 msgid "API key provided by Facebook"
-msgstr ""
+msgstr "Alc'hwez API pourchaset gant Facebook"
 
 #: facebookadminpanel.php:193
 msgid "Secret"
@@ -444,7 +444,7 @@ msgstr "Kuzh"
 
 #: facebookadminpanel.php:194
 msgid "API secret provided by Facebook"
-msgstr ""
+msgstr "Alc'hwez API kuzh pourchaset gant Facebook"
 
 #: facebookadminpanel.php:210
 msgid "Save"
@@ -457,7 +457,7 @@ msgstr ""
 #. TRANS: Instructions.
 #: FBConnectSettings.php:66
 msgid "Manage how your account connects to Facebook"
-msgstr ""
+msgstr "Merañ an doare ma kevre ho kont ouzh Facebook"
 
 #: FBConnectSettings.php:90
 msgid "There is no Facebook user connected to this account."
@@ -486,7 +486,7 @@ msgstr "Termeniñ ur ger-tremen"
 #. TRANS: Preceded by "Please set a password".
 #: FBConnectSettings.php:132
 msgid " first."
-msgstr ""
+msgstr "da gentañ."
 
 #. TRANS: Submit button.
 #: FBConnectSettings.php:145
@@ -496,7 +496,7 @@ msgstr "Digevrañ"
 
 #: FBConnectSettings.php:180
 msgid "Couldn't delete link to Facebook."
-msgstr ""
+msgstr "N'eus ket bet gallet diverkañ al liamm war-du Facebook."
 
 #: FBConnectSettings.php:196
 msgid "You have disconnected from Facebook."
@@ -504,7 +504,7 @@ msgstr ""
 
 #: FBConnectSettings.php:199
 msgid "Not sure what you're trying to do."
-msgstr ""
+msgstr "N'omp ket sur eus ar pezh emaoc'h o klask ober aze."
 
 #: facebooksettings.php:61
 msgid "There was a problem saving your sync preferences!"
@@ -521,7 +521,7 @@ msgstr ""
 
 #: facebooksettings.php:94
 msgid "Send \"@\" replies to Facebook."
-msgstr ""
+msgstr "Kas respontoù \"@\" da Facebook."
 
 #. TRANS: Submit button to save synchronisation settings.
 #: facebooksettings.php:102
diff --git a/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po
new file mode 100644
index 0000000000..b3e3c53580
--- /dev/null
+++ b/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po
@@ -0,0 +1,584 @@
+# Translation of StatusNet - Facebook to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: Michael
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Facebook\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:54+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-facebook\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: facebookutil.php:429
+#, php-format
+msgid ""
+"Hi, %1$s. We're sorry to inform you that we are unable to update your "
+"Facebook status from %2$s, and have disabled the Facebook application for "
+"your account. This may be because you have removed the Facebook "
+"application's authorization, or have deleted your Facebook account.  You can "
+"re-enable the Facebook application and automatic status updating by re-"
+"installing the %2$s Facebook application.\n"
+"\n"
+"Regards,\n"
+"\n"
+"%2$s"
+msgstr ""
+"Hallo %1$s. Wir konnten leider nicht deinen Facebook-Status von %2$s aus "
+"aktualisieren und haben daher das Facebook-Programm für dein Benutzerkonto "
+"deaktiviert. Dies könnte daran liegen, dass du die Erlaubnis des Facebook-"
+"Programms entfernt hast oder dein Facebook-Benutzerkonto gelöscht hast. Du "
+"kannst das Facebook-Programm und die automatische Aktualisierung des Status, "
+"indem du das %2$s-Facebook-Programm neu installierst.\n"
+"\n"
+"Mit freundlichen Grüßen,\n"
+"\n"
+"%2$s"
+
+#: FBConnectAuth.php:55
+msgid "You must be logged into Facebook to use Facebook Connect."
+msgstr ""
+"Du musst auf Facebook eingeloggt sein, um Facebook Connect benutzen zu "
+"können."
+
+#: FBConnectAuth.php:79
+msgid "There is already a local user linked with this Facebook account."
+msgstr ""
+"Es gibt bereits einen lokalen Benutzer, der mit diesem Facebook-"
+"Benutzerkonto verknüpft ist."
+
+#: FBConnectAuth.php:91 FBConnectSettings.php:166
+msgid "There was a problem with your session token. Try again, please."
+msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
+
+#: FBConnectAuth.php:96
+msgid "You can't register if you don't agree to the license."
+msgstr ""
+"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst."
+
+#: FBConnectAuth.php:106
+msgid "An unknown error has occured."
+msgstr "Ein unbekannter Fehler ist aufgetreten."
+
+#. TRANS: %s is the site name.
+#: FBConnectAuth.php:121
+#, php-format
+msgid ""
+"This is the first time you've logged into %s so we must connect your "
+"Facebook to a local account. You can either create a new account, or connect "
+"with your existing account, if you have one."
+msgstr ""
+"Dies ist das erste Mal, dass du dich auf %s anmeldest, sodass wir dein "
+"Facebook-Benutzerkonto mit einem lokalen Benutzerkonto verbinden müssen. Du "
+"kannst entweder ein neues Benutzerkonto erstellen oder dich mit deinem "
+"existierendem Benutzerkonto verbinden."
+
+#. TRANS: Page title.
+#: FBConnectAuth.php:128
+msgid "Facebook Account Setup"
+msgstr ""
+
+#. TRANS: Legend.
+#: FBConnectAuth.php:162
+msgid "Connection options"
+msgstr "Verbindungsoptionen"
+
+#. TRANS: %s is the name of the license used by the user for their status updates.
+#: FBConnectAuth.php:172
+#, php-format
+msgid ""
+"My text and files are available under %s except this private data: password, "
+"email address, IM address, and phone number."
+msgstr ""
+"Abgesehen von den folgenden Daten: Passwort, E-Mail-Adresse, IM-Adresse und "
+"Telefonnummer, sind all meine Texte und Dateien unter %s verfügbar."
+
+#. TRANS: Legend.
+#: FBConnectAuth.php:189
+msgid "Create new account"
+msgstr "Neues Benutzerkonto erstellen"
+
+#: FBConnectAuth.php:191
+msgid "Create a new user with this nickname."
+msgstr "Neues Benutzerkonto mit diesem Benutzernamen erstellen."
+
+#. TRANS: Field label.
+#: FBConnectAuth.php:195
+msgid "New nickname"
+msgstr "Neuer Benutzername"
+
+#: FBConnectAuth.php:197
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen"
+
+#. TRANS: Submit button.
+#: FBConnectAuth.php:201
+msgctxt "BUTTON"
+msgid "Create"
+msgstr "Erstellen"
+
+#: FBConnectAuth.php:207
+msgid "Connect existing account"
+msgstr "Bestehendes Benutzerkonto verbinden"
+
+#: FBConnectAuth.php:209
+msgid ""
+"If you already have an account, login with your username and password to "
+"connect it to your Facebook."
+msgstr ""
+"Wenn du bereits ein Benutzerkonto hast, melde dich mit deinem Benutzernamen "
+"und Passwort an, um ihn mit Facebook zu verbinden."
+
+#. TRANS: Field label.
+#: FBConnectAuth.php:213
+msgid "Existing nickname"
+msgstr "Bestehender Benutzername"
+
+#: FBConnectAuth.php:216 facebookaction.php:277
+msgid "Password"
+msgstr "Passwort"
+
+#. TRANS: Submit button.
+#: FBConnectAuth.php:220
+msgctxt "BUTTON"
+msgid "Connect"
+msgstr "Verbinden"
+
+#. TRANS: Client error trying to register with registrations not allowed.
+#. TRANS: Client error trying to register with registrations 'invite only'.
+#: FBConnectAuth.php:237 FBConnectAuth.php:247
+msgid "Registration not allowed."
+msgstr "Registrierung nicht erlaubt."
+
+#. TRANS: Client error trying to register with an invalid invitation code.
+#: FBConnectAuth.php:255
+msgid "Not a valid invitation code."
+msgstr "Kein gültiger Einladungscode."
+
+#: FBConnectAuth.php:265
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr ""
+"Der Benutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. "
+"Leerzeichen sind nicht erlaubt."
+
+#: FBConnectAuth.php:270
+msgid "Nickname not allowed."
+msgstr "Benutzername nicht erlaubt."
+
+#: FBConnectAuth.php:275
+msgid "Nickname already in use. Try another one."
+msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus."
+
+#: FBConnectAuth.php:293 FBConnectAuth.php:327 FBConnectAuth.php:347
+msgid "Error connecting user to Facebook."
+msgstr "Fehler beim Verbinden des Benutzers mit Facebook."
+
+#: FBConnectAuth.php:313
+msgid "Invalid username or password."
+msgstr "Benutzername oder Passwort falsch."
+
+#. TRANS: Page title.
+#: facebooklogin.php:90 facebookaction.php:255
+msgid "Login"
+msgstr "Anmelden"
+
+#. TRANS: Legend.
+#: facebooknoticeform.php:144
+msgid "Send a notice"
+msgstr "Nachricht senden"
+
+#. TRANS: Field label.
+#: facebooknoticeform.php:157
+#, php-format
+msgid "What's up, %s?"
+msgstr "Was geht, %s?"
+
+#: facebooknoticeform.php:169
+msgid "Available characters"
+msgstr "Verfügbare Zeichen"
+
+#. TRANS: Button text.
+#: facebooknoticeform.php:196
+msgctxt "BUTTON"
+msgid "Send"
+msgstr "Senden"
+
+#: facebookhome.php:103
+msgid "Server error: Couldn't get user!"
+msgstr "Server-Fehler: Konnte Benutzer nicht kriegen!"
+
+#: facebookhome.php:122
+msgid "Incorrect username or password."
+msgstr "Falscher Benutzername oder Passwort."
+
+#. TRANS: Page title.
+#. TRANS: %1$s is a user nickname, %2$s is a page number.
+#: facebookhome.php:153
+#, php-format
+msgid "%1$s and friends, page %2$d"
+msgstr "%1$s und Freunde, Seite %2$d"
+
+#. TRANS: Page title.
+#. TRANS: %s is a user nickname
+#: facebookhome.php:157
+#, php-format
+msgid "%s and friends"
+msgstr "%s und Freunde"
+
+#. TRANS: Instructions. %s is the application name.
+#: facebookhome.php:185
+#, php-format
+msgid ""
+"If you would like the %s app to automatically update your Facebook status "
+"with your latest notice, you need to give it permission."
+msgstr ""
+"Wenn du möchtest, dass das %s-Programm automatisch deinen Facebook-Status "
+"mit deiner neuesten Nachricht aktualisiert, musst du ihm die Erlaubnis dazu "
+"geben."
+
+#: facebookhome.php:210
+msgid "Okay, do it!"
+msgstr "Okay, mach es!"
+
+#. TRANS: Button text. Clicking the button will skip updating Facebook permissions.
+#: facebookhome.php:217
+msgctxt "BUTTON"
+msgid "Skip"
+msgstr "Überspringen"
+
+#: facebookhome.php:244 facebookaction.php:336
+msgid "Pagination"
+msgstr ""
+
+#. TRANS: Pagination link.
+#: facebookhome.php:254 facebookaction.php:345
+msgid "After"
+msgstr "Nach"
+
+#. TRANS: Pagination link.
+#: facebookhome.php:263 facebookaction.php:353
+msgid "Before"
+msgstr "Vor"
+
+#. TRANS: %s is the name of the site.
+#: facebookinvite.php:69
+#, php-format
+msgid "Thanks for inviting your friends to use %s."
+msgstr "Danke für das Einladen deiner Freunde auf %s."
+
+#. TRANS: Followed by an unordered list with invited friends.
+#: facebookinvite.php:72
+msgid "Invitations have been sent to the following users:"
+msgstr "Einladungen wurden an die folgenden Benutzer gesendet:"
+
+#: facebookinvite.php:91
+#, php-format
+msgid "You have been invited to %s"
+msgstr "Du wurdest auf %s eingeladen"
+
+#. TRANS: %s is the name of the site.
+#: facebookinvite.php:101
+#, php-format
+msgid "Invite your friends to use %s"
+msgstr "Lade deine Freunde auf %s ein"
+
+#. TRANS: %s is the name of the site.
+#: facebookinvite.php:124
+#, php-format
+msgid "Friends already using %s:"
+msgstr "Auf %s bereits angemeldete Freunde"
+
+#. TRANS: Page title.
+#: facebookinvite.php:143
+msgid "Send invitations"
+msgstr "Einladungen senden"
+
+#. TRANS: Menu item.
+#. TRANS: Menu item tab.
+#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485
+msgctxt "MENU"
+msgid "Facebook"
+msgstr "Facebook"
+
+#. TRANS: Tooltip for menu item "Facebook".
+#: FacebookPlugin.php:190
+msgid "Facebook integration configuration"
+msgstr ""
+
+#: FacebookPlugin.php:431
+msgid "Facebook Connect User"
+msgstr ""
+
+#. TRANS: Tooltip for menu item "Facebook".
+#: FacebookPlugin.php:463
+msgid "Login or register using Facebook"
+msgstr "Mit Facebook anmelden oder registrieren"
+
+#. TRANS: Tooltip for menu item "Facebook".
+#. TRANS: Page title.
+#: FacebookPlugin.php:487 FBConnectSettings.php:55
+msgid "Facebook Connect Settings"
+msgstr ""
+
+#: FacebookPlugin.php:591
+msgid ""
+"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect."
+msgstr ""
+"Das Facebook-Plugin integriert StatusNet mit Facebook und Facebook Connect."
+
+#: FBConnectLogin.php:33
+msgid "Already logged in."
+msgstr "Bereits angemeldet."
+
+#. TRANS: Instructions.
+#: FBConnectLogin.php:42
+msgid "Login with your Facebook Account"
+msgstr "Logge dich mit deinem Facebook-Benutzerkonto ein"
+
+#. TRANS: Page title.
+#: FBConnectLogin.php:57
+msgid "Facebook Login"
+msgstr ""
+
+#: facebookremove.php:53
+msgid "Couldn't remove Facebook user: already deleted."
+msgstr "Konnte Facebook-Benutzer nicht entfernen: bereits gelöscht."
+
+#: facebookremove.php:63
+msgid "Couldn't remove Facebook user."
+msgstr "Konnte Facebook-Benutzer nicht entfernen."
+
+#. TRANS: Link description for 'Home' link that leads to a start page.
+#: facebookaction.php:169
+msgctxt "MENU"
+msgid "Home"
+msgstr "Startseite"
+
+#. TRANS: Tooltip for 'Home' link that leads to a start page.
+#: facebookaction.php:171
+msgid "Home"
+msgstr "Startseite"
+
+#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited.
+#: facebookaction.php:180
+msgctxt "MENU"
+msgid "Invite"
+msgstr "Einladen"
+
+#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited.
+#: facebookaction.php:182
+msgid "Invite"
+msgstr "Einladen"
+
+#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set.
+#: facebookaction.php:192
+msgctxt "MENU"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set.
+#: facebookaction.php:194
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: facebookaction.php:233
+#, php-format
+msgid ""
+"To use the %s Facebook Application you need to login with your username and "
+"password. Don't have a username yet?"
+msgstr ""
+"Um das %s-Facebook-Programm zu benutzen, musst du dich mit deinem "
+"Benutzernamen und Passwort einloggen. Hast du noch keinen Benutzernamen?"
+
+#: facebookaction.php:235
+msgid " a new account."
+msgstr ""
+
+#: facebookaction.php:242
+msgid "Register"
+msgstr "Registrieren"
+
+#: facebookaction.php:274
+msgid "Nickname"
+msgstr "Benutzername"
+
+#. TRANS: Login button.
+#: facebookaction.php:282
+msgctxt "BUTTON"
+msgid "Login"
+msgstr "Anmelden"
+
+#: facebookaction.php:288
+msgid "Lost or forgotten password?"
+msgstr "Passwort vergessen?"
+
+#: facebookaction.php:370
+msgid "No notice content!"
+msgstr "Kein Nachrichten-Inhalt!"
+
+#: facebookaction.php:377
+#, php-format
+msgid "That's too long. Max notice size is %d chars."
+msgstr ""
+"Das war zu lang. Die Länge einer Nachricht ist auf %d Zeichen beschränkt."
+
+#: facebookaction.php:431
+msgid "Notices"
+msgstr "Nachrichten"
+
+#: facebookadminpanel.php:52
+msgid "Facebook"
+msgstr "Facebook"
+
+#: facebookadminpanel.php:62
+msgid "Facebook integration settings"
+msgstr ""
+
+#: facebookadminpanel.php:123
+msgid "Invalid Facebook API key. Max length is 255 characters."
+msgstr ""
+"Ungültiger Facebook-API-Schlüssel. Die maximale Länge liegt bei 255 Zeichen."
+
+#: facebookadminpanel.php:129
+msgid "Invalid Facebook API secret. Max length is 255 characters."
+msgstr ""
+
+#: facebookadminpanel.php:178
+msgid "Facebook application settings"
+msgstr ""
+
+#: facebookadminpanel.php:184
+msgid "API key"
+msgstr "API-Schlüssel"
+
+#: facebookadminpanel.php:185
+msgid "API key provided by Facebook"
+msgstr "Von Facebook bereitgestellter API-Schlüssel"
+
+#: facebookadminpanel.php:193
+msgid "Secret"
+msgstr ""
+
+#: facebookadminpanel.php:194
+msgid "API secret provided by Facebook"
+msgstr ""
+
+#: facebookadminpanel.php:210
+msgid "Save"
+msgstr "Speichern"
+
+#: facebookadminpanel.php:210
+msgid "Save Facebook settings"
+msgstr "Facebook-Einstellungen speichern"
+
+#. TRANS: Instructions.
+#: FBConnectSettings.php:66
+msgid "Manage how your account connects to Facebook"
+msgstr "Verwalte, wie dein Benutzerkonto sich mit Facebook verbindet"
+
+#: FBConnectSettings.php:90
+msgid "There is no Facebook user connected to this account."
+msgstr ""
+"Es gibt keinen Facebook-Benutzer, der mit diesem Benutzerkonto verbunden ist."
+
+#: FBConnectSettings.php:98
+msgid "Connected Facebook user"
+msgstr "Verbundener Facebook-Benutzer"
+
+#. TRANS: Legend.
+#: FBConnectSettings.php:118
+msgid "Disconnect my account from Facebook"
+msgstr ""
+
+#. TRANS: Followed by a link containing text "set a password".
+#: FBConnectSettings.php:125
+msgid ""
+"Disconnecting your Faceboook would make it impossible to log in! Please "
+msgstr ""
+
+#. TRANS: Preceded by "Please " and followed by " first."
+#: FBConnectSettings.php:130
+msgid "set a password"
+msgstr ""
+
+#. TRANS: Preceded by "Please set a password".
+#: FBConnectSettings.php:132
+msgid " first."
+msgstr ""
+
+#. TRANS: Submit button.
+#: FBConnectSettings.php:145
+msgctxt "BUTTON"
+msgid "Disconnect"
+msgstr "Abmelden"
+
+#: FBConnectSettings.php:180
+msgid "Couldn't delete link to Facebook."
+msgstr ""
+
+#: FBConnectSettings.php:196
+msgid "You have disconnected from Facebook."
+msgstr ""
+
+#: FBConnectSettings.php:199
+msgid "Not sure what you're trying to do."
+msgstr ""
+
+#: facebooksettings.php:61
+msgid "There was a problem saving your sync preferences!"
+msgstr ""
+"Es gab ein Problem beim Speichern deiner Synchronisierungs-Einstellungen!"
+
+#. TRANS: Confirmation that synchronisation settings have been saved into the system.
+#: facebooksettings.php:64
+msgid "Sync preferences saved."
+msgstr "Synchronisierungs-Einstellungen gespeichert."
+
+#: facebooksettings.php:87
+msgid "Automatically update my Facebook status with my notices."
+msgstr ""
+"Meinen Facebook-Status automatisch mit meinen Nachrichten aktualisieren."
+
+#: facebooksettings.php:94
+msgid "Send \"@\" replies to Facebook."
+msgstr "@-Antworten an Facebook versenden."
+
+#. TRANS: Submit button to save synchronisation settings.
+#: facebooksettings.php:102
+msgctxt "BUTTON"
+msgid "Save"
+msgstr "Speichern"
+
+#. TRANS: %s is the application name.
+#: facebooksettings.php:111
+#, php-format
+msgid ""
+"If you would like %s to automatically update your Facebook status with your "
+"latest notice, you need to give it permission."
+msgstr ""
+"Wenn du möchtest, dass %s automatisch deinen Facebook-Status mit deiner "
+"neuesten Nachricht aktualisiert, musst du ihm die Erlaubnis dazu geben."
+
+#: facebooksettings.php:124
+#, php-format
+msgid "Allow %s to update my Facebook status"
+msgstr "%s erlauben, meinen Facebook-Status zu aktualisieren"
+
+#. TRANS: Page title for synchronisation settings.
+#: facebooksettings.php:134
+msgid "Sync preferences"
+msgstr "Synchronisierungs-Einstellungen"
diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po
index cc06d49edc..5c23e606ff 100644
--- a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po
+++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po
@@ -10,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Facebook\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:54+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-facebook\n"
@@ -354,9 +354,8 @@ msgid "Facebook Login"
 msgstr "Connexion Facebook"
 
 #: facebookremove.php:53
-#, fuzzy
 msgid "Couldn't remove Facebook user: already deleted."
-msgstr "Impossible de supprimer l’utilisateur Facebook."
+msgstr ""
 
 #: facebookremove.php:63
 msgid "Couldn't remove Facebook user."
diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po
index de97f2aede..dad6300006 100644
--- a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po
+++ b/plugins/Facebook/locale/ia/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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:54+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-facebook\n"
@@ -346,9 +346,8 @@ msgid "Facebook Login"
 msgstr "Authentication con Facebook"
 
 #: facebookremove.php:53
-#, fuzzy
 msgid "Couldn't remove Facebook user: already deleted."
-msgstr "Non poteva remover le usator de Facebook."
+msgstr ""
 
 #: facebookremove.php:63
 msgid "Couldn't remove Facebook user."
diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po
index 3d8093bb4e..5fa2d31a3b 100644
--- a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po
+++ b/plugins/Facebook/locale/mk/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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:55+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-facebook\n"
@@ -347,9 +347,8 @@ msgid "Facebook Login"
 msgstr "Најава со Facebook"
 
 #: facebookremove.php:53
-#, fuzzy
 msgid "Couldn't remove Facebook user: already deleted."
-msgstr "Не можев да го отстранам корисниот на Facebook."
+msgstr ""
 
 #: facebookremove.php:63
 msgid "Couldn't remove Facebook user."
diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po
index 367281deec..ef24b9259b 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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:55+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-04 23:10:56+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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"
@@ -354,9 +354,8 @@ msgid "Facebook Login"
 msgstr "Aanmelden via Facebook"
 
 #: facebookremove.php:53
-#, fuzzy
 msgid "Couldn't remove Facebook user: already deleted."
-msgstr "Het was niet mogelijk de Facebookgebruiker te verwijderen."
+msgstr ""
 
 #: facebookremove.php:63
 msgid "Couldn't remove Facebook user."
diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po
index 0b2b15419c..bfdfe51154 100644
--- a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po
+++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po
@@ -1,6 +1,7 @@
 # Translation of StatusNet - Facebook to Brazilian Portuguese (Português do Brasil)
 # Expored from translatewiki.net
 #
+# Author: Giro720
 # Author: Luckas Blade
 # --
 # This file is distributed under the same license as the StatusNet package.
@@ -9,14 +10,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Facebook\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:37+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:55+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-04 23:10:56+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-facebook\n"
@@ -203,9 +204,9 @@ msgstr "Nome de usuário e/ou senha incorreto(s)."
 #. TRANS: Page title.
 #. TRANS: %1$s is a user nickname, %2$s is a page number.
 #: facebookhome.php:153
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s and friends, page %2$d"
-msgstr "%s e amigos"
+msgstr "%1$s e amigos, pág. %2$d"
 
 #. TRANS: Page title.
 #. TRANS: %s is a user nickname
@@ -221,6 +222,8 @@ msgid ""
 "If you would like the %s app to automatically update your Facebook status "
 "with your latest notice, you need to give it permission."
 msgstr ""
+"Se você deseja que o %s aplicativo atualize automaticamente seu estado no "
+"Facebook com seus último anúncio, você deve autorizá-lo para isso."
 
 #: facebookhome.php:210
 msgid "Okay, do it!"
diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po
index 6dc1ec4aab..f1a09ddfb0 100644
--- a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po
+++ b/plugins/Facebook/locale/tl/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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:37+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:55+0000\n"
 "Language-Team: Tagalog \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: tl\n"
 "X-Message-Group: #out-statusnet-plugin-facebook\n"
@@ -356,9 +356,8 @@ msgid "Facebook Login"
 msgstr "Paglagda sa Facebook"
 
 #: facebookremove.php:53
-#, fuzzy
 msgid "Couldn't remove Facebook user: already deleted."
-msgstr "Hindi matanggal ang tagagamit ng Facebook."
+msgstr ""
 
 #: facebookremove.php:63
 msgid "Couldn't remove Facebook user."
diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po
index 8cbaead368..a93ebc4fd4 100644
--- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po
+++ b/plugins/Facebook/locale/uk/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-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:37+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:55+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:56+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:34:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-facebook\n"
@@ -350,9 +350,8 @@ msgid "Facebook Login"
 msgstr "Вхід Facebook"
 
 #: facebookremove.php:53
-#, fuzzy
 msgid "Couldn't remove Facebook user: already deleted."
-msgstr "Не вдалося видалити користувача Facebook."
+msgstr ""
 
 #: facebookremove.php:63
 msgid "Couldn't remove Facebook user."
diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po
new file mode 100644
index 0000000000..b435b0cb94
--- /dev/null
+++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po
@@ -0,0 +1,38 @@
+# Translation of StatusNet - ForceGroup to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - ForceGroup\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:57+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:47+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-forcegroup\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Server exception.
+#. TRANS: %1$s is a user nickname, %2$s is a group nickname.
+#: ForceGroupPlugin.php:78
+#, php-format
+msgid "Could not join user %1$s to group %2$s."
+msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen."
+
+#. TRANS: Plugin description.
+#: ForceGroupPlugin.php:104
+msgid ""
+"Allows forced group memberships and forces all notices to appear in groups "
+"that users were forced in."
+msgstr ""
+"Ermöglicht erzwungene Gruppenmitgliedschaften und sorgt dafür, dass alle "
+"Nachrichten in Gruppen erscheinen, in die Benutzer reingezwungen wurden."
diff --git a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po
new file mode 100644
index 0000000000..0184b844d4
--- /dev/null
+++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - GeoURL to Catalan (Català)
+# Expored from translatewiki.net
+#
+# Author: Toniher
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - GeoURL\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:59+0000\n"
+"Language-Team: Catalan \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:49+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-geourl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: GeoURLPlugin.php:124
+msgid ""
+"Ping GeoURL when new geolocation-enhanced "
+"notices are posted."
+msgstr ""
+"Feu un ping a GeoURL en anviar avisos "
+"geolocalitzats."
diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po
new file mode 100644
index 0000000000..d07783c120
--- /dev/null
+++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - GeoURL to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - GeoURL\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:04+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:49+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-geourl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: GeoURLPlugin.php:124
+msgid ""
+"Ping GeoURL when new geolocation-enhanced "
+"notices are posted."
+msgstr ""
+"Ping GeoURL når nye notiser med "
+"geolokasjon blir postet."
diff --git a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po
new file mode 100644
index 0000000000..247722f625
--- /dev/null
+++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po
@@ -0,0 +1,31 @@
+# Translation of StatusNet - Geonames to Catalan (Català)
+# Expored from translatewiki.net
+#
+# Author: Toniher
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Geonames\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42:58+0000\n"
+"Language-Team: Catalan \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:48+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-geonames\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: GeonamesPlugin.php:491
+msgid ""
+"Uses Geonames service to get human-"
+"readable names for locations based on user-provided lat/long pairs."
+msgstr ""
+"Fa servir el servei Geonames per "
+"obtenir noms comprensibles per a aquelles ubicacions basades en els parells "
+"lat/long de l'usuari."
diff --git a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po
new file mode 100644
index 0000000000..fc7f46db50
--- /dev/null
+++ b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po
@@ -0,0 +1,32 @@
+# Translation of StatusNet - Geonames to Brazilian Portuguese (Português do Brasil)
+# Expored from translatewiki.net
+#
+# Author: Giro720
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Geonames\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:42: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-09 14:35:48+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-geonames\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: GeonamesPlugin.php:491
+msgid ""
+"Uses Geonames service to get human-"
+"readable names for locations based on user-provided lat/long pairs."
+msgstr ""
+"Utiliza o serviço Geonames para obter "
+"as denominações geográficas legíveis por humanos baseado nos dados de "
+"latitude/longitude fornecidas pelo usuário."
diff --git a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po
new file mode 100644
index 0000000000..e26298b0f8
--- /dev/null
+++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - GoogleAnalytics to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - GoogleAnalytics\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:05+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:50+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-googleanalytics\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: GoogleAnalyticsPlugin.php:80
+msgid ""
+"Use Google Analytics to "
+"track web access."
+msgstr ""
+"Ober gant Google Analytics "
+"evit dispenn roudoù ar monedoù d'al lec'hien web."
diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po
new file mode 100644
index 0000000000..d9810207d6
--- /dev/null
+++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po
@@ -0,0 +1,31 @@
+# Translation of StatusNet - GoogleAnalytics to Brazilian Portuguese (Português do Brasil)
+# Expored from translatewiki.net
+#
+# Author: Giro720
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - GoogleAnalytics\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:05+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-09 14:35:50+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-googleanalytics\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: GoogleAnalyticsPlugin.php:80
+msgid ""
+"Use Google Analytics to "
+"track web access."
+msgstr ""
+"Usar Google Analytics para "
+"fazer rastreamento de acessos ao site."
diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po
new file mode 100644
index 0000000000..2b3847f811
--- /dev/null
+++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po
@@ -0,0 +1,56 @@
+# Translation of StatusNet - GroupFavorited to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: Michael
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - GroupFavorited\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:08+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-groupfavorited\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: %s is a group name.
+#: groupfavoritedaction.php:53
+#, php-format
+msgid "Popular posts in %s group"
+msgstr "Beliebte Beiträge in der %s-Gruppe"
+
+#. TRANS: %1$s is a group name, %2$s is a group number.
+#: groupfavoritedaction.php:56
+#, php-format
+msgid "Popular posts in %1$s group, page %2$d"
+msgstr "Beliebte Beiträge in der %1$s-Gruppe, Seite %2$d"
+
+#. TRANS: Menu item in the group navigation page.
+#: GroupFavoritedPlugin.php:72
+msgctxt "MENU"
+msgid "Popular"
+msgstr "Beliebt"
+
+#. TRANS: Tooltip for menu item in the group navigation page.
+#. TRANS: %s is the nickname of the group.
+#: GroupFavoritedPlugin.php:75
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Popular notices in %s group"
+msgstr "Beliebte Nachrichten in der %s-Gruppe"
+
+#. TRANS: Plugin description.
+#: GroupFavoritedPlugin.php:99
+msgid "This plugin adds a menu item for popular notices in groups."
+msgstr ""
+"Dieses Plugin fügt einen Menüeintrag mit den beliebtesten Nachrichten einer "
+"Gruppen ein."
diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po
new file mode 100644
index 0000000000..cacd7db975
--- /dev/null
+++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po
@@ -0,0 +1,54 @@
+# Translation of StatusNet - GroupFavorited to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: Eleferen
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - GroupFavorited\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:08+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-groupfavorited\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"
+
+#. TRANS: %s is a group name.
+#: groupfavoritedaction.php:53
+#, php-format
+msgid "Popular posts in %s group"
+msgstr "Популярные сообщения в группе %s"
+
+#. TRANS: %1$s is a group name, %2$s is a group number.
+#: groupfavoritedaction.php:56
+#, php-format
+msgid "Popular posts in %1$s group, page %2$d"
+msgstr ""
+
+#. TRANS: Menu item in the group navigation page.
+#: GroupFavoritedPlugin.php:72
+msgctxt "MENU"
+msgid "Popular"
+msgstr "Популярное"
+
+#. TRANS: Tooltip for menu item in the group navigation page.
+#. TRANS: %s is the nickname of the group.
+#: GroupFavoritedPlugin.php:75
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Popular notices in %s group"
+msgstr ""
+
+#. TRANS: Plugin description.
+#: GroupFavoritedPlugin.php:99
+msgid "This plugin adds a menu item for popular notices in groups."
+msgstr ""
diff --git a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po
new file mode 100644
index 0000000000..122397a5d4
--- /dev/null
+++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po
@@ -0,0 +1,35 @@
+# Translation of StatusNet - InfiniteScroll to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - InfiniteScroll\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:09+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:54+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-infinitescroll\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: InfiniteScrollPlugin.php:54
+msgid ""
+"Infinite Scroll adds the following functionality to your StatusNet "
+"installation: When a user scrolls towards the bottom of the page, the next "
+"page of notices is automatically retrieved and appended. This means they "
+"never need to click \"Next Page\", which dramatically increases stickiness."
+msgstr ""
+"Infinite Scroll fügt die folgende Funktionalität zu deiner StatusNet-"
+"Installation hinzu: Wenn ein Benutzer Richtung Seitenende scrollt, wird die "
+"nächste Nachrichtenseite automatisch geladen und angefügt. Das bedeutet, "
+"dass sie nie „Nächste Seite“ klicken müssen, was die Attraktivität "
+"dramatisch erhöht."
diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po
new file mode 100644
index 0000000000..02d120a256
--- /dev/null
+++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po
@@ -0,0 +1,34 @@
+# Translation of StatusNet - InfiniteScroll to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - InfiniteScroll\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:09+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:35:54+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-infinitescroll\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: InfiniteScrollPlugin.php:54
+msgid ""
+"Infinite Scroll adds the following functionality to your StatusNet "
+"installation: When a user scrolls towards the bottom of the page, the next "
+"page of notices is automatically retrieved and appended. This means they "
+"never need to click \"Next Page\", which dramatically increases stickiness."
+msgstr ""
+"Infinite Scroll legger til følgende funksjonalitet til din StatusNet-"
+"installasjon: Når en bruker ruller mot bunnen av siden hentes den neste "
+"siden med notiser og legges til automatisk. Dette betyr at de aldri trenger "
+"å klikke «Neste side». Dette øker «stickiness» dramatisk."
diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po
new file mode 100644
index 0000000000..daecb66542
--- /dev/null
+++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po
@@ -0,0 +1,34 @@
+# Translation of StatusNet - Linkback to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Linkback\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:13+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:26+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-linkback\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: LinkbackPlugin.php:241
+msgid ""
+"Notify blog authors when their posts have been linked in microblog notices "
+"using Pingback "
+"or Trackback protocols."
+msgstr ""
+"Benachrichtigt Blog-Autoren wenn ihre Beiträge in Mikroblog-Nachrichten "
+"verlinkt wurden mithilfe von Pingback- oder Trackback-Protokollen."
diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po
index f7a7163855..4b8b5c0821 100644
--- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po
+++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po
@@ -2,6 +2,7 @@
 # Expored from translatewiki.net
 #
 # Author: Apmon
+# Author: The Evil IP address
 # --
 # This file is distributed under the same license as the StatusNet package.
 #
@@ -9,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Mapstraction\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-04 22:30+0000\n"
-"PO-Revision-Date: 2010-10-04 22:33:19+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:14+0000\n"
 "Language-Team: German \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:26+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-mapstraction\n"
@@ -28,13 +29,15 @@ msgstr "Karte"
 #. TRANS: Clickable item to allow opening the map in full size.
 #: MapstractionPlugin.php:190
 msgid "Full size"
-msgstr ""
+msgstr "in voller Größe"
 
 #: MapstractionPlugin.php:202
 msgid ""
 "Show maps of users' and friends' notices with Mapstraction."
 msgstr ""
+"Zeigt Karten mit Nachrichten von Freunden und Nutzern mit Mapstraction."
 
 #: map.php:72
 msgid "No such user."
@@ -49,16 +52,16 @@ msgstr "Benutzer hat kein Profil."
 #: allmap.php:74
 #, php-format
 msgid "%s friends map"
-msgstr ""
+msgstr "Karte der Freunde von %s"
 
 #. TRANS: Page title.
 #. TRANS: %1$s is a user nickname, %2$d is a page number.
 #: allmap.php:80
 #, php-format
 msgid "%1$s friends map, page %2$d"
-msgstr ""
+msgstr "Karte der Freunde von %1$s, Seite %2$d"
 
 #: usermap.php:73
 #, php-format
 msgid "%s map, page %d"
-msgstr ""
+msgstr "%s-Karte, Seite %d"
diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po
new file mode 100644
index 0000000000..b92202a575
--- /dev/null
+++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po
@@ -0,0 +1,66 @@
+# Translation of StatusNet - Mapstraction to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Mapstraction\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:15+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:26+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-mapstraction\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: MapstractionPlugin.php:178
+msgid "Map"
+msgstr "Kart"
+
+#. TRANS: Clickable item to allow opening the map in full size.
+#: MapstractionPlugin.php:190
+msgid "Full size"
+msgstr "Full størrelse"
+
+#: MapstractionPlugin.php:202
+msgid ""
+"Show maps of users' and friends' notices with Mapstraction."
+msgstr ""
+"Vis kart over brukeres og venners notiser med Mapstraction."
+
+#: map.php:72
+msgid "No such user."
+msgstr "Ingen slik bruker."
+
+#: map.php:79
+msgid "User has no profile."
+msgstr "Bruker har ingen profil."
+
+#. TRANS: Page title.
+#. TRANS: %s is a user nickname.
+#: allmap.php:74
+#, php-format
+msgid "%s friends map"
+msgstr "%s vennekart"
+
+#. TRANS: Page title.
+#. TRANS: %1$s is a user nickname, %2$d is a page number.
+#: allmap.php:80
+#, php-format
+msgid "%1$s friends map, page %2$d"
+msgstr "%1$s vennekart, side %2$d"
+
+#: usermap.php:73
+#, php-format
+msgid "%s map, page %d"
+msgstr "%s kart, side %d"
diff --git a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po
new file mode 100644
index 0000000000..4bd814f367
--- /dev/null
+++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po
@@ -0,0 +1,42 @@
+# Translation of StatusNet - Minify to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Minify\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:17+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:31+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-minify\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: minify.php:49
+msgid "The parameter \"f\" is not a valid path."
+msgstr "Der Parameter „f“ ist keine gültige Pfadangabe."
+
+#: minify.php:53
+msgid "The parameter \"f\" is required but missing."
+msgstr "Der Parameter „f“ ist erfordert, fehlt jedoch."
+
+#: minify.php:111
+msgid "File type not supported."
+msgstr "Dateityp nicht unterstützt."
+
+#: MinifyPlugin.php:179
+msgid ""
+"The Minify plugin minifies StatusNet's CSS and JavaScript, removing "
+"whitespace and comments."
+msgstr ""
+"Das Minify-Plugin minimiert das CSS und JavaScript von StatusNet durch "
+"Entfernen von Leerzeichen und Kommentaren."
diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po
new file mode 100644
index 0000000000..97d76dec75
--- /dev/null
+++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po
@@ -0,0 +1,42 @@
+# Translation of StatusNet - Minify to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Minify\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:18+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:31+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-minify\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: minify.php:49
+msgid "The parameter \"f\" is not a valid path."
+msgstr "Parameteren «f» er ikke en gyldig sti."
+
+#: minify.php:53
+msgid "The parameter \"f\" is required but missing."
+msgstr "Parameteren «f» er nødvendig, men mangler."
+
+#: minify.php:111
+msgid "File type not supported."
+msgstr "Filtype støttes ikke."
+
+#: MinifyPlugin.php:179
+msgid ""
+"The Minify plugin minifies StatusNet's CSS and JavaScript, removing "
+"whitespace and comments."
+msgstr ""
+"Utvidelsen Minify minimerer StatusNets CSS og JavaScript og fjerner "
+"mellomrom og kommentarer."
diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po
new file mode 100644
index 0000000000..f79b9c9f2d
--- /dev/null
+++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po
@@ -0,0 +1,44 @@
+# Translation of StatusNet - Minify to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: Eleferen
+# Author: MaxSem
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Minify\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:18+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:31+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-minify\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"
+
+#: minify.php:49
+msgid "The parameter \"f\" is not a valid path."
+msgstr "Параметр «f» содержит неправильный путь."
+
+#: minify.php:53
+msgid "The parameter \"f\" is required but missing."
+msgstr "Требуется параметр «f», но он отсутствует."
+
+#: minify.php:111
+msgid "File type not supported."
+msgstr "Тип файла не поддерживается."
+
+#: MinifyPlugin.php:179
+msgid ""
+"The Minify plugin minifies StatusNet's CSS and JavaScript, removing "
+"whitespace and comments."
+msgstr ""
+"Плагин «Minify» сжимает CSS и JavaScript StatusNet'а, удаляя лишние пробелы и "
+"комментарии."
diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot
new file mode 100644
index 0000000000..90481fe737
--- /dev/null
+++ b/plugins/ModHelper/locale/ModHelper.pot
@@ -0,0 +1,22 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+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"
+
+#: ModHelperPlugin.php:37
+msgid ""
+"Lets users who have been manually marked as \"modhelper\"s silence accounts."
+msgstr ""
diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po
index 24d6a637ff..4969bf6e7b 100644
--- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po
+++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po
@@ -1,6 +1,7 @@
 # Translation of StatusNet - NoticeTitle to Breton (Brezhoneg)
 # Expored from translatewiki.net
 #
+# Author: Fulup
 # Author: Y-M D
 # --
 # This file is distributed under the same license as the StatusNet package.
@@ -9,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - NoticeTitle\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-04 22:30+0000\n"
-"PO-Revision-Date: 2010-10-04 22:33:24+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:20+0000\n"
 "Language-Team: Breton \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:33+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: br\n"
 "X-Message-Group: #out-statusnet-plugin-noticetitle\n"
@@ -23,7 +24,7 @@ msgstr ""
 
 #: NoticeTitlePlugin.php:132
 msgid "Adds optional titles to notices."
-msgstr ""
+msgstr "Ouzhpennañ a ra titloù diret d'ar c'hemennoù."
 
 #. TRANS: Page title. %1$s is the title, %2$s is the site name.
 #: NoticeTitlePlugin.php:309
diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot
index 24b4347578..5ceeb6ad98 100644
--- a/plugins/OStatus/locale/OStatus.pot
+++ b/plugins/OStatus/locale/OStatus.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -195,55 +195,55 @@ msgstr ""
 msgid "Tried to update avatar for unsaved remote profile %s."
 msgstr ""
 
-#: classes/Ostatus_profile.php:1057
+#: classes/Ostatus_profile.php:1058
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr ""
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1279
+#: classes/Ostatus_profile.php:1284
 msgid "Local user can't be referenced as remote."
 msgstr ""
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1284
+#: classes/Ostatus_profile.php:1289
 msgid "Local group can't be referenced as remote."
 msgstr ""
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347
+#: classes/Ostatus_profile.php:1341 classes/Ostatus_profile.php:1352
 msgid "Can't save local profile."
 msgstr ""
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1355
+#: classes/Ostatus_profile.php:1360
 msgid "Can't save OStatus profile."
 msgstr ""
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642
+#: classes/Ostatus_profile.php:1619 classes/Ostatus_profile.php:1647
 msgid "Not a valid webfinger address."
 msgstr ""
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1724
+#: classes/Ostatus_profile.php:1729
 #, php-format
 msgid "Couldn't save profile for \"%s\"."
 msgstr ""
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1743
+#: classes/Ostatus_profile.php:1748
 #, php-format
 msgid "Couldn't save ostatus_profile for \"%s\"."
 msgstr ""
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1751
+#: classes/Ostatus_profile.php:1756
 #, php-format
 msgid "Couldn't find a valid profile for \"%s\"."
 msgstr ""
 
-#: classes/Ostatus_profile.php:1793
+#: classes/Ostatus_profile.php:1798
 msgid "Could not store HTML content of long post as file."
 msgstr ""
 
@@ -415,7 +415,7 @@ msgstr ""
 msgid "Invalid URL passed for %1$s: \"%2$s\""
 msgstr ""
 
-#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43
+#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
 msgid "No such user."
 msgstr ""
 
diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po
index 906bc95ec8..51f22c0170 100644
--- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po
+++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po
@@ -10,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OStatus\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:12+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:41+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-ostatus\n"
@@ -219,55 +219,55 @@ msgstr ""
 "Tente de mettre à jour l’avatar associé au profil distant non sauvegardé « %s "
 "»."
 
-#: classes/Ostatus_profile.php:1057
+#: classes/Ostatus_profile.php:1058
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Impossible de récupérer l’avatar depuis « %s »."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1279
+#: classes/Ostatus_profile.php:1284
 msgid "Local user can't be referenced as remote."
 msgstr "L’utilisateur local ne peut être référencé comme distant."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1284
+#: classes/Ostatus_profile.php:1289
 msgid "Local group can't be referenced as remote."
 msgstr "Le groupe local ne peut être référencé comme distant."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347
+#: classes/Ostatus_profile.php:1341 classes/Ostatus_profile.php:1352
 msgid "Can't save local profile."
 msgstr "Impossible de sauvegarder le profil local."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1355
+#: classes/Ostatus_profile.php:1360
 msgid "Can't save OStatus profile."
 msgstr "Impossible de sauvegarder le profil OStatus."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642
+#: classes/Ostatus_profile.php:1619 classes/Ostatus_profile.php:1647
 msgid "Not a valid webfinger address."
 msgstr "Ce n’est pas une adresse « webfinger » valide."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1724
+#: classes/Ostatus_profile.php:1729
 #, php-format
 msgid "Couldn't save profile for \"%s\"."
 msgstr "Impossible de sauvegarder le profil pour « %s »."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1743
+#: classes/Ostatus_profile.php:1748
 #, php-format
 msgid "Couldn't save ostatus_profile for \"%s\"."
 msgstr "Impossible d’enregistrer le profil OStatus pour « %s »."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1751
+#: classes/Ostatus_profile.php:1756
 #, php-format
 msgid "Couldn't find a valid profile for \"%s\"."
 msgstr "Impossible de trouver un profil valide pour « %s »."
 
-#: classes/Ostatus_profile.php:1793
+#: classes/Ostatus_profile.php:1798
 msgid "Could not store HTML content of long post as file."
 msgstr ""
 "Impossible de stocker le contenu HTML d’une longue publication en un fichier."
@@ -451,7 +451,7 @@ msgstr "Le sujet de concentrateur « %s » est invalide. Le groupe n’existe pa
 msgid "Invalid URL passed for %1$s: \"%2$s\""
 msgstr "URL invalide passée à la méthode « %1$s » : « %2$s »"
 
-#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43
+#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
 msgid "No such user."
 msgstr "Utilisateur inexistant."
 
diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po
index bd3695257a..c97487b6f3 100644
--- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po
+++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OStatus\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:12+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:41+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-ostatus\n"
@@ -207,55 +207,55 @@ msgstr "URL de avatar %s invalide."
 msgid "Tried to update avatar for unsaved remote profile %s."
 msgstr "Tentava actualisar avatar pro profilo remote non salveguardate %s."
 
-#: classes/Ostatus_profile.php:1057
+#: classes/Ostatus_profile.php:1058
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Incapace de obtener avatar ab %s."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1279
+#: classes/Ostatus_profile.php:1284
 msgid "Local user can't be referenced as remote."
 msgstr "Usator local non pote esser referentiate como remote."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1284
+#: classes/Ostatus_profile.php:1289
 msgid "Local group can't be referenced as remote."
 msgstr "Gruppo local non pote esser referentiate como remote."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347
+#: classes/Ostatus_profile.php:1341 classes/Ostatus_profile.php:1352
 msgid "Can't save local profile."
 msgstr "Non pote salveguardar profilo local."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1355
+#: classes/Ostatus_profile.php:1360
 msgid "Can't save OStatus profile."
 msgstr "Non pote salveguardar profilo OStatus."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642
+#: classes/Ostatus_profile.php:1619 classes/Ostatus_profile.php:1647
 msgid "Not a valid webfinger address."
 msgstr "Adresse webfinger invalide."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1724
+#: classes/Ostatus_profile.php:1729
 #, php-format
 msgid "Couldn't save profile for \"%s\"."
 msgstr "Non poteva salveguardar profilo pro \"%s\"."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1743
+#: classes/Ostatus_profile.php:1748
 #, php-format
 msgid "Couldn't save ostatus_profile for \"%s\"."
 msgstr "Non poteva salveguardar osatus_profile pro %s."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1751
+#: classes/Ostatus_profile.php:1756
 #, php-format
 msgid "Couldn't find a valid profile for \"%s\"."
 msgstr "Non poteva trovar un profilo valide pro \"%s\"."
 
-#: classes/Ostatus_profile.php:1793
+#: classes/Ostatus_profile.php:1798
 msgid "Could not store HTML content of long post as file."
 msgstr "Non poteva immagazinar contento HTML de longe message como file."
 
@@ -430,7 +430,7 @@ msgstr "Invalide hub.topic \"%s\". Gruppo non existe."
 msgid "Invalid URL passed for %1$s: \"%2$s\""
 msgstr "Invalide URL passate pro %1$s: \"%2$s\""
 
-#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43
+#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
 msgid "No such user."
 msgstr "Iste usator non existe."
 
diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po
index beb18ffd5d..5a96fb1d3f 100644
--- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po
+++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OStatus\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:12+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:41+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-ostatus\n"
@@ -30,7 +30,7 @@ msgstr "Претплати се"
 #. TRANS: Link description for link to join a remote group.
 #: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109
 msgid "Join"
-msgstr "Придружи се"
+msgstr "Зачлени се"
 
 #. TRANSLATE: %s is a domain.
 #: OStatusPlugin.php:461
@@ -61,9 +61,9 @@ msgstr "Не можев да го поставам членството во д
 #. TRANS: Success message for subscribe to group attempt through OStatus.
 #. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
 #: OStatusPlugin.php:660
-#, fuzzy, php-format
+#, php-format
 msgid "%1$s has joined group %2$s."
-msgstr "%1$s престана да го/ја следи %2$s."
+msgstr "%1$s се зачлени во групата %2$s."
 
 #. TRANS: Exception.
 #: OStatusPlugin.php:669
@@ -79,7 +79,7 @@ msgstr "Напушти"
 #: OStatusPlugin.php:712
 #, php-format
 msgid "%1$s has left group %2$s."
-msgstr ""
+msgstr "%1$s ја напушти групата %2$s."
 
 #: OStatusPlugin.php:787
 msgid "Disfavor"
@@ -210,55 +210,55 @@ msgid "Tried to update avatar for unsaved remote profile %s."
 msgstr ""
 "Се обидов да го подновам аватарот за незачуваниот далечински профил %s."
 
-#: classes/Ostatus_profile.php:1057
+#: classes/Ostatus_profile.php:1058
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Не можам да го добијам аватарот од %s."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1279
+#: classes/Ostatus_profile.php:1284
 msgid "Local user can't be referenced as remote."
 msgstr "Локалниот корисник не може да се наведе како далечински."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1284
+#: classes/Ostatus_profile.php:1289
 msgid "Local group can't be referenced as remote."
 msgstr "Локалната група не може да се наведе како далечинска."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347
+#: classes/Ostatus_profile.php:1341 classes/Ostatus_profile.php:1352
 msgid "Can't save local profile."
 msgstr "Не можам да го зачувам локалниот профил."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1355
+#: classes/Ostatus_profile.php:1360
 msgid "Can't save OStatus profile."
 msgstr "Не можам да го зачувам профилот од OStatus."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642
+#: classes/Ostatus_profile.php:1619 classes/Ostatus_profile.php:1647
 msgid "Not a valid webfinger address."
 msgstr "Ова не е важечка Webfinger-адреса"
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1724
+#: classes/Ostatus_profile.php:1729
 #, php-format
 msgid "Couldn't save profile for \"%s\"."
 msgstr "Не можам да го зачувам профилот за „%s“."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1743
+#: classes/Ostatus_profile.php:1748
 #, php-format
 msgid "Couldn't save ostatus_profile for \"%s\"."
 msgstr "Не можам да го зачувам ostatus_profile за „%s“."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1751
+#: classes/Ostatus_profile.php:1756
 #, php-format
 msgid "Couldn't find a valid profile for \"%s\"."
 msgstr "Не можев да пронајдам важечки профил за „%s“."
 
-#: classes/Ostatus_profile.php:1793
+#: classes/Ostatus_profile.php:1798
 msgid "Could not store HTML content of long post as file."
 msgstr ""
 "Не можам да ја складирам HTML-содржината на долгата објава како податотека."
@@ -433,7 +433,7 @@ msgstr "Неважечки hub.topic „%s“. Групата не постои.
 msgid "Invalid URL passed for %1$s: \"%2$s\""
 msgstr "Добив неважечка URL-адреса за %1$s: „%2$s“"
 
-#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43
+#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
 msgid "No such user."
 msgstr "Нема таков корисник."
 
@@ -484,7 +484,7 @@ msgstr "Забелешката со ID %1$s не е објавена од %2$s."
 #. TRANS: Field label.
 #: actions/ostatusgroup.php:78
 msgid "Join group"
-msgstr "Придружи се на групата"
+msgstr "Зачлени се во групата"
 
 #. TRANS: Tooltip for field label "Join group".
 #: actions/ostatusgroup.php:81
diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po
index 172edcd1ea..d70d4b6920 100644
--- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po
+++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po
@@ -10,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OStatus\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:12+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:41+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-04 23:10:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: nl\n"
 "X-Message-Group: #out-statusnet-plugin-ostatus\n"
@@ -218,59 +218,59 @@ msgid "Tried to update avatar for unsaved remote profile %s."
 msgstr ""
 "Geprobeerd om een avatar bij te werken voor het niet opgeslagen profiel %s."
 
-#: classes/Ostatus_profile.php:1057
+#: classes/Ostatus_profile.php:1058
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Het was niet mogelijk de avatar op te halen van %s."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1279
+#: classes/Ostatus_profile.php:1284
 msgid "Local user can't be referenced as remote."
 msgstr ""
 "Naar een lokale gebruiker kan niet verwezen worden alsof die zich bij een "
 "andere dienst bevindt."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1284
+#: classes/Ostatus_profile.php:1289
 msgid "Local group can't be referenced as remote."
 msgstr ""
 "Naar een lokale groep kan niet verwezen worden alsof die zich bij een andere "
 "dienst bevindt."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347
+#: classes/Ostatus_profile.php:1341 classes/Ostatus_profile.php:1352
 msgid "Can't save local profile."
 msgstr "Het was niet mogelijk het lokale profiel op te slaan."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1355
+#: classes/Ostatus_profile.php:1360
 msgid "Can't save OStatus profile."
 msgstr "Het was niet mogelijk het Ostatusprofiel op te slaan."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642
+#: classes/Ostatus_profile.php:1619 classes/Ostatus_profile.php:1647
 msgid "Not a valid webfinger address."
 msgstr "Geen geldig webfingeradres."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1724
+#: classes/Ostatus_profile.php:1729
 #, php-format
 msgid "Couldn't save profile for \"%s\"."
 msgstr "Het was niet mogelijk het profiel voor \"%s\" op te slaan."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1743
+#: classes/Ostatus_profile.php:1748
 #, php-format
 msgid "Couldn't save ostatus_profile for \"%s\"."
 msgstr "Het was niet mogelijk het ostatus_profile voor \"%s\" op te slaan."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1751
+#: classes/Ostatus_profile.php:1756
 #, php-format
 msgid "Couldn't find a valid profile for \"%s\"."
 msgstr "Er is geen geldig profiel voor \"%s\" gevonden."
 
-#: classes/Ostatus_profile.php:1793
+#: classes/Ostatus_profile.php:1798
 msgid "Could not store HTML content of long post as file."
 msgstr ""
 "Het was niet mogelijk de HTML-inhoud van het lange bericht als bestand op te "
@@ -451,7 +451,7 @@ msgstr "Ongeldig hub.topic \"%s\". De groep bestaat niet."
 msgid "Invalid URL passed for %1$s: \"%2$s\""
 msgstr "Er is een ongeldige URL doorgegeven voor %1$s: \"%2$s\""
 
-#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43
+#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
 msgid "No such user."
 msgstr "Onbekende gebruiker."
 
diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po
index 01144504aa..7d0a218992 100644
--- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po
+++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OStatus\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:12+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:41+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:10:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:36+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-ostatus\n"
@@ -213,55 +213,55 @@ msgstr "Невірна URL-адреса аватари %s."
 msgid "Tried to update avatar for unsaved remote profile %s."
 msgstr "Намагаюся оновити аватару для не збереженого віддаленого профілю %s."
 
-#: classes/Ostatus_profile.php:1057
+#: classes/Ostatus_profile.php:1058
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Неможливо завантажити аватару з %s."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1279
+#: classes/Ostatus_profile.php:1284
 msgid "Local user can't be referenced as remote."
 msgstr "Місцевий користувач не може бути зазначеним у якості віддаленого."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1284
+#: classes/Ostatus_profile.php:1289
 msgid "Local group can't be referenced as remote."
 msgstr "Локальну спільноту не можна зазначити у якості віддаленої."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1336 classes/Ostatus_profile.php:1347
+#: classes/Ostatus_profile.php:1341 classes/Ostatus_profile.php:1352
 msgid "Can't save local profile."
 msgstr "Не вдається зберегти місцевий профіль."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1355
+#: classes/Ostatus_profile.php:1360
 msgid "Can't save OStatus profile."
 msgstr "Не вдається зберегти профіль OStatus."
 
 #. TRANS: Exception.
-#: classes/Ostatus_profile.php:1614 classes/Ostatus_profile.php:1642
+#: classes/Ostatus_profile.php:1619 classes/Ostatus_profile.php:1647
 msgid "Not a valid webfinger address."
 msgstr "Це недійсна адреса для протоколу WebFinger."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1724
+#: classes/Ostatus_profile.php:1729
 #, php-format
 msgid "Couldn't save profile for \"%s\"."
 msgstr "Не можу зберегти профіль для «%s»."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1743
+#: classes/Ostatus_profile.php:1748
 #, php-format
 msgid "Couldn't save ostatus_profile for \"%s\"."
 msgstr "Не можу зберегти профіль OStatus для «%s»."
 
 #. TRANS: Exception. %s is a webfinger address.
-#: classes/Ostatus_profile.php:1751
+#: classes/Ostatus_profile.php:1756
 #, php-format
 msgid "Couldn't find a valid profile for \"%s\"."
 msgstr "не можу знайти відповідний й профіль для «%s»."
 
-#: classes/Ostatus_profile.php:1793
+#: classes/Ostatus_profile.php:1798
 msgid "Could not store HTML content of long post as file."
 msgstr "Не можу зберегти HTML місткого допису у якості файлу."
 
@@ -437,7 +437,7 @@ msgstr "hub.topic «%s» невірний. Спільноти не існує."
 msgid "Invalid URL passed for %1$s: \"%2$s\""
 msgstr "Для %1$s передано невірний URL: «%2$s»"
 
-#: actions/userxrd.php:51 actions/ownerxrd.php:39 actions/usersalmon.php:43
+#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
 msgid "No such user."
 msgstr "Такого користувача немає."
 
diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot
index 62487428a5..a8c74b6588 100644
--- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot
+++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -16,6 +16,6 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po
new file mode 100644
index 0000000000..4b3a4c78a1
--- /dev/null
+++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -0,0 +1,28 @@
+# Translation of StatusNet - OpenExternalLinkTarget to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-openexternallinktarget\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
+msgstr ""
+"Öffnet externe Links (mit rel=external) in einem neuen Fenster oder Tab."
diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po
index 82b8be953e..256a7ebc11 100644
--- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,20 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: Spanish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-openexternallinktarget\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Abre vínculos externos (por ejemplo, con rel=external) en una nueva ventana "
 "o pestaña."
diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po
index 91f9f5faf5..2ef0e29248 100644
--- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,20 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Ouvre les liens externes (p. ex., avec rel=external) dans une nouvelle "
 "fenêtre ou un nouvel onglet."
diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po
index 12a071148c..aa191d2665 100644
--- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,20 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Aperi ligamines externe (p.ex. con rel=external) in un nove fenestra o "
 "scheda."
diff --git a/plugins/OpenExternalLinkTarget/locale/id/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/id/LC_MESSAGES/OpenExternalLinkTarget.po
index 19d9f4c8b7..380daec18b 100644
--- a/plugins/OpenExternalLinkTarget/locale/id/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/id/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,19 +9,20 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:52+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: Indonesian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: id\n"
 "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Membuka pranala luar (misal dengan rel=external) di jendela atau tab baru."
diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po
index b5e4d1386c..c8088c7129 100644
--- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,19 +9,20 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n"
 "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Отвора надворешни врски (на пр. со rel=external) во нов прозорец или јазиче."
diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po
index 8d9045dc66..d7535ebcee 100644
--- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,20 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: Norwegian (bokmål)‬ \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-openexternallinktarget\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Åpner eksterne lenker (f.eks. med rel=external) i ett nytt vindu eller en ny "
 "fane."
diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po
index f1a4e4c72c..e3ec4647b1 100644
--- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,20 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: Dutch \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-openexternallinktarget\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Opent externe verwijzingen in een nieuw venster of tabblad (bv. met "
 "\"rel=external\")."
diff --git a/plugins/OpenExternalLinkTarget/locale/pt_BR/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt_BR/LC_MESSAGES/OpenExternalLinkTarget.po
index 285207074a..ad5dd3f5a6 100644
--- a/plugins/OpenExternalLinkTarget/locale/pt_BR/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/pt_BR/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,21 +9,22 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:52+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+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-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-openexternallinktarget\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Abre links externos (por exemplo, com rel=external) em uma nova janela ou "
 "aba."
diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po
index 5da6bee90c..8a43460f42 100644
--- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,21 +9,22 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: Russian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-openexternallinktarget\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"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Возможность открыть внешние ссылки (например, rel=внешние) в новом окне или "
 "вкладке."
diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po
index d3d8816b06..9d8546f250 100644
--- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,20 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:21+0000\n"
 "Language-Team: Tagalog \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: tl\n"
 "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr ""
 "Nagbubukas ng panlabasa na mga kawing (iyon ay may rel=external) sa isang "
 "bagong bintana o panglaylay."
diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po
index 773a641515..57b647c65f 100644
--- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,19 +9,20 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:56:59+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:22+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\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"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr "Відкривати зовнішні посилання у новому вікні або вкладці."
diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po
index 0e32025171..70074ee5db 100644
--- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po
+++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po
@@ -9,19 +9,20 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:07:52+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:22+0000\n"
 "Language-Team: Simplified Chinese \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:34+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-openexternallinktarget\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: OpenExternalLinkTargetPlugin.php:60
-msgid "Opens external links (e.g., with rel=external) on a new window or tab."
+#: OpenExternalLinkTargetPlugin.php:59
+#, fuzzy
+msgid "Opens external links (i.e. with rel=external) on a new window or tab."
 msgstr "在新窗口或标签打开外部链接(如使用 rel=external)。"
diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot
index 8ef57965f1..bd43aa587b 100644
--- a/plugins/OpenID/locale/OpenID.pot
+++ b/plugins/OpenID/locale/OpenID.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -170,7 +170,7 @@ msgstr ""
 
 #: openidadminpanel.php:260
 msgid ""
-"Require all users to login via OpenID. WARNING: disables password "
+"Require all users to login via OpenID. Warning: disables password "
 "authentication for all users!"
 msgstr ""
 
diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po
new file mode 100644
index 0000000000..f53b4de0e0
--- /dev/null
+++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po
@@ -0,0 +1,594 @@
+# Translation of StatusNet - OpenID to Catalan (Català)
+# Expored from translatewiki.net
+#
+# Author: Toniher
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - OpenID\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:29+0000\n"
+"Language-Team: Catalan \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:35+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-openid\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: openidsettings.php:58 openidadminpanel.php:65
+msgid "OpenID settings"
+msgstr "Paràmetres de l'OpenID"
+
+#: openidsettings.php:69
+#, php-format
+msgid ""
+"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
+"account. Manage your associated OpenIDs from here."
+msgstr ""
+"[OpenID](%%doc.openid%%) us permet iniciar una sessió a molts llocs amb un "
+"mateix compte d'usuari. Gestioneu les vostres connexions OpenID associades "
+"des d'aquí."
+
+#: openidsettings.php:100
+msgid "Add OpenID"
+msgstr "Afegeix una connexió OpenID"
+
+#: openidsettings.php:103
+msgid ""
+"If you want to add an OpenID to your account, enter it in the box below and "
+"click \"Add\"."
+msgstr ""
+"Si voleu afegir una connexió OpenID al vostre compte, introduïu-la en la "
+"caixa a continuació i feu clic a «Afegeix»."
+
+#. TRANS: OpenID plugin logon form field label.
+#: openidsettings.php:108 openidlogin.php:161
+msgid "OpenID URL"
+msgstr "URL de la connexió OpenID"
+
+#: openidsettings.php:118
+msgid "Add"
+msgstr "Afegeix"
+
+#: openidsettings.php:130
+msgid "Remove OpenID"
+msgstr "Suprimeix la connexió OpenID"
+
+#: openidsettings.php:135
+msgid ""
+"Removing your only OpenID would make it impossible to log in! If you need to "
+"remove it, add another OpenID first."
+msgstr ""
+"Si suprimiu la vostra única connexió OpenID, serà impossible que hi inicieu "
+"cap sessió. Si cal que la suprimiu, primer afegiu-ne una altra."
+
+#: openidsettings.php:150
+msgid ""
+"You can remove an OpenID from your account by clicking the button marked "
+"\"Remove\"."
+msgstr ""
+"Podeu suprimir una connexió OpenID del vostre compte si feu clic al botó "
+"marcat amb «Suprimeix»."
+
+#: openidsettings.php:173 openidsettings.php:214
+msgid "Remove"
+msgstr "Suprimeix"
+
+#: openidsettings.php:187
+msgid "OpenID Trusted Sites"
+msgstr "Llocs de confiança de l'OpenID"
+
+#: openidsettings.php:190
+msgid ""
+"The following sites are allowed to access your identity and log you in. You "
+"can remove a site from this list to deny it access to your OpenID."
+msgstr ""
+
+#. TRANS: Message given when there is a problem with the user's session token.
+#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51
+msgid "There was a problem with your session token. Try again, please."
+msgstr ""
+
+#: openidsettings.php:239
+msgid "Can't add new providers."
+msgstr ""
+
+#: openidsettings.php:252
+msgid "Something weird happened."
+msgstr ""
+
+#: openidsettings.php:276
+msgid "No such OpenID trustroot."
+msgstr ""
+
+#: openidsettings.php:280
+msgid "Trustroots removed"
+msgstr ""
+
+#: openidsettings.php:303
+msgid "No such OpenID."
+msgstr ""
+
+#: openidsettings.php:308
+msgid "That OpenID does not belong to you."
+msgstr ""
+
+#: openidsettings.php:312
+msgid "OpenID removed."
+msgstr ""
+
+#: openidadminpanel.php:54 OpenIDPlugin.php:628
+msgid "OpenID"
+msgstr ""
+
+#: openidadminpanel.php:147
+msgid "Invalid provider URL. Max length is 255 characters."
+msgstr ""
+
+#: openidadminpanel.php:153
+msgid "Invalid team name. Max length is 255 characters."
+msgstr ""
+
+#: openidadminpanel.php:210
+msgid "Trusted provider"
+msgstr ""
+
+#: openidadminpanel.php:212
+msgid ""
+"By default, users are allowed to authenticate with any OpenID provider. If "
+"you are using your own OpenID service for shared sign-in, you can restrict "
+"access to only your own users here."
+msgstr ""
+
+#: openidadminpanel.php:220
+msgid "Provider URL"
+msgstr ""
+
+#: openidadminpanel.php:221
+msgid ""
+"All OpenID logins will be sent to this URL; other providers may not be used."
+msgstr ""
+
+#: openidadminpanel.php:228
+msgid "Append a username to base URL"
+msgstr ""
+
+#: openidadminpanel.php:230
+msgid ""
+"Login form will show the base URL and prompt for a username to add at the "
+"end. Use when OpenID provider URL should be the profile page for individual "
+"users."
+msgstr ""
+
+#: openidadminpanel.php:238
+msgid "Required team"
+msgstr ""
+
+#: openidadminpanel.php:239
+msgid "Only allow logins from users in the given team (Launchpad extension)."
+msgstr ""
+
+#: openidadminpanel.php:251
+msgid "Options"
+msgstr "Opcions"
+
+#: openidadminpanel.php:258
+msgid "Enable OpenID-only mode"
+msgstr ""
+
+#: openidadminpanel.php:260
+msgid ""
+"Require all users to login via OpenID. Warning: disables password "
+"authentication for all users!"
+msgstr ""
+
+#: openidadminpanel.php:278
+msgid "Save OpenID settings"
+msgstr ""
+
+#. TRANS: OpenID plugin server error.
+#: openid.php:138
+msgid "Cannot instantiate OpenID consumer object."
+msgstr ""
+
+#. TRANS: OpenID plugin message. Given when an OpenID is not valid.
+#: openid.php:150
+msgid "Not a valid OpenID."
+msgstr ""
+
+#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails.
+#. TRANS: %s is the failure message.
+#: openid.php:155
+#, php-format
+msgid "OpenID failure: %s"
+msgstr ""
+
+#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected.
+#. TRANS: %s is the failure message.
+#: openid.php:205
+#, php-format
+msgid "Could not redirect to server: %s"
+msgstr ""
+
+#. TRANS: OpenID plugin user instructions.
+#: openid.php:244
+msgid ""
+"This form should automatically submit itself. If not, click the submit "
+"button to go to your OpenID provider."
+msgstr ""
+
+#. TRANS: OpenID plugin server error.
+#: openid.php:280
+msgid "Error saving the profile."
+msgstr ""
+
+#. TRANS: OpenID plugin server error.
+#: openid.php:292
+msgid "Error saving the user."
+msgstr ""
+
+#. TRANS: OpenID plugin client exception (403).
+#: openid.php:322
+msgid "Unauthorized URL used for OpenID login."
+msgstr ""
+
+#. TRANS: Title
+#: openid.php:370
+msgid "OpenID Login Submission"
+msgstr ""
+
+#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider.
+#: openid.php:381
+msgid "Requesting authorization from your login provider..."
+msgstr ""
+
+#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider.
+#: openid.php:385
+msgid ""
+"If you are not redirected to your login provider in a few seconds, try "
+"pushing the button below."
+msgstr ""
+
+#. TRANS: Tooltip for main menu option "Login"
+#: OpenIDPlugin.php:226
+msgctxt "TOOLTIP"
+msgid "Login to the site"
+msgstr ""
+
+#. TRANS: Main menu option when not logged in to log in
+#: OpenIDPlugin.php:229
+msgctxt "MENU"
+msgid "Login"
+msgstr ""
+
+#. TRANS: Tooltip for main menu option "Help"
+#: OpenIDPlugin.php:234
+msgctxt "TOOLTIP"
+msgid "Help me!"
+msgstr "Ajuda'm!"
+
+#. TRANS: Main menu option for help on the StatusNet site
+#: OpenIDPlugin.php:237
+msgctxt "MENU"
+msgid "Help"
+msgstr "Ajuda"
+
+#. TRANS: Tooltip for main menu option "Search"
+#: OpenIDPlugin.php:243
+msgctxt "TOOLTIP"
+msgid "Search for people or text"
+msgstr ""
+
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
+#: OpenIDPlugin.php:246
+msgctxt "MENU"
+msgid "Search"
+msgstr "Cerca"
+
+#. TRANS: OpenID plugin menu item on site logon page.
+#. TRANS: OpenID plugin menu item on user settings page.
+#: OpenIDPlugin.php:306 OpenIDPlugin.php:344
+msgctxt "MENU"
+msgid "OpenID"
+msgstr "OpenID"
+
+#. TRANS: OpenID plugin tooltip for logon menu item.
+#: OpenIDPlugin.php:308
+msgid "Login or register with OpenID"
+msgstr "Inici de sessió o registre amb OpenID"
+
+#. TRANS: OpenID plugin tooltip for user settings menu item.
+#: OpenIDPlugin.php:346
+msgid "Add or remove OpenIDs"
+msgstr "Afegeix o suprimeix connexions OpenID"
+
+#: OpenIDPlugin.php:629
+msgid "OpenID configuration"
+msgstr "Configuració de l'OpenID"
+
+#. TRANS: OpenID plugin description.
+#: OpenIDPlugin.php:654
+msgid "Use OpenID to login to the site."
+msgstr ""
+"Fa servir OpenID per connectar-se al lloc."
+
+#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403).
+#: openidserver.php:116
+#, php-format
+msgid "You are not authorized to use the identity %s."
+msgstr "No esteu autoritzar a utilitzar la identitat %s."
+
+#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500).
+#: openidserver.php:137
+msgid "Just an OpenID provider. Nothing to see here, move along..."
+msgstr "Només un proveïdor OpenID. Res per veure aquí, movem-nos-en…"
+
+#. TRANS: Client error message trying to log on with OpenID while already logged on.
+#: finishopenidlogin.php:37 openidlogin.php:33
+msgid "Already logged in."
+msgstr "Ja heu iniciat una sessió."
+
+#. TRANS: Message given if user does not agree with the site's license.
+#: finishopenidlogin.php:48
+msgid "You can't register if you don't agree to the license."
+msgstr "No podeu registrar-vos-hi si no accepteu la llicència."
+
+#. TRANS: Messag given on an unknown error.
+#: finishopenidlogin.php:57
+msgid "An unknown error has occured."
+msgstr "S'ha produït un error desconegut."
+
+#. TRANS: Instructions given after a first successful logon using OpenID.
+#. TRANS: %s is the site name.
+#: finishopenidlogin.php:73
+#, php-format
+msgid ""
+"This is the first time you've logged into %s so we must connect your OpenID "
+"to a local account. You can either create a new account, or connect with "
+"your existing account, if you have one."
+msgstr ""
+
+#. TRANS: Title
+#: finishopenidlogin.php:80
+msgid "OpenID Account Setup"
+msgstr "Configuració del compte OpenID"
+
+#: finishopenidlogin.php:110
+msgid "Create new account"
+msgstr ""
+
+#: finishopenidlogin.php:112
+msgid "Create a new user with this nickname."
+msgstr ""
+
+#: finishopenidlogin.php:115
+msgid "New nickname"
+msgstr ""
+
+#: finishopenidlogin.php:117
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr ""
+
+#. TRANS: Button label in form in which to create a new user on the site for an OpenID.
+#: finishopenidlogin.php:142
+msgctxt "BUTTON"
+msgid "Create"
+msgstr "Crea"
+
+#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site.
+#: finishopenidlogin.php:148
+msgid "Connect existing account"
+msgstr ""
+
+#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site.
+#: finishopenidlogin.php:151
+msgid ""
+"If you already have an account, login with your username and password to "
+"connect it to your OpenID."
+msgstr ""
+
+#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site.
+#: finishopenidlogin.php:155
+msgid "Existing nickname"
+msgstr ""
+
+#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site.
+#: finishopenidlogin.php:159
+msgid "Password"
+msgstr "Contrasenya"
+
+#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site.
+#: finishopenidlogin.php:163
+msgctxt "BUTTON"
+msgid "Connect"
+msgstr "Connecta-hi"
+
+#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled.
+#: finishopenidlogin.php:176 finishaddopenid.php:90
+msgid "OpenID authentication cancelled."
+msgstr ""
+
+#. TRANS: OpenID authentication failed; display the error message. %s is the error message.
+#. TRANS: OpenID authentication failed; display the error message.
+#. TRANS: %s is the error message.
+#: finishopenidlogin.php:180 finishaddopenid.php:95
+#, php-format
+msgid "OpenID authentication failed: %s"
+msgstr ""
+
+#: finishopenidlogin.php:200 finishaddopenid.php:111
+msgid ""
+"OpenID authentication aborted: you are not allowed to login to this site."
+msgstr ""
+
+#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
+#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
+#: finishopenidlogin.php:252 finishopenidlogin.php:262
+msgid "Registration not allowed."
+msgstr "No es permet el registre."
+
+#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
+#: finishopenidlogin.php:270
+msgid "Not a valid invitation code."
+msgstr "No és un codi d'invitació vàlid."
+
+#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements.
+#: finishopenidlogin.php:281
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr ""
+"El sobrenom ha de contenir només lletres minúscules i nombres, i cap espai."
+
+#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
+#: finishopenidlogin.php:287
+msgid "Nickname not allowed."
+msgstr "No es permet el sobrenom."
+
+#. TRANS: OpenID plugin message. The entered new user name is already used.
+#: finishopenidlogin.php:293
+msgid "Nickname already in use. Try another one."
+msgstr "El sobrenom ja és en ús. Proveu-ne un altre."
+
+#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
+#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
+#: finishopenidlogin.php:301 finishopenidlogin.php:388
+msgid "Stored OpenID not found."
+msgstr "No s'ha trobat la connexió OpenID emmagatzemada."
+
+#. TRANS: OpenID plugin server error.
+#: finishopenidlogin.php:311
+msgid "Creating new account for OpenID that already has a user."
+msgstr ""
+"S'està creant un compte nou per a una connexió OpenID que ja té un usuari."
+
+#. TRANS: OpenID plugin message.
+#: finishopenidlogin.php:376
+msgid "Invalid username or password."
+msgstr "El nom d'usuari o la contrasenya no són vàlids."
+
+#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
+#: finishopenidlogin.php:396
+msgid "Error connecting user to OpenID."
+msgstr "S'ha produït un error en connectar l'usuari amb la connexió OpenID."
+
+#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings.
+#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)".
+#: openidlogin.php:82
+#, php-format
+msgid ""
+"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
+"before changing your settings."
+msgstr ""
+"Per motius de seguretat, torneu a iniciar una sessió amb [OpenID](%%doc."
+"openid%%) abans de canviar els paràmetres."
+
+#. TRANS: OpenID plugin message.
+#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)".
+#: openidlogin.php:88
+#, php-format
+msgid "Login with an [OpenID](%%doc.openid%%) account."
+msgstr "Inicia una sessió amb un compte [OpenID](%%doc.openid%%)."
+
+#. TRANS: OpenID plugin message. Title.
+#. TRANS: Title after getting the status of the OpenID authorisation request.
+#: openidlogin.php:122 finishaddopenid.php:187
+msgid "OpenID Login"
+msgstr "Inici de sessió amb OpenID"
+
+#. TRANS: OpenID plugin logon form legend.
+#: openidlogin.php:140
+msgid "OpenID login"
+msgstr "Inici de sessió amb OpenID"
+
+#: openidlogin.php:148
+msgid "OpenID provider"
+msgstr "Proveïdor d'OpenID"
+
+#: openidlogin.php:156
+msgid "Enter your username."
+msgstr "Introduïu el vostre nom d'usuari."
+
+#: openidlogin.php:157
+msgid "You will be sent to the provider's site for authentication."
+msgstr "Se us portarà al lloc del proveïdor perquè us hi autentiqueu."
+
+#. TRANS: OpenID plugin logon form field instructions.
+#: openidlogin.php:164
+msgid "Your OpenID URL"
+msgstr "L'URL del vostre OpenID"
+
+#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie.
+#: openidlogin.php:169
+msgid "Remember me"
+msgstr "Recorda'm"
+
+#. TRANS: OpenID plugin logon form field instructions.
+#: openidlogin.php:171
+msgid "Automatically login in the future; not for shared computers!"
+msgstr ""
+"Inicia una sessió automàticament en el futur; no recomanable en ordinadors "
+"compartits!"
+
+#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form.
+#: openidlogin.php:176
+msgctxt "BUTTON"
+msgid "Login"
+msgstr "Inicia una sessió"
+
+#: openidtrust.php:52
+msgid "OpenID Identity Verification"
+msgstr "Verificació de la identitat d'OpenID"
+
+#: openidtrust.php:70
+msgid ""
+"This page should only be reached during OpenID processing, not directly."
+msgstr ""
+"Hauria d'arribar-se a aquesta pàgina només durant el processament de "
+"l'OpenID, no directament."
+
+#: openidtrust.php:118
+#, php-format
+msgid ""
+"%s  has asked to verify your identity. Click Continue to verify your "
+"identity and login without creating a new password."
+msgstr ""
+"%s  us ha demanat verificar la identitat. Feu clic a Continuar per verificar "
+"la vostra identitat i iniciar una sessió sense crear cap contrasenya nova."
+
+#: openidtrust.php:136
+msgid "Continue"
+msgstr "Continua"
+
+#: openidtrust.php:137
+msgid "Cancel"
+msgstr "Cancel·la"
+
+#. TRANS: Client error message
+#: finishaddopenid.php:68
+msgid "Not logged in."
+msgstr "No s'ha iniciat una sessió."
+
+#. TRANS: message in case a user tries to add an OpenID that is already connected to them.
+#: finishaddopenid.php:122
+msgid "You already have this OpenID!"
+msgstr "Ja teniu aquest OpenID!"
+
+#. TRANS: message in case a user tries to add an OpenID that is already used by another user.
+#: finishaddopenid.php:125
+msgid "Someone else already has this OpenID."
+msgstr "Algú altre ja té aquest OpenID."
+
+#. TRANS: message in case the OpenID object cannot be connected to the user.
+#: finishaddopenid.php:138
+msgid "Error connecting user."
+msgstr "S'ha produït un error en connectar l'usuari"
+
+#. TRANS: message in case the user or the user profile cannot be saved in StatusNet.
+#: finishaddopenid.php:145
+msgid "Error updating profile"
+msgstr "S'ha produït un error en actualitzar el perfil"
diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po
index a5fad3a9d9..37f5d44c06 100644
--- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po
+++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po
@@ -10,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenID\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:02+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:29+0000\n"
 "Language-Team: German \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:35+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-openid\n"
@@ -32,10 +32,12 @@ msgid ""
 "[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
 "account. Manage your associated OpenIDs from here."
 msgstr ""
+"[OpenID](%%doc.openid%%) erlaubt die, dich auf vielen Seiten mit dem selben "
+"Benutzerkonto anzumelden. Verwalte deine verknüpften OpenIDs von hier aus."
 
 #: openidsettings.php:100
 msgid "Add OpenID"
-msgstr "Füge OpenID hinzu"
+msgstr "OpenID hinzufügen"
 
 #: openidsettings.php:103
 msgid ""
@@ -48,7 +50,7 @@ msgstr ""
 #. TRANS: OpenID plugin logon form field label.
 #: openidsettings.php:108 openidlogin.php:161
 msgid "OpenID URL"
-msgstr "OpenID URL"
+msgstr "OpenID-URL"
 
 #: openidsettings.php:118
 msgid "Add"
@@ -80,7 +82,7 @@ msgstr "Entfernen"
 
 #: openidsettings.php:187
 msgid "OpenID Trusted Sites"
-msgstr ""
+msgstr "Vertrauenswürdige OpenID-Seiten"
 
 #: openidsettings.php:190
 msgid ""
@@ -146,19 +148,24 @@ msgid ""
 "you are using your own OpenID service for shared sign-in, you can restrict "
 "access to only your own users here."
 msgstr ""
+"Standardmäßig dürfen sich Benutzer mit jedem OpenID-Provider "
+"authentifizieren. Wenn du deinen eigenen OpenID-Servide benutzt, kannst du "
+"hier den Zugang auf deine eigenen Benutzer beschränken."
 
 #: openidadminpanel.php:220
 msgid "Provider URL"
-msgstr ""
+msgstr "Provider-URL"
 
 #: openidadminpanel.php:221
 msgid ""
 "All OpenID logins will be sent to this URL; other providers may not be used."
 msgstr ""
+"Alle OpenID-Anmeldungen werden an diese URL gesendet; andere Provider können "
+"nicht verwendet werden."
 
 #: openidadminpanel.php:228
 msgid "Append a username to base URL"
-msgstr ""
+msgstr "Einen Benutzernamen an die Basis-URL anfügen"
 
 #: openidadminpanel.php:230
 msgid ""
@@ -166,32 +173,40 @@ msgid ""
 "end. Use when OpenID provider URL should be the profile page for individual "
 "users."
 msgstr ""
+"Die Anmelde-Form wird eine Basis-URL anzeigen und um einen Benutzernamen am "
+"Ende bitten. Benutzer dass, wenn die OpenID-Provider-URL die Profilseite "
+"individueller Benutzer sein sollte."
 
 #: openidadminpanel.php:238
 msgid "Required team"
-msgstr ""
+msgstr "Erforderliche Mannschaft"
 
 #: openidadminpanel.php:239
 msgid "Only allow logins from users in the given team (Launchpad extension)."
 msgstr ""
+"Nur Anmeldungen von Benutzern aus der gegebenen Mannschaft erlauben "
+"(Launchpad-Erweiterung)."
 
 #: openidadminpanel.php:251
 msgid "Options"
-msgstr ""
+msgstr "Optionen"
 
 #: openidadminpanel.php:258
 msgid "Enable OpenID-only mode"
-msgstr ""
+msgstr "Nur-OpenID-Modus aktivieren"
 
 #: openidadminpanel.php:260
+#, fuzzy
 msgid ""
-"Require all users to login via OpenID. WARNING: disables password "
+"Require all users to login via OpenID. Warning: disables password "
 "authentication for all users!"
 msgstr ""
+"Von allen Benutzern OpenID-Anmeldung verlangen. Warnung: deaktiviert "
+"Passwort-Authentifizierung aller Benutzer!"
 
 #: openidadminpanel.php:278
 msgid "Save OpenID settings"
-msgstr ""
+msgstr "OpenId-Einstellungen speichern"
 
 #. TRANS: OpenID plugin server error.
 #: openid.php:138
@@ -208,14 +223,14 @@ msgstr "Keine gültige OpenID."
 #: openid.php:155
 #, php-format
 msgid "OpenID failure: %s"
-msgstr ""
+msgstr "OpenId-Fehler: %s"
 
 #. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected.
 #. TRANS: %s is the failure message.
 #: openid.php:205
 #, php-format
 msgid "Could not redirect to server: %s"
-msgstr ""
+msgstr "Konnte keine Verbindung zum Server erstellen: %s"
 
 #. TRANS: OpenID plugin user instructions.
 #: openid.php:244
@@ -227,17 +242,17 @@ msgstr ""
 #. TRANS: OpenID plugin server error.
 #: openid.php:280
 msgid "Error saving the profile."
-msgstr ""
+msgstr "Fehler beim Speichern des Profils."
 
 #. TRANS: OpenID plugin server error.
 #: openid.php:292
 msgid "Error saving the user."
-msgstr ""
+msgstr "Fehler beim Speichern des Benutzers."
 
 #. TRANS: OpenID plugin client exception (403).
 #: openid.php:322
 msgid "Unauthorized URL used for OpenID login."
-msgstr ""
+msgstr "Unauthorisierte URL für OpenID-Anmeldung benutzt."
 
 #. TRANS: Title
 #: openid.php:370
@@ -247,7 +262,7 @@ msgstr ""
 #. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider.
 #: openid.php:381
 msgid "Requesting authorization from your login provider..."
-msgstr ""
+msgstr "Authorisierung von deinem Login-Provider wird angefragt …"
 
 #. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider.
 #: openid.php:385
@@ -255,12 +270,14 @@ msgid ""
 "If you are not redirected to your login provider in a few seconds, try "
 "pushing the button below."
 msgstr ""
+"Wenn du nicht in wenigen Sekunden zu deinem Login-Provider weitergeleitet "
+"wirst, versuche den Button unten zu klicken."
 
 #. TRANS: Tooltip for main menu option "Login"
 #: OpenIDPlugin.php:226
 msgctxt "TOOLTIP"
 msgid "Login to the site"
-msgstr ""
+msgstr "Auf der Seite anmelden"
 
 #. TRANS: Main menu option when not logged in to log in
 #: OpenIDPlugin.php:229
@@ -284,7 +301,7 @@ msgstr "Hilfe"
 #: OpenIDPlugin.php:243
 msgctxt "TOOLTIP"
 msgid "Search for people or text"
-msgstr ""
+msgstr "Suche nach Leuten oder Text"
 
 #. TRANS: Main menu option when logged in or when the StatusNet instance is not private
 #: OpenIDPlugin.php:246
@@ -311,7 +328,7 @@ msgstr "Hinzufügen oder Entfernen von OpenIDs"
 
 #: OpenIDPlugin.php:629
 msgid "OpenID configuration"
-msgstr ""
+msgstr "OpenId-Konfiguration"
 
 #. TRANS: OpenID plugin description.
 #: OpenIDPlugin.php:654
@@ -324,12 +341,12 @@ msgstr ""
 #: openidserver.php:116
 #, php-format
 msgid "You are not authorized to use the identity %s."
-msgstr ""
+msgstr "Du bist nicht berechtigt, die Identität %s zu benutzen."
 
 #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500).
 #: openidserver.php:137
 msgid "Just an OpenID provider. Nothing to see here, move along..."
-msgstr ""
+msgstr "Nur ein OpenID-Provider. Hier gibt es nichts zu sehen …"
 
 #. TRANS: Client error message trying to log on with OpenID while already logged on.
 #: finishopenidlogin.php:37 openidlogin.php:33
@@ -340,11 +357,12 @@ msgstr "Bereits angemeldet."
 #: finishopenidlogin.php:48
 msgid "You can't register if you don't agree to the license."
 msgstr ""
+"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst."
 
 #. TRANS: Messag given on an unknown error.
 #: finishopenidlogin.php:57
 msgid "An unknown error has occured."
-msgstr ""
+msgstr "Ein unbekannter Fehler ist aufgetreten."
 
 #. TRANS: Instructions given after a first successful logon using OpenID.
 #. TRANS: %s is the site name.
@@ -355,6 +373,10 @@ msgid ""
 "to a local account. You can either create a new account, or connect with "
 "your existing account, if you have one."
 msgstr ""
+"Dies ist das erste Mal, dass du dich auf %s anmeldest, sodass wir deine "
+"OpenID mit einem lokalen Benutzerkonto verbinden müssen. Du kannst entweder "
+"ein neues Benutzerkonto erstellen oder dich mit deinem existierendem "
+"Benutzerkonto verbinden."
 
 #. TRANS: Title
 #: finishopenidlogin.php:80
@@ -367,15 +389,15 @@ msgstr "Neues Benutzerkonto erstellen"
 
 #: finishopenidlogin.php:112
 msgid "Create a new user with this nickname."
-msgstr ""
+msgstr "Neues Benutzerkonto mit diesem Benutzernamen erstellen."
 
 #: finishopenidlogin.php:115
 msgid "New nickname"
-msgstr ""
+msgstr "Neuer Benutzername"
 
 #: finishopenidlogin.php:117
 msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr ""
+msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen"
 
 #. TRANS: Button label in form in which to create a new user on the site for an OpenID.
 #: finishopenidlogin.php:142
@@ -386,7 +408,7 @@ msgstr "Erstellen"
 #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site.
 #: finishopenidlogin.php:148
 msgid "Connect existing account"
-msgstr ""
+msgstr "Bestehendes Benutzerkonto verbinden"
 
 #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site.
 #: finishopenidlogin.php:151
@@ -394,11 +416,13 @@ msgid ""
 "If you already have an account, login with your username and password to "
 "connect it to your OpenID."
 msgstr ""
+"Wenn du bereits ein Benutzerkonto hast, melde dich mit deinem Benutzernamen "
+"und Passwort an, um ihn mit deiner OpenID zu verbinden."
 
 #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site.
 #: finishopenidlogin.php:155
 msgid "Existing nickname"
-msgstr ""
+msgstr "Bestehender Benutzername"
 
 #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site.
 #: finishopenidlogin.php:159
@@ -409,12 +433,12 @@ msgstr "Passwort"
 #: finishopenidlogin.php:163
 msgctxt "BUTTON"
 msgid "Connect"
-msgstr ""
+msgstr "Verbinden"
 
 #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled.
 #: finishopenidlogin.php:176 finishaddopenid.php:90
 msgid "OpenID authentication cancelled."
-msgstr ""
+msgstr "OpenID-Authentifizierung abgebrochen."
 
 #. TRANS: OpenID authentication failed; display the error message. %s is the error message.
 #. TRANS: OpenID authentication failed; display the error message.
@@ -422,38 +446,42 @@ msgstr ""
 #: finishopenidlogin.php:180 finishaddopenid.php:95
 #, php-format
 msgid "OpenID authentication failed: %s"
-msgstr ""
+msgstr "OpenID-Authentifizierung gescheitert: %s"
 
 #: finishopenidlogin.php:200 finishaddopenid.php:111
 msgid ""
 "OpenID authentication aborted: you are not allowed to login to this site."
 msgstr ""
+"OpenID-Authentifizierung abgebrochen: du darfst dich nicht auf dieser Seite "
+"anmelden."
 
 #. TRANS: OpenID plugin message. No new user registration is allowed on the site.
 #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
 #: finishopenidlogin.php:252 finishopenidlogin.php:262
 msgid "Registration not allowed."
-msgstr ""
+msgstr "Registrierung nicht erlaubt."
 
 #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
 #: finishopenidlogin.php:270
 msgid "Not a valid invitation code."
-msgstr ""
+msgstr "Kein gültiger Einladungscode."
 
 #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements.
 #: finishopenidlogin.php:281
 msgid "Nickname must have only lowercase letters and numbers and no spaces."
 msgstr ""
+"Der Benutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. "
+"Leerzeichen sind nicht erlaubt."
 
 #. TRANS: OpenID plugin message. The entered new user name is blacklisted.
 #: finishopenidlogin.php:287
 msgid "Nickname not allowed."
-msgstr ""
+msgstr "Benutzername nicht erlaubt."
 
 #. TRANS: OpenID plugin message. The entered new user name is already used.
 #: finishopenidlogin.php:293
 msgid "Nickname already in use. Try another one."
-msgstr ""
+msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus."
 
 #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
 #. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
@@ -469,7 +497,7 @@ msgstr ""
 #. TRANS: OpenID plugin message.
 #: finishopenidlogin.php:376
 msgid "Invalid username or password."
-msgstr ""
+msgstr "Benutzername oder Passwort falsch."
 
 #. TRANS: OpenID plugin server error. The user or user profile could not be saved.
 #: finishopenidlogin.php:396
@@ -484,13 +512,15 @@ msgid ""
 "For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
 "before changing your settings."
 msgstr ""
+"Bitte melde dich aus Sicherheitsgründen noch einmal mit deiner [OpenID](%%"
+"doc.openid%%), bevor du deine Einstellungen änderst."
 
 #. TRANS: OpenID plugin message.
 #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)".
 #: openidlogin.php:88
 #, php-format
 msgid "Login with an [OpenID](%%doc.openid%%) account."
-msgstr ""
+msgstr "Mit einem [OpenID](%%doc.openid%%)-Benutzerkonto anmelden."
 
 #. TRANS: OpenID plugin message. Title.
 #. TRANS: Title after getting the status of the OpenID authorisation request.
@@ -528,7 +558,7 @@ msgstr "Anmeldedaten merken"
 #. TRANS: OpenID plugin logon form field instructions.
 #: openidlogin.php:171
 msgid "Automatically login in the future; not for shared computers!"
-msgstr ""
+msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!"
 
 #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form.
 #: openidlogin.php:176
@@ -551,6 +581,9 @@ msgid ""
 "%s  has asked to verify your identity. Click Continue to verify your "
 "identity and login without creating a new password."
 msgstr ""
+"%s hat dich gebeten, deine Identität zu bestätigen. Klicke auf „Weiter“, um "
+"deine Identität zu bestätigen und dich anzumelden ohne ein neues Passwort zu "
+"erstellen."
 
 #: openidtrust.php:136
 msgid "Continue"
@@ -563,7 +596,7 @@ msgstr "Abbrechen"
 #. TRANS: Client error message
 #: finishaddopenid.php:68
 msgid "Not logged in."
-msgstr ""
+msgstr "Nicht angemeldet."
 
 #. TRANS: message in case a user tries to add an OpenID that is already connected to them.
 #: finishaddopenid.php:122
@@ -573,7 +606,7 @@ msgstr "Du hast bereits diese OpenID!"
 #. TRANS: message in case a user tries to add an OpenID that is already used by another user.
 #: finishaddopenid.php:125
 msgid "Someone else already has this OpenID."
-msgstr ""
+msgstr "Jemand anders hat bereits diese Open-ID."
 
 #. TRANS: message in case the OpenID object cannot be connected to the user.
 #: finishaddopenid.php:138
diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po
index 1785ecb4a0..4d144d1bd4 100644
--- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po
+++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenID\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:02+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:30+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:35+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-openid\n"
@@ -203,8 +203,9 @@ msgid "Enable OpenID-only mode"
 msgstr "Activer le mode OpenID seul"
 
 #: openidadminpanel.php:260
+#, fuzzy
 msgid ""
-"Require all users to login via OpenID. WARNING: disables password "
+"Require all users to login via OpenID. Warning: disables password "
 "authentication for all users!"
 msgstr ""
 "Exiger que tous les utilisateurs se connectent via OpenID. AVERTISSEMENT : "
diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po
index 01d28a70e6..b57c7f7ad8 100644
--- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po
+++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenID\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:03+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:30+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:35+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-openid\n"
@@ -195,8 +195,9 @@ msgid "Enable OpenID-only mode"
 msgstr "Activar modo OpenID sol"
 
 #: openidadminpanel.php:260
+#, fuzzy
 msgid ""
-"Require all users to login via OpenID. WARNING: disables password "
+"Require all users to login via OpenID. Warning: disables password "
 "authentication for all users!"
 msgstr ""
 "Requirer que tote le usatores aperi session via OpenID. ATTENTION: isto "
diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po
index dc68a58211..6f014c9eb9 100644
--- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po
+++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenID\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:03+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:30+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:35+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-openid\n"
@@ -193,8 +193,9 @@ msgid "Enable OpenID-only mode"
 msgstr "Вклучи режим „само OpenID“"
 
 #: openidadminpanel.php:260
+#, fuzzy
 msgid ""
-"Require all users to login via OpenID. WARNING: disables password "
+"Require all users to login via OpenID. Warning: disables password "
 "authentication for all users!"
 msgstr ""
 "Барај од сите корисници да се најават преку OpenID. ПРЕДУПРЕДУВАЊЕ: ова ја "
diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po
index 6286a98fc1..651cbc6f95 100644
--- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po
+++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po
@@ -10,16 +10,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenID\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:03+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:30+0000\n"
 "Last-Translator: Siebrand Mazeland \n"
 "Language-Team: Dutch \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:35+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-openid\n"
@@ -198,8 +198,9 @@ msgid "Enable OpenID-only mode"
 msgstr "Alleen OpenID inschakelen"
 
 #: openidadminpanel.php:260
+#, fuzzy
 msgid ""
-"Require all users to login via OpenID. WARNING: disables password "
+"Require all users to login via OpenID. Warning: disables password "
 "authentication for all users!"
 msgstr ""
 "Alle gebruikers verplichten aan te melden via OpenID. Waarschuwing: als deze "
diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po
index e7fdc2fc9b..53393e0d63 100644
--- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po
+++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenID\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:03+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:31+0000\n"
 "Language-Team: Tagalog \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:35+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: tl\n"
 "X-Message-Group: #out-statusnet-plugin-openid\n"
@@ -202,8 +202,9 @@ msgid "Enable OpenID-only mode"
 msgstr "Paganahin ang gawi na OpenID lamang"
 
 #: openidadminpanel.php:260
+#, fuzzy
 msgid ""
-"Require all users to login via OpenID. WARNING: disables password "
+"Require all users to login via OpenID. Warning: disables password "
 "authentication for all users!"
 msgstr ""
 "Igiit sa lahat ng mga tagagamit na lumagda sa pamamagitan ng OpenID.  "
diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po
index 63f2c13041..2ef082dadb 100644
--- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po
+++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - OpenID\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:03+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:31+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:35+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-openid\n"
@@ -198,8 +198,9 @@ msgid "Enable OpenID-only mode"
 msgstr "Увімкнути режим входу лише за OpenID"
 
 #: openidadminpanel.php:260
+#, fuzzy
 msgid ""
-"Require all users to login via OpenID. WARNING: disables password "
+"Require all users to login via OpenID. Warning: disables password "
 "authentication for all users!"
 msgstr ""
 "Вимагає, щоб всі користувачі входили лише за наявності OpenID. УВАГА: ця "
diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po
new file mode 100644
index 0000000000..a9c906fe29
--- /dev/null
+++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - PiwikAnalytics to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - PiwikAnalytics\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:42+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:37+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-piwikanalytics\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: PiwikAnalyticsPlugin.php:105
+msgid ""
+"Use Piwik Open Source web analytics "
+"software."
+msgstr ""
+"Bruk Piwik, en nettanalyseprogramvare med "
+"åpen kildekode."
diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po
new file mode 100644
index 0000000000..608b871ef4
--- /dev/null
+++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - PostDebug to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - PostDebug\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:42+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:38+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-postdebug\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: PostDebugPlugin.php:58
+msgid "Debugging tool to record request details on POST."
+msgstr "Feilsøkingsverktøy for å registrere forspørselsdetaljer om POST."
diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po
index 7d6bdd6ad1..54573ebc90 100644
--- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po
+++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - PoweredByStatusNet\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:17+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:43+0000\n"
 "Language-Team: Breton \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:48+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: br\n"
 "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: PoweredByStatusNetPlugin.php:51
 #, php-format
 msgid "powered by %s"
-msgstr "savet gant %s"
+msgstr "enlusket gant %s"
 
 #: PoweredByStatusNetPlugin.php:53
 msgid "StatusNet"
@@ -36,3 +36,5 @@ msgid ""
 "Outputs \"powered by StatusNet\" after "
 "site name."
 msgstr ""
+"Diskwel \"enlusket gant StatusNet\" goude "
+"anv al lec'hienn."
diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po
new file mode 100644
index 0000000000..a1816fd70a
--- /dev/null
+++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po
@@ -0,0 +1,40 @@
+# Translation of StatusNet - PoweredByStatusNet to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - PoweredByStatusNet\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:43+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:48+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-poweredbystatusnet\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text.
+#: PoweredByStatusNetPlugin.php:51
+#, php-format
+msgid "powered by %s"
+msgstr "bereitgestellt von %s"
+
+#: PoweredByStatusNetPlugin.php:53
+msgid "StatusNet"
+msgstr "StatusNet"
+
+#: PoweredByStatusNetPlugin.php:66
+msgid ""
+"Outputs \"powered by StatusNet\" after "
+"site name."
+msgstr ""
+"Fügt „bereitgestellt von StatusNet“ "
+"hinter dem Seitennamen ein."
diff --git a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po
new file mode 100644
index 0000000000..87632e46f2
--- /dev/null
+++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po
@@ -0,0 +1,28 @@
+# Translation of StatusNet - PtitUrl to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - PtitUrl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:44+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:49+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-ptiturl\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: PtitUrlPlugin.php:67
+#, php-format
+msgid "Uses %1$s URL-shortener service."
+msgstr ""
+"Ober a ra gant ar servij krennañ URL %1$s."
diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po
new file mode 100644
index 0000000000..014c42ffcb
--- /dev/null
+++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po
@@ -0,0 +1,29 @@
+# Translation of StatusNet - PtitUrl to Brazilian Portuguese (Português do Brasil)
+# Expored from translatewiki.net
+#
+# Author: Giro720
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - PtitUrl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:44+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-09 14:36:49+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-ptiturl\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: PtitUrlPlugin.php:67
+#, php-format
+msgid "Uses %1$s URL-shortener service."
+msgstr ""
+"Utiliza o serviço de encurtamento de URL %1$s"
diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po
new file mode 100644
index 0000000000..8023b66026
--- /dev/null
+++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po
@@ -0,0 +1,39 @@
+# Translation of StatusNet - Recaptcha to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: Apmon
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Recaptcha\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:45+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:50+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-recaptcha\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: RecaptchaPlugin.php:64
+msgid "Captcha"
+msgstr "Captcha"
+
+#: RecaptchaPlugin.php:105
+msgid "Captcha does not match!"
+msgstr "Captcha stimmt nicht mit Text überein!"
+
+#: RecaptchaPlugin.php:117
+msgid ""
+"Uses Recaptcha service to add a  "
+"captcha to the registration page."
+msgstr ""
+"Verwendet Recaptcha um ein CAPTCHA zur "
+"Registrierung hinzuzufügen."
diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po
new file mode 100644
index 0000000000..62ad486e59
--- /dev/null
+++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po
@@ -0,0 +1,40 @@
+# Translation of StatusNet - Recaptcha to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: Eleferen
+# Author: MaxSem
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Recaptcha\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:45+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:50+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-recaptcha\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"
+
+#: RecaptchaPlugin.php:64
+msgid "Captcha"
+msgstr "Капча"
+
+#: RecaptchaPlugin.php:105
+msgid "Captcha does not match!"
+msgstr "Код проверки не совпадает!"
+
+#: RecaptchaPlugin.php:117
+msgid ""
+"Uses Recaptcha service to add a  "
+"captcha to the registration page."
+msgstr ""
+"Добавляет на страницу регистрации каптчу с использованием Recaptcha."
diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po
new file mode 100644
index 0000000000..62a286f752
--- /dev/null
+++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po
@@ -0,0 +1,39 @@
+# Translation of StatusNet - RegisterThrottle to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - RegisterThrottle\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:46+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:51+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-registerthrottle\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: RegisterThrottlePlugin.php:121 RegisterThrottlePlugin.php:160
+msgid "Cannot find IP address."
+msgstr "Kann IP-Addresse nicht finden."
+
+#: RegisterThrottlePlugin.php:136
+msgid "Too many registrations. Take a break and try again later."
+msgstr ""
+"Zu viele Registrierungen. Mach eine Pause and versuche es später noch einmal."
+
+#: RegisterThrottlePlugin.php:166
+msgid "Cannot find user after successful registration."
+msgstr "Kann Benutzer nach erfolgreicher Registrierung nicht finden."
+
+#: RegisterThrottlePlugin.php:199
+msgid "Throttles excessive registration from a single IP address."
+msgstr "Drosselt exzessive Registrierungen einer einzelnen IP-Adresse."
diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot
index dde5480bdb..8594cc6eb6 100644
--- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot
+++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -16,16 +16,14 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: RequireValidatedEmailPlugin.php:72
+#: RequireValidatedEmailPlugin.php:92
 msgid "You must validate your email address before posting."
 msgstr ""
 
-#: RequireValidatedEmailPlugin.php:90
+#: RequireValidatedEmailPlugin.php:112
 msgid "You must provide an email address to register."
 msgstr ""
 
-#: RequireValidatedEmailPlugin.php:169
-msgid ""
-"The Require Validated Email plugin disables posting for accounts that do not "
-"have a validated email address."
+#: RequireValidatedEmailPlugin.php:216
+msgid "Disables posting without a validated email address."
 msgstr ""
diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po
new file mode 100644
index 0000000000..e65b01d65e
--- /dev/null
+++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po
@@ -0,0 +1,41 @@
+# Translation of StatusNet - RequireValidatedEmail to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - RequireValidatedEmail\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:47+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-requirevalidatedemail\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: RequireValidatedEmailPlugin.php:92
+msgid "You must validate your email address before posting."
+msgstr "Du musst deine E-Mail-Adresse validieren, bevor du beitragen kannst."
+
+#: RequireValidatedEmailPlugin.php:112
+msgid "You must provide an email address to register."
+msgstr "Du musst eine E-Mail-Adresse angeben, um dich zu registrieren."
+
+#: RequireValidatedEmailPlugin.php:216
+msgid "Disables posting without a validated email address."
+msgstr ""
+
+#~ msgid ""
+#~ "The Require Validated Email plugin disables posting for accounts that do "
+#~ "not have a validated email address."
+#~ msgstr ""
+#~ "Das „Require Validated Email“-Plugin deaktiviert das Beitragen für "
+#~ "Benutzerkonten, die keine gültige E-Mail-Adresse haben."
diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po
index 3925c5d4ad..f518eb048c 100644
--- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po
+++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po
@@ -9,30 +9,33 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - RequireValidatedEmail\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:19+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:47+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: RequireValidatedEmailPlugin.php:72
+#: RequireValidatedEmailPlugin.php:92
 msgid "You must validate your email address before posting."
 msgstr "Vous devez valider votre adresse électronique avant de poster."
 
-#: RequireValidatedEmailPlugin.php:90
+#: RequireValidatedEmailPlugin.php:112
 msgid "You must provide an email address to register."
 msgstr "Vous devez fournir une adresse électronique avant de vous enregistrer."
 
-#: RequireValidatedEmailPlugin.php:169
-msgid ""
-"The Require Validated Email plugin disables posting for accounts that do not "
-"have a validated email address."
+#: RequireValidatedEmailPlugin.php:216
+msgid "Disables posting without a validated email address."
 msgstr ""
-"L’extension Require Validated Email désactive le postage pour les comptes "
-"qui n’ont pas d’adresse électronique valide."
+
+#~ msgid ""
+#~ "The Require Validated Email plugin disables posting for accounts that do "
+#~ "not have a validated email address."
+#~ msgstr ""
+#~ "L’extension Require Validated Email désactive le postage pour les comptes "
+#~ "qui n’ont pas d’adresse électronique valide."
diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po
index f208b8c777..347a8ca576 100644
--- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po
+++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po
@@ -9,30 +9,33 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - RequireValidatedEmail\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:19+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:47+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: RequireValidatedEmailPlugin.php:72
+#: RequireValidatedEmailPlugin.php:92
 msgid "You must validate your email address before posting."
 msgstr "Tu debe validar tu adresse de e-mail ante de publicar."
 
-#: RequireValidatedEmailPlugin.php:90
+#: RequireValidatedEmailPlugin.php:112
 msgid "You must provide an email address to register."
 msgstr "Tu debe fornir un adresse de e-mail pro poter crear un conto."
 
-#: RequireValidatedEmailPlugin.php:169
-msgid ""
-"The Require Validated Email plugin disables posting for accounts that do not "
-"have a validated email address."
+#: RequireValidatedEmailPlugin.php:216
+msgid "Disables posting without a validated email address."
 msgstr ""
-"Le plug-in \"Require Validated Email\" disactiva le publication pro contos "
-"que non ha un adresse de e-mail validate."
+
+#~ msgid ""
+#~ "The Require Validated Email plugin disables posting for accounts that do "
+#~ "not have a validated email address."
+#~ msgstr ""
+#~ "Le plug-in \"Require Validated Email\" disactiva le publication pro "
+#~ "contos que non ha un adresse de e-mail validate."
diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po
index 9347f8d447..956c5c3347 100644
--- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po
+++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po
@@ -9,32 +9,35 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - RequireValidatedEmail\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:20+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:47+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n"
 "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
 
-#: RequireValidatedEmailPlugin.php:72
+#: RequireValidatedEmailPlugin.php:92
 msgid "You must validate your email address before posting."
 msgstr ""
 "Пред да почнете да објавувате ќе мора да ја потврдите Вашата е-поштенска "
 "адреса."
 
-#: RequireValidatedEmailPlugin.php:90
+#: RequireValidatedEmailPlugin.php:112
 msgid "You must provide an email address to register."
 msgstr "За да се регистрирате, ќе мора да наведете е-поштенска адреса."
 
-#: RequireValidatedEmailPlugin.php:169
-msgid ""
-"The Require Validated Email plugin disables posting for accounts that do not "
-"have a validated email address."
+#: RequireValidatedEmailPlugin.php:216
+msgid "Disables posting without a validated email address."
 msgstr ""
-"Приклучокот Require Validated Email оневозможува објави од сметки што немаат "
-"потврдено е-поштенска адреса."
+
+#~ msgid ""
+#~ "The Require Validated Email plugin disables posting for accounts that do "
+#~ "not have a validated email address."
+#~ msgstr ""
+#~ "Приклучокот Require Validated Email оневозможува објави од сметки што "
+#~ "немаат потврдено е-поштенска адреса."
diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po
index 64790f3365..c25e3297d9 100644
--- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po
+++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po
@@ -9,30 +9,33 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - RequireValidatedEmail\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:20+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:47+0000\n"
 "Language-Team: Dutch \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-requirevalidatedemail\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: RequireValidatedEmailPlugin.php:72
+#: RequireValidatedEmailPlugin.php:92
 msgid "You must validate your email address before posting."
 msgstr "U moet uw e-mailadres bevestigen voordat u berichten kunt plaatsen."
 
-#: RequireValidatedEmailPlugin.php:90
+#: RequireValidatedEmailPlugin.php:112
 msgid "You must provide an email address to register."
 msgstr "U moet een e-mailadres opgeven om te kunnen registreren."
 
-#: RequireValidatedEmailPlugin.php:169
-msgid ""
-"The Require Validated Email plugin disables posting for accounts that do not "
-"have a validated email address."
+#: RequireValidatedEmailPlugin.php:216
+msgid "Disables posting without a validated email address."
 msgstr ""
-"De plug-in Require Validated Email staat het plaatsen van berichten alleen "
-"toe voor gebruikers met een bevestigd e-mailadres."
+
+#~ msgid ""
+#~ "The Require Validated Email plugin disables posting for accounts that do "
+#~ "not have a validated email address."
+#~ msgstr ""
+#~ "De plug-in Require Validated Email staat het plaatsen van berichten "
+#~ "alleen toe voor gebruikers met een bevestigd e-mailadres."
diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po
index da63cc8b46..e42dc8f158 100644
--- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po
+++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po
@@ -9,31 +9,34 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - RequireValidatedEmail\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:20+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:47+0000\n"
 "Language-Team: Tagalog \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: tl\n"
 "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: RequireValidatedEmailPlugin.php:72
+#: RequireValidatedEmailPlugin.php:92
 msgid "You must validate your email address before posting."
 msgstr "Kailangan patunayan mo ang iyong tirahan ng e-liham bago magpaskil."
 
-#: RequireValidatedEmailPlugin.php:90
+#: RequireValidatedEmailPlugin.php:112
 msgid "You must provide an email address to register."
 msgstr "Dapat kang magbigay ng isang tirahan ng e-liham upang makapagpatala."
 
-#: RequireValidatedEmailPlugin.php:169
-msgid ""
-"The Require Validated Email plugin disables posting for accounts that do not "
-"have a validated email address."
+#: RequireValidatedEmailPlugin.php:216
+msgid "Disables posting without a validated email address."
 msgstr ""
-"Ang pamasak na Kailanganin ang Pagpapatunay ng E-liham ay hindi nagpapagana "
-"ng pagpapaskil para sa mga akawnt na walang isang napatunayan tirahan ng e-"
-"liham."
+
+#~ msgid ""
+#~ "The Require Validated Email plugin disables posting for accounts that do "
+#~ "not have a validated email address."
+#~ msgstr ""
+#~ "Ang pamasak na Kailanganin ang Pagpapatunay ng E-liham ay hindi "
+#~ "nagpapagana ng pagpapaskil para sa mga akawnt na walang isang napatunayan "
+#~ "tirahan ng e-liham."
diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po
index d1f2b85a41..b9def234fb 100644
--- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po
+++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po
@@ -9,33 +9,36 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - RequireValidatedEmail\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:20+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:47+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:36:52+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\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"
 
-#: RequireValidatedEmailPlugin.php:72
+#: RequireValidatedEmailPlugin.php:92
 msgid "You must validate your email address before posting."
 msgstr ""
 "Ви повинні підтвердити свою адресу електронної пошти до того, як почнете "
 "надсилати дописи поштою."
 
-#: RequireValidatedEmailPlugin.php:90
+#: RequireValidatedEmailPlugin.php:112
 msgid "You must provide an email address to register."
 msgstr "Ви повинні зазначити свою адресу електронної пошти для реєстрації."
 
-#: RequireValidatedEmailPlugin.php:169
-msgid ""
-"The Require Validated Email plugin disables posting for accounts that do not "
-"have a validated email address."
+#: RequireValidatedEmailPlugin.php:216
+msgid "Disables posting without a validated email address."
 msgstr ""
-"Додаток Require Validated Email унеможливлює надсилання дописів поштою для "
-"тих акаунтів, що не мають підтверджених електронних адрес."
+
+#~ msgid ""
+#~ "The Require Validated Email plugin disables posting for accounts that do "
+#~ "not have a validated email address."
+#~ msgstr ""
+#~ "Додаток Require Validated Email унеможливлює надсилання дописів поштою "
+#~ "для тих акаунтів, що не мають підтверджених електронних адрес."
diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po
new file mode 100644
index 0000000000..442157fa27
--- /dev/null
+++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po
@@ -0,0 +1,32 @@
+# Translation of StatusNet - ReverseUsernameAuthentication to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+# Expored from translatewiki.net
+#
+# Author: Nghtwlkr
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:47+0000\n"
+"Language-Team: Norwegian (bokmål)‬ \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:15+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-reverseusernameauthentication\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ReverseUsernameAuthenticationPlugin.php:67
+msgid ""
+"The Reverse Username Authentication plugin allows for StatusNet to handle "
+"authentication by checking if the provided password is the same as the "
+"reverse of the username."
+msgstr ""
+"Utvidelsen Reverse Username Authentication gjør det mulig for StatusNet å "
+"håndtere autentisering ved å sjekke om det oppgitte passordet er det samme "
+"som brukernavnet baklengs."
diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po
new file mode 100644
index 0000000000..c95c54853d
--- /dev/null
+++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po
@@ -0,0 +1,33 @@
+# Translation of StatusNet - ReverseUsernameAuthentication to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: Александр Сигачёв
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:48+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:15+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-reverseusernameauthentication\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"
+
+#: ReverseUsernameAuthenticationPlugin.php:67
+msgid ""
+"The Reverse Username Authentication plugin allows for StatusNet to handle "
+"authentication by checking if the provided password is the same as the "
+"reverse of the username."
+msgstr ""
+"Плагин аутентификации по обратному имени пользователя позволяет StatusNet "
+"проводить проверку указанного пароля на соответствие обратному написанию "
+"имени пользователя."
diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po
new file mode 100644
index 0000000000..879c547d0a
--- /dev/null
+++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po
@@ -0,0 +1,69 @@
+# Translation of StatusNet - Sample to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Sample\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:50+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-sample\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Exception thrown when the user greeting count could not be saved in the database.
+#. TRANS: %d is a user ID (number).
+#: User_greeting_count.php:164
+#, php-format
+msgid "Could not save new greeting count for %d."
+msgstr "Konnte neuen Grüßungszähler von %d nicht speichern."
+
+#. TRANS: Exception thrown when the user greeting count could not be saved in the database.
+#. TRANS: %d is a user ID (number).
+#: User_greeting_count.php:177
+#, php-format
+msgid "Could not increment greeting count for %d."
+msgstr "Konnte Grüßungszähler von %d nicht erhöhen."
+
+#: SamplePlugin.php:259 hello.php:111
+msgid "Hello"
+msgstr "Hallo"
+
+#: SamplePlugin.php:259
+msgid "A warm greeting"
+msgstr "Ein herzlicher Gruß"
+
+#: SamplePlugin.php:270
+msgid "A sample plugin to show basics of development for new hackers."
+msgstr "Ein Beispiel-Plugin, um die Entwicklungsbasis neuen Hackern zu zeigen."
+
+#: hello.php:113
+#, php-format
+msgid "Hello, %s!"
+msgstr "Hallo %s!"
+
+#: hello.php:133
+msgid "Hello, stranger!"
+msgstr "Hallo Fremder!"
+
+#: hello.php:136
+#, php-format
+msgid "Hello, %s"
+msgstr "Hallo %s"
+
+#: hello.php:138
+#, php-format
+msgid "I have greeted you %d time."
+msgid_plural "I have greeted you %d times."
+msgstr[0] "Ich habe dich einmal begrüßt. "
+msgstr[1] "Ich habe dich %d-mal begrüßt. "
diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po
new file mode 100644
index 0000000000..8d1bfaff4f
--- /dev/null
+++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po
@@ -0,0 +1,71 @@
+# Translation of StatusNet - Sample to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: Eleferen
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Sample\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:51+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:36:55+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-sample\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"
+
+#. TRANS: Exception thrown when the user greeting count could not be saved in the database.
+#. TRANS: %d is a user ID (number).
+#: User_greeting_count.php:164
+#, php-format
+msgid "Could not save new greeting count for %d."
+msgstr "Не удалось сохранить новое приветствие для %d."
+
+#. TRANS: Exception thrown when the user greeting count could not be saved in the database.
+#. TRANS: %d is a user ID (number).
+#: User_greeting_count.php:177
+#, php-format
+msgid "Could not increment greeting count for %d."
+msgstr ""
+
+#: SamplePlugin.php:259 hello.php:111
+msgid "Hello"
+msgstr "Привет"
+
+#: SamplePlugin.php:259
+msgid "A warm greeting"
+msgstr ""
+
+#: SamplePlugin.php:270
+msgid "A sample plugin to show basics of development for new hackers."
+msgstr ""
+
+#: hello.php:113
+#, php-format
+msgid "Hello, %s!"
+msgstr "Здравствуйте, %s!"
+
+#: hello.php:133
+msgid "Hello, stranger!"
+msgstr "Привет, незнакомец!"
+
+#: hello.php:136
+#, php-format
+msgid "Hello, %s"
+msgstr ""
+
+#: hello.php:138
+#, php-format
+msgid "I have greeted you %d time."
+msgid_plural "I have greeted you %d times."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po
new file mode 100644
index 0000000000..c759e8068a
--- /dev/null
+++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po
@@ -0,0 +1,55 @@
+# Translation of StatusNet - ShareNotice to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - ShareNotice\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:51+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:17+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-sharenotice\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Leave this message unchanged.
+#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform.
+#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194
+#, php-format
+msgid "\"%s\""
+msgstr ""
+
+#. TRANS: Tooltip for image to share a notice on Twitter.
+#: ShareNoticePlugin.php:130
+msgid "Share on Twitter"
+msgstr "Auf Twitter teilen"
+
+#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook).
+#. TRANS: %s is a host name.
+#: ShareNoticePlugin.php:163
+#, php-format
+msgid "Share on %s"
+msgstr "Auf %s teilen"
+
+#. TRANS: Tooltip for image to share a notice on Facebook.
+#: ShareNoticePlugin.php:186
+msgid "Share on Facebook"
+msgstr "Auf Facebook teilen"
+
+#. TRANS: Plugin description.
+#: ShareNoticePlugin.php:219
+msgid ""
+"This plugin allows sharing of notices to Twitter, Facebook and other "
+"platforms."
+msgstr ""
+"Dieses Plugin erlaubt das Teilen von Nachrichten auf Twitter, Facebook und "
+"anderen Plattformen."
diff --git a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po
new file mode 100644
index 0000000000..673a353409
--- /dev/null
+++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po
@@ -0,0 +1,28 @@
+# Translation of StatusNet - SimpleUrl to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - SimpleUrl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:52+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-simpleurl\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: SimpleUrlPlugin.php:58
+#, php-format
+msgid "Uses %1$s URL-shortener service."
+msgstr ""
+"Ober a ra gant ar servij krennañ URL %1$s."
diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po
new file mode 100644
index 0000000000..07eb5a18b7
--- /dev/null
+++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po
@@ -0,0 +1,27 @@
+# Translation of StatusNet - SimpleUrl to Portuguese (Português)
+# Expored from translatewiki.net
+#
+# Author: Hamilton Abreu
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - SimpleUrl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:53+0000\n"
+"Language-Team: Portuguese \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-simpleurl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: SimpleUrlPlugin.php:58
+#, php-format
+msgid "Uses %1$s URL-shortener service."
+msgstr "Usa o serviço de abreviação de URLs %1$s."
diff --git a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po
new file mode 100644
index 0000000000..787f831bb8
--- /dev/null
+++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po
@@ -0,0 +1,91 @@
+# Translation of StatusNet - Sitemap to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Sitemap\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:54+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:20+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-sitemap\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. TRANS: Title for sitemap.
+#: sitemapadminpanel.php:53
+msgid "Sitemap"
+msgstr ""
+
+#. TRANS: Instructions for sitemap.
+#: sitemapadminpanel.php:64
+msgid "Sitemap settings for this StatusNet site"
+msgstr ""
+
+#. TRANS: Field label.
+#: sitemapadminpanel.php:167
+msgid "Google key"
+msgstr "Alc'hwez Google"
+
+#. TRANS: Title for field label.
+#: sitemapadminpanel.php:169
+msgid "Google Webmaster Tools verification key."
+msgstr ""
+
+#. TRANS: Field label.
+#: sitemapadminpanel.php:175
+msgid "Yahoo key"
+msgstr "Alc'hwez Yahoo"
+
+#. TRANS: Title for field label.
+#: sitemapadminpanel.php:177
+msgid "Yahoo! Site Explorer verification key."
+msgstr ""
+
+#. TRANS: Field label.
+#: sitemapadminpanel.php:183
+msgid "Bing key"
+msgstr ""
+
+#. TRANS: Title for field label.
+#: sitemapadminpanel.php:185
+msgid "Bing Webmaster Tools verification key."
+msgstr ""
+
+#. TRANS: Submit button text to save sitemap settings.
+#: sitemapadminpanel.php:200
+msgctxt "BUTTON"
+msgid "Save"
+msgstr "Enrollañ"
+
+#. TRANS: Submit button title to save sitemap settings.
+#: sitemapadminpanel.php:204
+msgid "Save sitemap settings."
+msgstr "Enrollañ arventennoù tres al lec'hienn"
+
+#. TRANS: Menu item title/tooltip
+#: SitemapPlugin.php:211
+msgid "Sitemap configuration"
+msgstr "Kefluniadur tres al lec'hienn"
+
+#. TRANS: Menu item for site administration
+#: SitemapPlugin.php:213
+msgctxt "MENU"
+msgid "Sitemap"
+msgstr "Tres al lec'hienn"
+
+#. TRANS: Plugin description.
+#: SitemapPlugin.php:238
+msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google."
+msgstr ""
+"Gant an astenn-mañ e c'haller sevel tresoù lec'hiennoù evit Bing, Yahoo! ha "
+"Google."
diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po
new file mode 100644
index 0000000000..300222087c
--- /dev/null
+++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po
@@ -0,0 +1,90 @@
+# Translation of StatusNet - Sitemap to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: MaxSem
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Sitemap\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:55+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:20+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-sitemap\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"
+
+#. TRANS: Title for sitemap.
+#: sitemapadminpanel.php:53
+msgid "Sitemap"
+msgstr "Карта сайта"
+
+#. TRANS: Instructions for sitemap.
+#: sitemapadminpanel.php:64
+msgid "Sitemap settings for this StatusNet site"
+msgstr "Настройки карты этого сайта на движке StatusNet"
+
+#. TRANS: Field label.
+#: sitemapadminpanel.php:167
+msgid "Google key"
+msgstr "Ключ Google"
+
+#. TRANS: Title for field label.
+#: sitemapadminpanel.php:169
+msgid "Google Webmaster Tools verification key."
+msgstr "Ключ для подтверждения в инструментах вебмастера Google."
+
+#. TRANS: Field label.
+#: sitemapadminpanel.php:175
+msgid "Yahoo key"
+msgstr "Ключ Yahoo"
+
+#. TRANS: Title for field label.
+#: sitemapadminpanel.php:177
+msgid "Yahoo! Site Explorer verification key."
+msgstr "Ключ для подтверждения в Yahoo! Site Explorer."
+
+#. TRANS: Field label.
+#: sitemapadminpanel.php:183
+msgid "Bing key"
+msgstr "Ключ Bing"
+
+#. TRANS: Title for field label.
+#: sitemapadminpanel.php:185
+msgid "Bing Webmaster Tools verification key."
+msgstr "Ключ для подтверждения в инструментах вебмастера Bing."
+
+#. TRANS: Submit button text to save sitemap settings.
+#: sitemapadminpanel.php:200
+msgctxt "BUTTON"
+msgid "Save"
+msgstr "Сохранить"
+
+#. TRANS: Submit button title to save sitemap settings.
+#: sitemapadminpanel.php:204
+msgid "Save sitemap settings."
+msgstr "Сохранить настройки карты сайта."
+
+#. TRANS: Menu item title/tooltip
+#: SitemapPlugin.php:211
+msgid "Sitemap configuration"
+msgstr "Настройки карты сайта"
+
+#. TRANS: Menu item for site administration
+#: SitemapPlugin.php:213
+msgctxt "MENU"
+msgid "Sitemap"
+msgstr "Карта сайта"
+
+#. TRANS: Plugin description.
+#: SitemapPlugin.php:238
+msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google."
+msgstr "Этот плагин позволяет создавать карты сайта для Bing, Yahoo! и Google."
diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po
new file mode 100644
index 0000000000..6541ab1691
--- /dev/null
+++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po
@@ -0,0 +1,38 @@
+# Translation of StatusNet - SphinxSearch to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: MaxSem
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - SphinxSearch\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:56+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:22+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-sphinxsearch\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"
+
+#. TRANS: Server exception.
+#: SphinxSearchPlugin.php:87
+msgid "Sphinx PHP extension must be installed."
+msgstr "Необходимо установить расширение Sphinx для PHP."
+
+#. TRANS: Plugin description.
+#: SphinxSearchPlugin.php:118
+msgid "Plugin for Sphinx search backend."
+msgstr "Плагин для поискового движка Sphinx."
+
+#. TRANS: Server exception thrown when a database name cannot be identified.
+#: sphinxsearch.php:96
+msgid "Sphinx search could not identify database name."
+msgstr "Поиск Sphinx не смог определить название базы данных."
diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po
new file mode 100644
index 0000000000..809dd6ae6c
--- /dev/null
+++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - SubscriptionThrottle to German (Deutsch)
+# Expored from translatewiki.net
+#
+# Author: The Evil IP address
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - SubscriptionThrottle\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:43:58+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:37:25+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-subscriptionthrottle\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: SubscriptionThrottlePlugin.php:171
+msgid "Configurable limits for subscriptions and group memberships."
+msgstr "Konfigurierbare Limits für Abonnements und Gruppenmitgliedschaften."
diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po
new file mode 100644
index 0000000000..b0a47ed161
--- /dev/null
+++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po
@@ -0,0 +1,28 @@
+# Translation of StatusNet - TinyMCE to Esperanto (Esperanto)
+# Expored from translatewiki.net
+#
+# Author: Eliovir
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - TinyMCE\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:00+0000\n"
+"Language-Team: Esperanto \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:40:12+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-tinymce\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: TinyMCEPlugin.php:83
+msgid "Use TinyMCE library to allow rich text editing in the browser."
+msgstr ""
+"Uzas la bibliotekon TinyMCE por ebligi redakton de riĉigita teksto en la "
+"retumilo."
diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po
index 5f32404fbc..454e43e072 100644
--- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po
+++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po
@@ -1,6 +1,7 @@
 # Translation of StatusNet - TwitterBridge to French (Français)
 # Expored from translatewiki.net
 #
+# Author: Peter17
 # Author: Verdy p
 # --
 # This file is distributed under the same license as the StatusNet package.
@@ -9,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - TwitterBridge\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:32+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:07+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:40:56+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
@@ -388,7 +389,7 @@ msgstr "Soumission de formulaire inattendue."
 
 #: twittersettings.php:251
 msgid "No Twitter connection to remove."
-msgstr ""
+msgstr "Aucune connexion Twitter à retirer."
 
 #: twittersettings.php:259
 msgid "Couldn't remove Twitter user."
diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po
index 88f0db7806..a752daae79 100644
--- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po
+++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - TwitterBridge\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:32+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:07+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:40:56+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
@@ -378,7 +378,7 @@ msgstr "Submission de formulario inexpectate."
 
 #: twittersettings.php:251
 msgid "No Twitter connection to remove."
-msgstr ""
+msgstr "Nulle connexion Twitter a remover."
 
 #: twittersettings.php:259
 msgid "Couldn't remove Twitter user."
diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po
index 1bd63616de..be57e0cb3a 100644
--- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po
+++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - TwitterBridge\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:32+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:07+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:40:56+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
@@ -381,7 +381,7 @@ msgstr "Неочекувано поднесување на образец."
 
 #: twittersettings.php:251
 msgid "No Twitter connection to remove."
-msgstr ""
+msgstr "Нема врска со Twitter за отстранување."
 
 #: twittersettings.php:259
 msgid "Couldn't remove Twitter user."
diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po
index ef66b5a9c7..b02ee31aab 100644
--- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po
+++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - TwitterBridge\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:32+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:07+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-03 20:57:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:40:56+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-twitterbridge\n"
@@ -388,7 +388,7 @@ msgstr "Het formulier is onverwacht ingezonden."
 
 #: twittersettings.php:251
 msgid "No Twitter connection to remove."
-msgstr ""
+msgstr "Er is geen Twitterkoppeling om te verwijderen."
 
 #: twittersettings.php:259
 msgid "Couldn't remove Twitter user."
diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po
index 228960ff6c..c907b9bec6 100644
--- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po
+++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - TwitterBridge\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:33+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:07+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:34+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:40:56+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
@@ -384,7 +384,7 @@ msgstr "Несподіване представлення форми."
 
 #: twittersettings.php:251
 msgid "No Twitter connection to remove."
-msgstr ""
+msgstr "Не виявлено з’єднань з Twitter для видалення."
 
 #: twittersettings.php:259
 msgid "Couldn't remove Twitter user."
diff --git a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po
new file mode 100644
index 0000000000..5395134f35
--- /dev/null
+++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - UserLimit to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - UserLimit\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:09+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:40:24+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-userlimit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: UserLimitPlugin.php:89
+msgid "Limit the number of users who can register."
+msgstr "Bevenniñ an niver a implijerien a c'hall en em enskrivañ"
diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po
new file mode 100644
index 0000000000..91dff4f218
--- /dev/null
+++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - UserLimit to Luxembourgish (Lëtzebuergesch)
+# Expored from translatewiki.net
+#
+# Author: Robby
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - UserLimit\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:09+0000\n"
+"Language-Team: Luxembourgish \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:40:24+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: lb\n"
+"X-Message-Group: #out-statusnet-plugin-userlimit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: UserLimitPlugin.php:89
+msgid "Limit the number of users who can register."
+msgstr "D'Zuel vun de Benotzer, déi sech registréiere kënnen, limitéieren."
diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po
new file mode 100644
index 0000000000..ac859ab5b4
--- /dev/null
+++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - UserLimit to Portuguese (Português)
+# Expored from translatewiki.net
+#
+# Author: Hamilton Abreu
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - UserLimit\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:09+0000\n"
+"Language-Team: Portuguese \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:40:24+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-userlimit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: UserLimitPlugin.php:89
+msgid "Limit the number of users who can register."
+msgstr "Limitar o número de utilizadores que se podem registar."
diff --git a/plugins/WikiHashtags/locale/br/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/br/LC_MESSAGES/WikiHashtags.po
new file mode 100644
index 0000000000..7d77e5a9c6
--- /dev/null
+++ b/plugins/WikiHashtags/locale/br/LC_MESSAGES/WikiHashtags.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - WikiHashtags to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - WikiHashtags\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:10+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:41:14+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-wikihashtags\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: WikiHashtagsPlugin.php:110
+msgid ""
+"Gets hashtag descriptions from WikiHashtags."
+msgstr ""
+"Tapout a ra deskrivadurioù hashtag adalek WikiHashtags."
diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot
index 94e2b83146..523791246a 100644
--- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot
+++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -27,7 +27,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr ""
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr ""
diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po
index f6df675c8f..5fec9fffb4 100644
--- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po
+++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - WikiHowProfile\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:11+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n"
@@ -34,7 +34,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "Adresse URL d’avatar « %s » invalide."
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Impossible de récupérer l’avatar depuis « %s »."
diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po
index 3ca5438b19..14cb1ee83b 100644
--- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po
+++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - WikiHowProfile\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:11+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n"
@@ -34,7 +34,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "URL de avatar %s invalide."
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Incapace de obtener avatar ab %s."
diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po
index 7f43004cb2..976ace13eb 100644
--- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po
+++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - WikiHowProfile\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:11+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n"
@@ -34,7 +34,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "Неважечка URL-адреса на аватарот: %s."
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Не можев да го преземам аватарот од %s."
diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po
index e8e4374166..48871632f0 100644
--- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po
+++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - WikiHowProfile\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:13+0000\n"
 "Language-Team: Dutch \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-wikihowprofile\n"
@@ -34,7 +34,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "Ongeldige avatar-URL %s."
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Het was niet mogelijk om de avatar op te halen van %s."
diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po
index bf3861a9e7..f9234c49bc 100644
--- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po
+++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - WikiHowProfile\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:13+0000\n"
 "Language-Team: Russian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-wikihowprofile\n"
@@ -35,7 +35,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "Неверный URL-адрес аватары %s"
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Не удаётся получить аватару из %s."
diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po
index ed6d70a8c4..005a8f906d 100644
--- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po
+++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - WikiHowProfile\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:15+0000\n"
 "Language-Team: Tagalog \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: tl\n"
 "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n"
@@ -34,7 +34,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "Hindi tanggap na URL ng abatar ang %s."
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Hindi nagawang damputin ang abatar mula sa %s."
diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po
index 5b4df1d675..6b59abaf71 100644
--- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po
+++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - WikiHowProfile\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:15+0000\n"
 "Language-Team: Turkish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-wikihowprofile\n"
@@ -34,7 +34,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "Geçersiz kullanıcı resmi bağlantısı %s."
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "%s'ten kullanıcı resmi alınamıyor."
diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po
index 53944d0c40..0eb738a78e 100644
--- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po
+++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - WikiHowProfile\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:36+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:15+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:09+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n"
@@ -35,7 +35,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "Невірна URL-адреса аватари %s."
 
-#: WikiHowProfilePlugin.php:178
+#: WikiHowProfilePlugin.php:179
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Неможливо завантажити аватару з %s."
diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po
new file mode 100644
index 0000000000..f569094c03
--- /dev/null
+++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po
@@ -0,0 +1,31 @@
+# Translation of StatusNet - XCache to Brazilian Portuguese (Português do Brasil)
+# Expored from translatewiki.net
+#
+# Author: Giro720
+# --
+# 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-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:15+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-09 14:41:17+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-xcache\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: XCachePlugin.php:120
+msgid ""
+"Use the XCache variable cache to "
+"cache query results."
+msgstr ""
+"Utilizar o cache variável XCache "
+"para guardar os resultados de consultas."
diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot
index 7dd976069b..0df7cfcae9 100644
--- a/plugins/YammerImport/locale/YammerImport.pot
+++ b/plugins/YammerImport/locale/YammerImport.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -51,7 +51,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr ""
 
-#: lib/yammerimporter.php:440
+#: lib/yammerimporter.php:441
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr ""
diff --git a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po
new file mode 100644
index 0000000000..154afaf4ec
--- /dev/null
+++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po
@@ -0,0 +1,281 @@
+# Translation of StatusNet - YammerImport to Breton (Brezhoneg)
+# Expored from translatewiki.net
+#
+# Author: Fulup
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - YammerImport\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:19+0000\n"
+"Language-Team: Breton \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: br\n"
+"X-Message-Group: #out-statusnet-plugin-yammerimport\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: YammerImportPlugin.php:98
+msgid "Yammer"
+msgstr ""
+
+#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135
+msgid "Yammer import"
+msgstr ""
+
+#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56
+#: lib/yammerprogressform.php:68 actions/yammerauth.php:71
+msgid "Connect to Yammer"
+msgstr ""
+
+#: lib/yammerauthinitform.php:62
+msgid "Start authentication"
+msgstr ""
+
+#: lib/yammerauthinitform.php:62
+msgid "Request authorization to connect to Yammer account"
+msgstr ""
+
+#: lib/yammerauthinitform.php:63
+msgid "Change API key"
+msgstr ""
+
+#: lib/yammerimporter.php:230
+msgid "Expertise:"
+msgstr ""
+
+#: lib/yammerimporter.php:433
+#, php-format
+msgid "Invalid avatar URL %s."
+msgstr "Direizh eo URL an avatar %s."
+
+#: lib/yammerimporter.php:441
+#, php-format
+msgid "Unable to fetch avatar from %s."
+msgstr "Dibosupl eo adtapout an avatar adalek %s."
+
+#: lib/yammerapikeyform.php:56
+msgid "Yammer API registration"
+msgstr "Enrolladenn an API Yammer"
+
+#: lib/yammerapikeyform.php:72
+msgid ""
+"Before we can connect to your Yammer network, you will need to register the "
+"importer as an application authorized to pull data on your behalf. This "
+"registration will work only for your own network. Follow this link to "
+"register the app at Yammer; you will be prompted to log in if necessary:"
+msgstr ""
+"Kent gallout kevreañ ouzh ho rouedad Yammer e rankit enrollañ an arload "
+"enporzhiañ evel un arload aotreet da zastum roadennoù en hoc'h anv. Ne "
+"dalvezo an enrolladenn-se nemet evit ho rouedad deoc'h. Heuilhit al liamm-"
+"mañ evit enrollañ an arload war Yammer ; mar bez ret e vo goulennet ouzhoc'h "
+"kevreañ."
+
+#: lib/yammerapikeyform.php:84
+msgid "Open Yammer application registration form"
+msgstr "Digeriñ furmskrid enrollañ Yammer"
+
+#: lib/yammerapikeyform.php:87
+msgid "Copy the consumer key and secret you are given into the form below:"
+msgstr ""
+"Eilit er furmskrid a-is an alc'hwez hag ar sekred implijer bet roet deoc'h :"
+
+#: lib/yammerapikeyform.php:91
+msgid "Consumer key:"
+msgstr "Alc'hwez implijer :"
+
+#: lib/yammerapikeyform.php:94
+msgid "Consumer secret:"
+msgstr "Sekred an implijer :"
+
+#: lib/yammerapikeyform.php:98
+msgid "Save"
+msgstr "Enrollañ"
+
+#: lib/yammerapikeyform.php:98
+msgid "Save these consumer keys"
+msgstr "Enrollañ an alc'hwezioù implijer-mañ"
+
+#: lib/yammerauthverifyform.php:72
+msgid ""
+"Follow this link to confirm authorization at Yammer; you will be prompted to "
+"log in if necessary:"
+msgstr ""
+"Heuliañ al liamm-mañ da gadarnaat an aotre war Yammer ; mar bez ret e vo "
+"goulennet ouzhoc'h kevreañ :"
+
+#: lib/yammerauthverifyform.php:87
+msgid "Open Yammer authentication window"
+msgstr "Digeriñ prenestr emzisklêriañ Yammer"
+
+#: lib/yammerauthverifyform.php:90
+msgid "Copy the verification code you are given below:"
+msgstr "Eilit a-is ar c'hod gwiriañ bet roet deoc'h :"
+
+#: lib/yammerauthverifyform.php:94
+msgid "Verification code:"
+msgstr "Kod gwiriañ :"
+
+#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164
+msgid "Continue"
+msgstr "Kenderc'hel"
+
+#: lib/yammerauthverifyform.php:98
+msgid "Save code and begin import"
+msgstr "Enrollañ ar c'hod ha kregiñ da enporzhiañ"
+
+#: lib/yammerprogressform.php:63
+msgid "Initialize"
+msgstr "Deraouekaat"
+
+#: lib/yammerprogressform.php:64
+msgid "No import running"
+msgstr "Enporzhiadenn ebet o treiñ"
+
+#: lib/yammerprogressform.php:65
+msgid "Initiated Yammer server connection..."
+msgstr "Loc'het ar gevreadenn d'ar servijer Yammer"
+
+#: lib/yammerprogressform.php:69
+msgid "Awaiting authorization..."
+msgstr "O c'hortoz an aotre..."
+
+#: lib/yammerprogressform.php:70
+msgid "Connected."
+msgstr "Kevreet."
+
+#: lib/yammerprogressform.php:73
+msgid "Import user accounts"
+msgstr "Enporzhiañ ar c'hontoù implijer"
+
+#: lib/yammerprogressform.php:74
+#, php-format
+msgid "Importing %d user..."
+msgid_plural "Importing %d users..."
+msgstr[0] "Oc'h enporzhiañ %d implijer..."
+msgstr[1] "Oc'h enporzhiañ %d implijer..."
+
+#: lib/yammerprogressform.php:75
+#, php-format
+msgid "Imported %d user."
+msgid_plural "Imported %d users."
+msgstr[0] "Enporzhiet %d implijer."
+msgstr[1] "Enporzhiet %d implijer."
+
+#: lib/yammerprogressform.php:78
+msgid "Import user groups"
+msgstr "Enporzhiañ strolladoù implijer"
+
+#: lib/yammerprogressform.php:79
+#, php-format
+msgid "Importing %d group..."
+msgid_plural "Importing %d groups..."
+msgstr[0] "Oc'h enporzhiañ %d strollad..."
+msgstr[1] "Oc'h enporzhiañ %d strollad..."
+
+#: lib/yammerprogressform.php:80
+#, php-format
+msgid "Imported %d group."
+msgid_plural "Imported %d groups."
+msgstr[0] "Enporzhiet %d strollad..."
+msgstr[1] "Enporzhiet %d strollad..."
+
+#: lib/yammerprogressform.php:83
+msgid "Prepare public notices for import"
+msgstr "O prientiñ enporzh ar c'hemennoù foran"
+
+#: lib/yammerprogressform.php:84
+#, php-format
+msgid "Preparing %d notice..."
+msgid_plural "Preparing %d notices..."
+msgstr[0] "O prientiñ %d kemenn..."
+msgstr[1] "O prientiñ %d kemenn..."
+
+#: lib/yammerprogressform.php:85
+#, php-format
+msgid "Prepared %d notice."
+msgid_plural "Prepared %d notices."
+msgstr[0] "Prientet %d kemenn."
+msgstr[1] "Prientet %d kemenn."
+
+#: lib/yammerprogressform.php:88
+msgid "Import public notices"
+msgstr "Enporzh kemennoù foran"
+
+#: lib/yammerprogressform.php:89
+#, php-format
+msgid "Importing %d notice..."
+msgid_plural "Importing %d notices..."
+msgstr[0] "Oc'h enporzhiañ %d kemenn..."
+msgstr[1] "Oc'h enporzhiañ %d kemenn..."
+
+#: lib/yammerprogressform.php:90
+#, php-format
+msgid "Imported %d notice."
+msgid_plural "Imported %d notices."
+msgstr[0] "Enporzhiet %d kemenn."
+msgstr[1] "Enporzhiet %d kemenn."
+
+#: lib/yammerprogressform.php:93
+msgid "Done"
+msgstr "Graet"
+
+#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95
+msgid "Import is complete!"
+msgstr "Enporzh kaset da benn vat !"
+
+#: lib/yammerprogressform.php:108
+msgid "Import status"
+msgstr "Stad an enporzh"
+
+#: lib/yammerprogressform.php:132
+msgid "Waiting..."
+msgstr "O c'hortoz..."
+
+#: lib/yammerprogressform.php:146
+msgid "Reset import state"
+msgstr "Adderaouekaat stad an enporzh"
+
+#: lib/yammerprogressform.php:151
+msgid "Pause import"
+msgstr "Ober un tamm ehan gant an enporzh"
+
+#: lib/yammerprogressform.php:160
+#, php-format
+msgid "Encountered error \"%s\""
+msgstr "C'hoarvezet eo ar fazi \"%s\""
+
+#: lib/yammerprogressform.php:162
+msgid "Paused"
+msgstr "Ehanet"
+
+#: lib/yammerprogressform.php:165
+msgid "Abort import"
+msgstr "Nullañ an enporzh"
+
+#: actions/yammeradminpanel.php:45
+msgid "Yammer Import"
+msgstr "Enporzh Yammer"
+
+#: actions/yammeradminpanel.php:55
+msgid ""
+"This Yammer import tool is still undergoing testing, and is incomplete in "
+"some areas. Currently user subscriptions and group memberships are not "
+"transferred; in the future this may be supported for imports done by "
+"verified administrators on the Yammer side."
+msgstr ""
+"Emeur c'hoazh oc'h arnodiñ an ostilh enporzhiañ Yammer-mañ. Diglok eo "
+"c'hoazh evit lodennoù zo. N'eo ket bet treuzkaset ar c'houmanantoù implijer "
+"hag an enrolladnenoù er strolladoù evit c'hoazh ; Kemeret e kont e c'hallfe "
+"bezañ en amzer da zont evit an enporzhiadennoù sevenet gant ar verourien "
+"aotreet eus tu YAMMER."
+
+#: actions/yammeradminpanel.php:102
+msgid "Paused from admin panel."
+msgstr "Ehanet adalek ar banell verañ."
diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po
index cc8c92b503..8fb2a065d8 100644
--- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po
+++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - YammerImport\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-09 14:04+0000\n"
-"PO-Revision-Date: 2010-10-09 14:08:43+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:19+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-04 23:11:54+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: fr\n"
 "X-Message-Group: #out-statusnet-plugin-yammerimport\n"
@@ -55,7 +55,7 @@ msgstr "Expertise :"
 msgid "Invalid avatar URL %s."
 msgstr "URL d’avatar invalide : %s."
 
-#: lib/yammerimporter.php:440
+#: lib/yammerimporter.php:441
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Impossible de récupérer l’avatar depuis « %s »."
diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po
index 225b6b70a6..8cee2a3684 100644
--- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po
+++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - YammerImport\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-04 22:30+0000\n"
-"PO-Revision-Date: 2010-10-04 22:34:08+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:19+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: ia\n"
 "X-Message-Group: #out-statusnet-plugin-yammerimport\n"
@@ -55,7 +55,7 @@ msgstr "Expertise:"
 msgid "Invalid avatar URL %s."
 msgstr "URL de avatar %s invalide."
 
-#: lib/yammerimporter.php:440
+#: lib/yammerimporter.php:441
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Incapace de obtener avatar ab %s."
diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po
index db906ea828..b9dd51ea2b 100644
--- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po
+++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - YammerImport\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:40+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:19+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: mk\n"
 "X-Message-Group: #out-statusnet-plugin-yammerimport\n"
@@ -55,7 +55,7 @@ msgstr "Стручност:"
 msgid "Invalid avatar URL %s."
 msgstr "Неважечка URL-адреса на аватарот: %s."
 
-#: lib/yammerimporter.php:440
+#: lib/yammerimporter.php:441
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Не можев да го преземам аватарот од %s."
@@ -241,11 +241,11 @@ msgstr "Чекам..."
 
 #: lib/yammerprogressform.php:146
 msgid "Reset import state"
-msgstr ""
+msgstr "Врати основна состојба на увозот"
 
 #: lib/yammerprogressform.php:151
 msgid "Pause import"
-msgstr ""
+msgstr "Паузирај увоз"
 
 #: lib/yammerprogressform.php:160
 #, php-format
@@ -258,7 +258,7 @@ msgstr "Паузирано"
 
 #: lib/yammerprogressform.php:165
 msgid "Abort import"
-msgstr ""
+msgstr "Прекини увоз"
 
 #: actions/yammeradminpanel.php:45
 msgid "Yammer Import"
diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po
index 1d849fb6bc..905c032b73 100644
--- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po
+++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po
@@ -10,13 +10,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - YammerImport\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:40+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:19+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-01 20:39:57+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-yammerimport\n"
@@ -56,7 +56,7 @@ msgstr "Expertise:"
 msgid "Invalid avatar URL %s."
 msgstr "%s is een ongeldige URL voor avatar."
 
-#: lib/yammerimporter.php:440
+#: lib/yammerimporter.php:441
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Het was niet mogelijk de avatar op te halen van %s."
diff --git a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po
new file mode 100644
index 0000000000..ee0f87ce24
--- /dev/null
+++ b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po
@@ -0,0 +1,277 @@
+# Translation of StatusNet - YammerImport to Russian (Русский)
+# Expored from translatewiki.net
+#
+# Author: Eleferen
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - YammerImport\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:19+0000\n"
+"Language-Team: Russian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-yammerimport\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"
+
+#: YammerImportPlugin.php:98
+msgid "Yammer"
+msgstr ""
+
+#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135
+msgid "Yammer import"
+msgstr ""
+
+#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56
+#: lib/yammerprogressform.php:68 actions/yammerauth.php:71
+msgid "Connect to Yammer"
+msgstr ""
+
+#: lib/yammerauthinitform.php:62
+msgid "Start authentication"
+msgstr "Начало проверки подлинности"
+
+#: lib/yammerauthinitform.php:62
+msgid "Request authorization to connect to Yammer account"
+msgstr ""
+
+#: lib/yammerauthinitform.php:63
+msgid "Change API key"
+msgstr ""
+
+#: lib/yammerimporter.php:230
+msgid "Expertise:"
+msgstr ""
+
+#: lib/yammerimporter.php:433
+#, php-format
+msgid "Invalid avatar URL %s."
+msgstr ""
+
+#: lib/yammerimporter.php:441
+#, php-format
+msgid "Unable to fetch avatar from %s."
+msgstr ""
+
+#: lib/yammerapikeyform.php:56
+msgid "Yammer API registration"
+msgstr ""
+
+#: lib/yammerapikeyform.php:72
+msgid ""
+"Before we can connect to your Yammer network, you will need to register the "
+"importer as an application authorized to pull data on your behalf. This "
+"registration will work only for your own network. Follow this link to "
+"register the app at Yammer; you will be prompted to log in if necessary:"
+msgstr ""
+
+#: lib/yammerapikeyform.php:84
+msgid "Open Yammer application registration form"
+msgstr ""
+
+#: lib/yammerapikeyform.php:87
+msgid "Copy the consumer key and secret you are given into the form below:"
+msgstr ""
+
+#: lib/yammerapikeyform.php:91
+msgid "Consumer key:"
+msgstr ""
+
+#: lib/yammerapikeyform.php:94
+msgid "Consumer secret:"
+msgstr ""
+
+#: lib/yammerapikeyform.php:98
+msgid "Save"
+msgstr "Сохранить"
+
+#: lib/yammerapikeyform.php:98
+msgid "Save these consumer keys"
+msgstr ""
+
+#: lib/yammerauthverifyform.php:72
+msgid ""
+"Follow this link to confirm authorization at Yammer; you will be prompted to "
+"log in if necessary:"
+msgstr ""
+
+#: lib/yammerauthverifyform.php:87
+msgid "Open Yammer authentication window"
+msgstr ""
+
+#: lib/yammerauthverifyform.php:90
+msgid "Copy the verification code you are given below:"
+msgstr ""
+
+#: lib/yammerauthverifyform.php:94
+msgid "Verification code:"
+msgstr "Код подтверждения:"
+
+#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164
+msgid "Continue"
+msgstr "Продолжить"
+
+#: lib/yammerauthverifyform.php:98
+msgid "Save code and begin import"
+msgstr "Сохранить код и начать импорт"
+
+#: lib/yammerprogressform.php:63
+msgid "Initialize"
+msgstr "Инициализация"
+
+#: lib/yammerprogressform.php:64
+msgid "No import running"
+msgstr "Импорт не запущен"
+
+#: lib/yammerprogressform.php:65
+msgid "Initiated Yammer server connection..."
+msgstr ""
+
+#: lib/yammerprogressform.php:69
+msgid "Awaiting authorization..."
+msgstr "Ожидание авторизации…"
+
+#: lib/yammerprogressform.php:70
+msgid "Connected."
+msgstr "Подсоединено."
+
+#: lib/yammerprogressform.php:73
+msgid "Import user accounts"
+msgstr "Импорт учётных записей пользователей"
+
+#: lib/yammerprogressform.php:74
+#, php-format
+msgid "Importing %d user..."
+msgid_plural "Importing %d users..."
+msgstr[0] "Импорт %d пользователя…"
+msgstr[1] "Импорт %d пользователей…"
+msgstr[2] ""
+
+#: lib/yammerprogressform.php:75
+#, php-format
+msgid "Imported %d user."
+msgid_plural "Imported %d users."
+msgstr[0] "Импортирован %d пользователь."
+msgstr[1] "Импортировано %d пользователя."
+msgstr[2] "Импортировано %d пользователей."
+
+#: lib/yammerprogressform.php:78
+msgid "Import user groups"
+msgstr "Импорт групп пользователей"
+
+#: lib/yammerprogressform.php:79
+#, php-format
+msgid "Importing %d group..."
+msgid_plural "Importing %d groups..."
+msgstr[0] "Импорт %d группы…"
+msgstr[1] "Импорт %d группы…"
+msgstr[2] ""
+
+#: lib/yammerprogressform.php:80
+#, php-format
+msgid "Imported %d group."
+msgid_plural "Imported %d groups."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: lib/yammerprogressform.php:83
+msgid "Prepare public notices for import"
+msgstr ""
+
+#: lib/yammerprogressform.php:84
+#, php-format
+msgid "Preparing %d notice..."
+msgid_plural "Preparing %d notices..."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: lib/yammerprogressform.php:85
+#, php-format
+msgid "Prepared %d notice."
+msgid_plural "Prepared %d notices."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: lib/yammerprogressform.php:88
+msgid "Import public notices"
+msgstr ""
+
+#: lib/yammerprogressform.php:89
+#, php-format
+msgid "Importing %d notice..."
+msgid_plural "Importing %d notices..."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: lib/yammerprogressform.php:90
+#, php-format
+msgid "Imported %d notice."
+msgid_plural "Imported %d notices."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: lib/yammerprogressform.php:93
+msgid "Done"
+msgstr "Готово"
+
+#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95
+msgid "Import is complete!"
+msgstr "Импорт завершён!"
+
+#: lib/yammerprogressform.php:108
+msgid "Import status"
+msgstr "Статус процесса импорта"
+
+#: lib/yammerprogressform.php:132
+msgid "Waiting..."
+msgstr "Ожидание…"
+
+#: lib/yammerprogressform.php:146
+msgid "Reset import state"
+msgstr ""
+
+#: lib/yammerprogressform.php:151
+msgid "Pause import"
+msgstr "Приостановить импорт"
+
+#: lib/yammerprogressform.php:160
+#, php-format
+msgid "Encountered error \"%s\""
+msgstr "Обнаружена ошибка «%s»"
+
+#: lib/yammerprogressform.php:162
+msgid "Paused"
+msgstr "Приостановлено"
+
+#: lib/yammerprogressform.php:165
+msgid "Abort import"
+msgstr "Прервать импорт"
+
+#: actions/yammeradminpanel.php:45
+msgid "Yammer Import"
+msgstr ""
+
+#: actions/yammeradminpanel.php:55
+msgid ""
+"This Yammer import tool is still undergoing testing, and is incomplete in "
+"some areas. Currently user subscriptions and group memberships are not "
+"transferred; in the future this may be supported for imports done by "
+"verified administrators on the Yammer side."
+msgstr ""
+
+#: actions/yammeradminpanel.php:102
+msgid "Paused from admin panel."
+msgstr ""
diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po
index f61add2f82..3bfefd7822 100644
--- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po
+++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - YammerImport\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-03 19:53+0000\n"
-"PO-Revision-Date: 2010-10-03 19:57:40+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:19+0000\n"
 "Language-Team: Turkish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); 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-plugin-yammerimport\n"
@@ -55,7 +55,7 @@ msgstr ""
 msgid "Invalid avatar URL %s."
 msgstr "Geçersiz kullanıcı resmi bağlantısı %s."
 
-#: lib/yammerimporter.php:440
+#: lib/yammerimporter.php:441
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr ""
diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po
index f57422b1a3..8bf7d52fc2 100644
--- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po
+++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po
@@ -9,13 +9,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - YammerImport\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-04 22:30+0000\n"
-"PO-Revision-Date: 2010-10-04 22:34:09+0000\n"
+"POT-Creation-Date: 2010-10-18 18:35+0000\n"
+"PO-Revision-Date: 2010-10-18 18:44:19+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-10-03 20:57:31+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-09 14:41:19+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
 "X-Language-Code: uk\n"
 "X-Message-Group: #out-statusnet-plugin-yammerimport\n"
@@ -56,7 +56,7 @@ msgstr "Експертиза:"
 msgid "Invalid avatar URL %s."
 msgstr "Невірна URL-адреса аватари %s."
 
-#: lib/yammerimporter.php:440
+#: lib/yammerimporter.php:441
 #, php-format
 msgid "Unable to fetch avatar from %s."
 msgstr "Неможливо завантажити аватару з %s."

From 5503492f424ccacf7744c87fa1112aca5627bf5c Mon Sep 17 00:00:00 2001
From: Siebrand Mazeland 
Date: Mon, 18 Oct 2010 22:15:54 +0200
Subject: [PATCH 108/112] Fix `msgid' and `msgstr' entries do not both end with
 '\n'

---
 locale/zh_CN/LC_MESSAGES/statusnet.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po
index d33b0e36cf..44d070328c 100644
--- a/locale/zh_CN/LC_MESSAGES/statusnet.po
+++ b/locale/zh_CN/LC_MESSAGES/statusnet.po
@@ -7481,7 +7481,7 @@ msgstr "%s不是有效的颜色!应使用3或6个十六进制字符。"
 #: scripts/restoreuser.php:82
 #, php-format
 msgid "Backup file for user %s (%s)"
-msgstr "用户 %s (%s) 的备份文件\n"
+msgstr "用户 %s (%s) 的备份文件"
 
 #: scripts/restoreuser.php:88
 msgid "No user specified; using backup user."

From 24b94ebb2c4c6cf1119fd11a6e01eb1051cb1c61 Mon Sep 17 00:00:00 2001
From: Siebrand Mazeland 
Date: Mon, 18 Oct 2010 22:47:50 +0200
Subject: [PATCH 109/112] * fix bugs in parameter numbering for two messages *
 add translator documentation

---
 actions/deletegroup.php | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/actions/deletegroup.php b/actions/deletegroup.php
index acb309e1df..62fff00c48 100644
--- a/actions/deletegroup.php
+++ b/actions/deletegroup.php
@@ -45,7 +45,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  * @link     http://status.net/
  * @fixme merge more of this code with related variants
  */
-
 class DeletegroupAction extends RedirectingAction
 {
     var $group = null;
@@ -56,12 +55,12 @@ class DeletegroupAction extends RedirectingAction
      * @fixme merge common setup code with other group actions
      * @fixme allow group admins to delete their own groups
      */
-
     function prepare($args)
     {
         parent::prepare($args);
 
         if (!common_logged_in()) {
+            // TRANS: Client error when trying to delete group while not logged in.
             $this->clientError(_('You must be logged in to delete a group.'));
             return false;
         }
@@ -84,23 +83,27 @@ class DeletegroupAction extends RedirectingAction
             $local = Local_group::staticGet('nickname', $nickname);
 
             if (!$local) {
+                // TRANS: Client error when trying to delete a non-local group.
                 $this->clientError(_('No such group.'), 404);
                 return false;
             }
 
             $this->group = User_group::staticGet('id', $local->group_id);
         } else {
+            // TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
             $this->clientError(_('No nickname or ID.'), 404);
             return false;
         }
 
         if (!$this->group) {
+            // TRANS: Client error when trying to delete a non-existing group.
             $this->clientError(_('No such group.'), 404);
             return false;
         }
 
         $cur = common_current_user();
         if (!$cur->hasRight(Right::DELETEGROUP)) {
+            // TRANS: Client error when trying to delete a group without having the rights to delete it.
             $this->clientError(_('You are not allowed to delete this group.'), 403);
             return false;
         }
@@ -117,7 +120,6 @@ class DeletegroupAction extends RedirectingAction
      *
      * @return void
      */
-
     function handle($args)
     {
         parent::handle($args);
@@ -143,14 +145,18 @@ class DeletegroupAction extends RedirectingAction
                 Event::handle('EndDeleteGroup', array($this->group));
             }
         } catch (Exception $e) {
-            $this->serverError(sprintf(_('Could not delete group %2$s.'),
+            // TRANS: Server error displayed if a group could not be deleted.
+            // TRANS: %s is the name of the group that could not be deleted.
+            $this->serverError(sprintf(_('Could not delete group %s.'),
                                        $this->group->nickname));
         }
 
         if ($this->boolean('ajax')) {
             $this->startHTML('text/xml;charset=utf-8');
             $this->elementStart('head');
-            $this->element('title', null, sprintf(_('Deleted group %2$s'),
+            // TRANS: Message given after deleting a group.
+            // TRANS: %s is the deleted group's name.
+            $this->element('title', null, sprintf(_('Deleted group %s'),
                                                   $this->group->nickname));
             $this->elementEnd('head');
             $this->elementStart('body');
@@ -166,6 +172,7 @@ class DeletegroupAction extends RedirectingAction
     }
 
     function title() {
+        // TRANS: Title.
         return _('Delete group');
     }
 
@@ -191,8 +198,10 @@ class DeletegroupAction extends RedirectingAction
                                            'action' => common_local_url('deletegroup', array('id' => $this->group->id))));
         $this->elementStart('fieldset');
         $this->hidden('token', common_session_token());
+        // 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,
                            _('Are you sure you want to delete this group? '.
                              'This will clear all data about the group from the '.
@@ -223,4 +232,4 @@ class DeletegroupAction extends RedirectingAction
         $this->elementEnd('fieldset');
         $this->elementEnd('form');
     }
-}
\ No newline at end of file
+}

From 7ed485ea49b7b0fcac51a7568815cb0588e65c88 Mon Sep 17 00:00:00 2001
From: Siebrand Mazeland 
Date: Mon, 18 Oct 2010 23:09:13 +0200
Subject: [PATCH 110/112] Localisation updates from http://translatewiki.net

---
 locale/af/LC_MESSAGES/statusnet.po    |  65 +++++++---------
 locale/ar/LC_MESSAGES/statusnet.po    |  68 +++++++---------
 locale/arz/LC_MESSAGES/statusnet.po   |  68 +++++++---------
 locale/bg/LC_MESSAGES/statusnet.po    |  67 +++++++---------
 locale/br/LC_MESSAGES/statusnet.po    |  67 +++++++---------
 locale/ca/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/cs/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/de/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/en_GB/LC_MESSAGES/statusnet.po |  72 +++++++----------
 locale/eo/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/es/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/fa/LC_MESSAGES/statusnet.po    |  74 +++++++-----------
 locale/fi/LC_MESSAGES/statusnet.po    |  60 +++++++-------
 locale/fr/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/ga/LC_MESSAGES/statusnet.po    |  47 ++++++-----
 locale/gl/LC_MESSAGES/statusnet.po    |  73 +++++++----------
 locale/hsb/LC_MESSAGES/statusnet.po   |  68 +++++++---------
 locale/hu/LC_MESSAGES/statusnet.po    |  56 ++++++-------
 locale/ia/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/is/LC_MESSAGES/statusnet.po    |  47 ++++++-----
 locale/it/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/ja/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/ka/LC_MESSAGES/statusnet.po    |  65 +++++++---------
 locale/ko/LC_MESSAGES/statusnet.po    |  65 +++++++---------
 locale/mk/LC_MESSAGES/statusnet.po    |  73 +++++++----------
 locale/nb/LC_MESSAGES/statusnet.po    |  68 +++++++---------
 locale/nl/LC_MESSAGES/statusnet.po    | 108 ++++++++++----------------
 locale/nn/LC_MESSAGES/statusnet.po    |  47 ++++++-----
 locale/pl/LC_MESSAGES/statusnet.po    |  74 +++++++-----------
 locale/pt/LC_MESSAGES/statusnet.po    |  74 +++++++-----------
 locale/pt_BR/LC_MESSAGES/statusnet.po |  75 +++++++-----------
 locale/ru/LC_MESSAGES/statusnet.po    |  74 +++++++-----------
 locale/statusnet.pot                  |  41 ++++++----
 locale/sv/LC_MESSAGES/statusnet.po    |  73 +++++++----------
 locale/te/LC_MESSAGES/statusnet.po    |  67 +++++++---------
 locale/tr/LC_MESSAGES/statusnet.po    |  57 +++++++-------
 locale/uk/LC_MESSAGES/statusnet.po    |  75 +++++++-----------
 locale/zh_CN/LC_MESSAGES/statusnet.po |  73 +++++++----------
 38 files changed, 1113 insertions(+), 1503 deletions(-)

diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po
index 4105d3d747..36b3144636 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:18+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:30+0000\n"
 "Language-Team: Afrikaans \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -889,7 +889,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -908,7 +908,7 @@ msgstr "Moenie hierdie gebruiker blokkeer nie"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -924,10 +924,12 @@ msgstr "Blokkeer hierdie gebruiker"
 msgid "Failed to save block information."
 msgstr ""
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1082,37 +1084,46 @@ msgstr "Moenie die applikasie verwyder nie"
 msgid "Delete this application"
 msgstr "Skrap hierdie applikasie"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "U moet aanteken alvorens u 'n groep kan verlaat."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Geen gebruikersnaam of ID nie."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "U is nie 'n lid van die groep nie."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Dit was nie moontlik om die groep by te werk nie."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s het die groep %2$s verlaat"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Verwyder gebruiker"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1120,13 +1131,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Moenie hierdie kennisgewing verwyder nie"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Verwyder die gebruiker"
@@ -7488,21 +7499,3 @@ msgstr "Geen groep verskaf nie."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "Ontsê"
-
-#~ msgid "Theme server"
-#~ msgstr "Tema-bediener"
-
-#~ msgid "Theme path"
-#~ msgstr "Tema-pad"
-
-#~ msgid "Background server"
-#~ msgstr "Agtergrond-bediener"
-
-#~ msgid "Background path"
-#~ msgstr "Agtergrond-pad"
-
-#~ msgid "Background directory"
-#~ msgstr "Agtergrond-gids"
diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po
index 382cad4b1c..1d3660e614 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:21+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:31+0000\n"
 "Language-Team: Arabic \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -896,7 +896,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -915,7 +915,7 @@ msgstr "لا تمنع هذا المستخدم"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -931,10 +931,12 @@ msgstr "امنع هذا المستخدم"
 msgid "Failed to save block information."
 msgstr "فشل حفظ معلومات المنع."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1087,38 +1089,47 @@ msgstr "لا تحذف هذا التطبيق"
 msgid "Delete this application"
 msgstr "احذف هذا التطبيق"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "يجب أن تلج لتغادر مجموعة."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "لا اسم مستعار."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "لست عضوًا في هذه المجموعة"
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "تعذر تحديث المجموعة."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s ترك المجموعة %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "احذف المستخدم"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1126,13 +1137,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "لا تحذف هذا الإشعار"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "احذف هذا المستخدم"
@@ -7478,24 +7489,3 @@ msgstr "لا هوية مستخدم محددة."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "ارفض"
-
-#~ msgid "Path to locales"
-#~ msgstr "مسار المحليات"
-
-#~ msgid "Theme server"
-#~ msgstr "خادوم السمات"
-
-#~ msgid "Theme path"
-#~ msgstr "مسار السمات"
-
-#~ msgid "Background server"
-#~ msgstr "خادوم الخلفيات"
-
-#~ msgid "Background path"
-#~ msgstr "مسار الخلفيات"
-
-#~ msgid "Background directory"
-#~ msgstr "دليل الخلفيات"
diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po
index 819660b9c8..a7124c520c 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:25+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:31+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -905,7 +905,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -924,7 +924,7 @@ msgstr "لا تمنع هذا المستخدم"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
@@ -941,10 +941,12 @@ msgstr "امنع هذا المستخدم"
 msgid "Failed to save block information."
 msgstr "فشل حفظ معلومات المنع."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1100,38 +1102,47 @@ msgstr "لا تحذف هذا الإشعار"
 msgid "Delete this application"
 msgstr "احذف هذا الإشعار"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "يجب أن تكون والجًا لتنشئ مجموعه."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "لا اسم مستعار."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "لست عضوا فى تلك المجموعه."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "تعذر تحديث المجموعه."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s ساب جروپ %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "احذف المستخدم"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1139,13 +1150,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "لا تحذف هذا الإشعار"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "احذف هذا المستخدم"
@@ -7484,24 +7495,3 @@ msgstr "ما فيش ID متحدد لليوزر."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "ارفض"
-
-#~ msgid "Path to locales"
-#~ msgstr "مسار المحليات"
-
-#~ msgid "Theme server"
-#~ msgstr "خادوم السمات"
-
-#~ msgid "Theme path"
-#~ msgstr "مسار السمات"
-
-#~ msgid "Background server"
-#~ msgstr "خادوم الخلفيات"
-
-#~ msgid "Background path"
-#~ msgstr "مسار الخلفيات"
-
-#~ msgid "Background directory"
-#~ msgstr "دليل الخلفيات"
diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po
index 0dccc7b50a..6a7c099806 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:29+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:32+0000\n"
 "Language-Team: Bulgarian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -888,7 +888,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -907,7 +907,7 @@ msgstr "Да не се блокира този потребител"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -923,10 +923,12 @@ msgstr "Блокиране на потребителя"
 msgid "Failed to save block information."
 msgstr "Грешка при записване данните за блокирането."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1078,38 +1080,47 @@ msgstr "Да не се изтрива приложението"
 msgid "Delete this application"
 msgstr "Изтриване на това приложение"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "За напуснете група, трябва да сте влезли."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "Няма псевдоним."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Не членувате в тази група."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Грешка при обновяване на групата."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s напусна групата %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Изтриване на потребител"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1117,13 +1128,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Да не се изтрива бележката"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Изтриване на този потребител"
@@ -7500,23 +7511,3 @@ msgstr "Не е указана група."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "Забрана"
-
-#, fuzzy
-#~ msgid "Theme server"
-#~ msgstr "SSL-сървър"
-
-#, fuzzy
-#~ msgid "Theme path"
-#~ msgstr "Път до сайта"
-
-#~ msgid "Background server"
-#~ msgstr "Сървър на фона"
-
-#~ msgid "Background path"
-#~ msgstr "Път до фона"
-
-#~ msgid "Background directory"
-#~ msgstr "Директория на фона"
diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po
index dfcb095e7a..d3be4a5591 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:32+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:33+0000\n"
 "Language-Team: Breton \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -889,7 +889,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -908,7 +908,7 @@ msgstr "Arabat stankañ an implijer-mañ"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -924,10 +924,12 @@ msgstr "Stankañ an implijer-mañ"
 msgid "Failed to save block information."
 msgstr "Diposubl eo enrollañ an titouroù stankañ."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1079,37 +1081,46 @@ msgstr "Arabat eo dilemel ar poellad-mañ"
 msgid "Delete this application"
 msgstr "Dilemel ar poelad-se"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad"
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Lesanv pe ID ebet."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "N'oc'h ket ezel eus ar strollad-mañ."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Diposubl eo hizivaat ar strollad."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s en deus kuitaet ar strollad %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Diverkañ an implijer"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1117,13 +1128,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Arabat dilemel ar c'hemenn-mañ"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Diverkañ an implijer-mañ"
@@ -7419,23 +7430,3 @@ msgstr "N'eus bet diferet ID implijer ebet."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "Nac'hañ"
-
-#~ msgid "Theme server"
-#~ msgstr "Servijer danvezioù"
-
-#~ msgid "Theme path"
-#~ msgstr "Hentad an tem"
-
-#~ msgid "Background server"
-#~ msgstr "Servijer ar backgroundoù"
-
-#, fuzzy
-#~ msgid "Background path"
-#~ msgstr "Background"
-
-#, fuzzy
-#~ msgid "Background directory"
-#~ msgstr "Servijer ar backgroundoù"
diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po
index a3533b31b0..d41a37b5b5 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:35+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:34+0000\n"
 "Language-Team: Catalan \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -908,7 +908,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -927,7 +927,7 @@ msgstr "No bloquis l'usuari"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -943,10 +943,12 @@ msgstr "Bloca aquest usuari"
 msgid "Failed to save block information."
 msgstr "No s'ha pogut desar la informació del bloc."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1100,37 +1102,46 @@ msgstr "No eliminis l'aplicació"
 msgid "Delete this application"
 msgstr "Elimina aquesta aplicació"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Heu d'haver iniciat una sessió per deixar un grup."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Cap sobrenom o ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "No sou un membre del grup."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "No s'ha pogut actualitzar el grup."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s ha abandonat el grup %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Elimina l'usuari"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1141,13 +1152,13 @@ msgstr ""
 "l'usuari de la base de dades, sense cap còpia de seguretat."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "No eliminis aquest avís"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Elimina l'usuari"
@@ -7711,31 +7722,3 @@ 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 ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "S'ha autoritzat el testimoni de sol·licitud %s. Si us plau, canvieu-lo "
-#~ "per un testimoni d'accés."
-
-#~ msgid "Deny"
-#~ msgstr "Denega"
-
-#~ msgid "Path to locales"
-#~ msgstr "El camí a les traduccions"
-
-#~ msgid "Theme server"
-#~ msgstr "Servidor dels temes"
-
-#~ msgid "Theme path"
-#~ msgstr "Camí dels temes"
-
-#~ msgid "Background server"
-#~ msgstr "Servidor de fons"
-
-#~ msgid "Background path"
-#~ msgstr "Camí dels fons"
-
-#~ msgid "Background directory"
-#~ msgstr "Directori de fons"
diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po
index b3e328936d..c712e8e2f8 100644
--- a/locale/cs/LC_MESSAGES/statusnet.po
+++ b/locale/cs/LC_MESSAGES/statusnet.po
@@ -10,18 +10,18 @@ msgid ""
 msgstr ""
 "Project-Id-Version: StatusNet - Core\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:48+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:35+0000\n"
 "Language-Team: Czech \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -895,7 +895,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -914,7 +914,7 @@ msgstr "Zablokovat tohoto uživatele"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -930,10 +930,12 @@ msgstr "Zablokovat tohoto uživatele"
 msgid "Failed to save block information."
 msgstr "Nepodařilo se uložit blokování."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1086,37 +1088,46 @@ msgstr "Neodstraňujte tuto aplikaci"
 msgid "Delete this application"
 msgstr "Odstranit tuto aplikaci"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Musíte být přihlášen abyste mohl opustit skupinu."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Žádná přezdívka nebo ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Nejste členem této skupiny."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Nelze aktualizovat skupinu."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s opustil(a) skupinu %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Smazat uživatele"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1127,13 +1138,13 @@ msgstr ""
 "o uživateli z databáze, bez zálohy."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Neodstraňujte toto oznámení"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Odstranit tohoto uživatele"
@@ -7642,31 +7653,3 @@ msgstr "Nebylo zadáno uživatelské ID."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Token požadavku %s byl autorizován. Prosím vyměňte jej za přístupový "
-#~ "token."
-
-#~ msgid "Deny"
-#~ msgstr "Odepřít"
-
-#~ msgid "Path to locales"
-#~ msgstr "Cesta k locales"
-
-#~ msgid "Theme server"
-#~ msgstr "server s tématy"
-
-#~ msgid "Theme path"
-#~ msgstr "cesta k tématu"
-
-#~ msgid "Background server"
-#~ msgstr "Server s pozadím"
-
-#~ msgid "Background path"
-#~ msgstr "Cesta k pozadí"
-
-#~ msgid "Background directory"
-#~ msgstr "Adresář pozadí"
diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po
index 58fc72d9e1..36f5d8ca3c 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:51+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:35+0000\n"
 "Language-Team: German \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -920,7 +920,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -939,7 +939,7 @@ msgstr "Diesen Benutzer freigeben"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -955,10 +955,12 @@ msgstr "Diesen Benutzer blockieren"
 msgid "Failed to save block information."
 msgstr "Konnte Blockierungsdaten nicht speichern."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1111,37 +1113,46 @@ msgstr "Dieses Programm nicht löschen"
 msgid "Delete this application"
 msgstr "Programm löschen"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Kein Benutzername oder ID"
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Du bist kein Mitglied dieser Gruppe."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Konnte Gruppe nicht aktualisieren."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s hat die Gruppe %2$s verlassen"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Benutzer löschen"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1152,13 +1163,13 @@ msgstr ""
 "werden aus der Datenbank gelöscht (ohne ein Backup)."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Diese Nachricht nicht löschen"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Diesen Benutzer löschen"
@@ -7730,31 +7741,3 @@ msgstr "Keine Benutzer-ID angegeben"
 #, php-format
 msgid "%d entries in backup."
 msgstr "%d Einträge im Backup."
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Die Anfrage %s wurde nicht autorisiert. Bitte gegen einen Zugriffstoken "
-#~ "austauschen."
-
-#~ msgid "Deny"
-#~ msgstr "Ablehnen"
-
-#~ msgid "Path to locales"
-#~ msgstr "Sprachverzeichnis"
-
-#~ msgid "Theme server"
-#~ msgstr "Motiv-Server"
-
-#~ msgid "Theme path"
-#~ msgstr "Motiv-Pfad"
-
-#~ msgid "Background server"
-#~ msgstr "Server für Hintergrundbilder"
-
-#~ msgid "Background path"
-#~ msgstr "Pfad zu den Hintergrundbildern"
-
-#~ msgid "Background directory"
-#~ msgstr "Hintergrund-Verzeichnis"
diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po
index 631b989edc..88421ca455 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:54+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:36+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -899,7 +899,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -918,7 +918,7 @@ msgstr "Do not block this user"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -934,10 +934,12 @@ msgstr "Block this user"
 msgid "Failed to save block information."
 msgstr "Failed to save block information."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1091,37 +1093,46 @@ msgstr "Do not delete this application"
 msgid "Delete this application"
 msgstr "Delete this application"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "You must be logged in to leave a group."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "No nickname or ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "You are not a member of this group."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Could not update group."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s left group %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Delete user"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1132,13 +1143,13 @@ msgstr ""
 "the user from the database, without a backup."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Do not delete this notice"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Delete this user"
@@ -7536,28 +7547,3 @@ msgstr "No user ID specified."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "The request token %s has been authorised. Please exchange it for an "
-#~ "access token."
-
-#~ msgid "Deny"
-#~ msgstr "Deny"
-
-#~ msgid "Theme server"
-#~ msgstr "Theme server"
-
-#~ msgid "Theme path"
-#~ msgstr "Theme path"
-
-#~ msgid "Background server"
-#~ msgstr "Background server"
-
-#~ msgid "Background path"
-#~ msgstr "Background path"
-
-#~ msgid "Background directory"
-#~ msgstr "Background directory"
diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po
index 3a497635f6..fcdeedfeb3 100644
--- a/locale/eo/LC_MESSAGES/statusnet.po
+++ b/locale/eo/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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:40:58+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:37+0000\n"
 "Language-Team: Esperanto \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -897,7 +897,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -916,7 +916,7 @@ msgstr "Ne bloki la uzanton"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -932,10 +932,12 @@ msgstr "Bloki la uzanton"
 msgid "Failed to save block information."
 msgstr "Eraris konservi blokado-informon."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1088,37 +1090,46 @@ msgstr "Ne forigu ĉi tiun aplikaĵon."
 msgid "Delete this application"
 msgstr "Viŝi ĉi tiun aplikon"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Ensalutu por eksaniĝi."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Ne estas alinomo aŭ ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Vi ne estas grupano."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Malsukcesis ĝisdatigi grupon."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s eksaniĝis de grupo %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Forigi uzanton"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1129,13 +1140,13 @@ msgstr ""
 "datumbazo sen sekurkopio."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Ne forigi la avizon"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Forigi la uzanton"
@@ -7602,31 +7613,3 @@ msgstr "Neniu uzanto-ID specifiĝas."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "La demanda ĵetono %s estis rajtigita. Bonvolu interŝanĝi ĝin por atinga "
-#~ "ĵetono."
-
-#~ msgid "Deny"
-#~ msgstr "Malpermesi"
-
-#~ msgid "Path to locales"
-#~ msgstr "Lokigilo al lokaĵaro"
-
-#~ msgid "Theme server"
-#~ msgstr "Tema servilo"
-
-#~ msgid "Theme path"
-#~ msgstr "Temo-lokigilo"
-
-#~ msgid "Background server"
-#~ msgstr "Fono-lokigilo"
-
-#~ msgid "Background path"
-#~ msgstr "Fono-lokigilo"
-
-#~ msgid "Background directory"
-#~ msgstr "Fona adresaro"
diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po
index 2529b9d248..2bdcc4eed7 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:02+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:39+0000\n"
 "Language-Team: Spanish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -906,7 +906,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -925,7 +925,7 @@ msgstr "No bloquear a este usuario"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -941,10 +941,12 @@ msgstr "Bloquear este usuario."
 msgid "Failed to save block information."
 msgstr "No se guardó información de bloqueo."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1099,37 +1101,46 @@ msgstr "No eliminar esta aplicación"
 msgid "Delete this application"
 msgstr "Borrar esta aplicación"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Debes estar conectado para dejar un grupo."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Ningún nombre de usuario o ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "No eres miembro de este grupo."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "No se pudo actualizar el grupo."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s ha dejado el grupo %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Borrar usuario"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1140,13 +1151,13 @@ msgstr ""
 "todos los datos sobre el usuario, sin dejar una copia de seguridad."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "No eliminar este mensaje"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Borrar este usuario"
@@ -7719,31 +7730,3 @@ msgstr "No se ha especificado ID de usuario."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "El token de solicitud %s ha sido autorizado. Por favor, cámbialo por un "
-#~ "token de acceso."
-
-#~ msgid "Deny"
-#~ msgstr "Denegar"
-
-#~ msgid "Path to locales"
-#~ msgstr "Ruta de las configuraciones locales"
-
-#~ msgid "Theme server"
-#~ msgstr "Servidor de los temas"
-
-#~ msgid "Theme path"
-#~ msgstr "Ruta del tema"
-
-#~ msgid "Background server"
-#~ msgstr "Servidor de fondo"
-
-#~ msgid "Background path"
-#~ msgstr "Ruta del fondo"
-
-#~ msgid "Background directory"
-#~ msgstr "Directorio del fondo"
diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po
index 48666f24d8..f6d244e126 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:04+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:40+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); Translate extension (2010-09-17)\n"
 "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
-"X-POT-Import-Date: 2010-10-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -899,7 +899,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -918,7 +918,7 @@ msgstr "کاربر را مسدود نکن"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -934,10 +934,12 @@ msgstr "کاربر را مسدود کن"
 msgid "Failed to save block information."
 msgstr "ذخیرهٔ ردیف اطلاعات شکست خورد."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1091,37 +1093,46 @@ msgstr "این برنامه حذف نشود"
 msgid "Delete this application"
 msgstr "این برنامه حذف شود"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "برای ترک یک گروه، شما باید وارد شده باشید."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "نام‌مستعار یا شناسه‌ای وجود ندارد."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "شما یک عضو این گروه نیستید."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s گروه %2$s را ترک کرد"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "حذف کاربر"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1132,13 +1143,13 @@ msgstr ""
 "پاک و بدون برگشت خواهند بود."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "این پیام را پاک نکن"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "حذف این کاربر"
@@ -7648,30 +7659,3 @@ msgstr "هیچ شناسهٔ کاربری مشخص نشده است."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "نشانهٔ درخواست %s تایید شد. لطفا آن را برای یک نشانهٔ دسترسی مبادله کنید."
-
-#~ msgid "Deny"
-#~ msgstr "رد کردن"
-
-#~ msgid "Path to locales"
-#~ msgstr "نشانی تنظیمات محلی"
-
-#~ msgid "Theme server"
-#~ msgstr "کارگزار پوسته"
-
-#~ msgid "Theme path"
-#~ msgstr "مسیر پوسته"
-
-#~ msgid "Background server"
-#~ msgstr "کارگذار تصاویر پیش‌زمینه"
-
-#~ msgid "Background path"
-#~ msgstr "مسیر تصاویر پیش‌زمینه"
-
-#~ msgid "Background directory"
-#~ msgstr "شاخهٔ تصاویر پیش‌زمینه"
diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po
index 3f7eca4428..0cc1858b71 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:10+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:41+0000\n"
 "Language-Team: Finnish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -908,7 +908,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -927,7 +927,7 @@ msgstr "Älä estä tätä käyttäjää"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
@@ -944,10 +944,12 @@ msgstr "Estä tämä käyttäjä"
 msgid "Failed to save block information."
 msgstr "Käyttäjän estotiedon tallennus epäonnistui."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1102,38 +1104,47 @@ msgstr "Älä poista tätä päivitystä"
 msgid "Delete this application"
 msgstr "Poista tämä päivitys"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "Tunnusta ei ole."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Sinä et kuulu tähän ryhmään."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Ei voitu päivittää ryhmää."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "Käyttäjän %1$s päivitys %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Poista käyttäjä"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1141,13 +1152,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Älä poista tätä päivitystä"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Poista käyttäjä"
@@ -7664,16 +7675,3 @@ msgstr "Ryhmää ei ole määritelty."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#, fuzzy
-#~ msgid "Deny"
-#~ msgstr "Ulkoasu"
-
-#~ msgid "Background server"
-#~ msgstr "Taustakuvapalvelin"
-
-#~ msgid "Background path"
-#~ msgstr "Taustakuvan hakemistopolku"
-
-#~ msgid "Background directory"
-#~ msgstr "Taustakuvan hakemisto"
diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po
index eff3fc35b9..3704732c8b 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:14+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:42+0000\n"
 "Language-Team: French \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -923,7 +923,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -942,7 +942,7 @@ msgstr "Ne pas bloquer cet utilisateur"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -958,10 +958,12 @@ msgstr "Bloquer cet utilisateur"
 msgid "Failed to save block information."
 msgstr "Impossible d’enregistrer les informations de blocage."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1115,37 +1117,46 @@ msgstr "Ne pas supprimer cette application"
 msgid "Delete this application"
 msgstr "Supprimer cette application"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Vous devez ouvrir une session pour quitter un groupe."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Aucun pseudo ou ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Vous n’êtes pas membre de ce groupe."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Impossible de mettre à jour le groupe."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s a quitté le groupe %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Supprimer l’utilisateur"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1156,13 +1167,13 @@ msgstr ""
 "données à son propos de la base de données, sans sauvegarde."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Ne pas supprimer cet avis"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Supprimer cet utilisateur"
@@ -7770,31 +7781,3 @@ 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 ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Le jeton de connexion %s a été autorisé. Merci de l’échanger contre un "
-#~ "jeton d’accès."
-
-#~ msgid "Deny"
-#~ msgstr "Refuser"
-
-#~ msgid "Path to locales"
-#~ msgstr "Chemin vers les paramètres régionaux"
-
-#~ msgid "Theme server"
-#~ msgstr "Serveur de thèmes"
-
-#~ msgid "Theme path"
-#~ msgstr "Chemin des thèmes"
-
-#~ msgid "Background server"
-#~ msgstr "Serveur des arrière plans"
-
-#~ msgid "Background path"
-#~ msgstr "Chemin des arrière plans"
-
-#~ msgid "Background directory"
-#~ msgstr "Dossier des arrière plans"
diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po
index e748ee9998..2328b88430 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:18+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:42+0000\n"
 "Language-Team: Irish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -915,7 +915,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 #, fuzzy
 msgctxt "BUTTON"
@@ -936,7 +936,7 @@ msgstr "Bloquear usuario"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
@@ -954,10 +954,12 @@ msgstr "Bloquear usuario"
 msgid "Failed to save block information."
 msgstr "Erro ao gardar información de bloqueo."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1118,38 +1120,47 @@ msgstr "Non se pode eliminar este chíos."
 msgid "Delete this application"
 msgstr "Eliminar chío"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s"
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "Sen alcume."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Non estás suscrito a ese perfil"
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Non se puido actualizar o usuario."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "Estado de %1$s en  %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Eliminar chío"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1157,13 +1168,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Non se pode eliminar este chíos."
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Eliminar chío"
diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po
index 76f1e5541d..5f4ecb39bc 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:21+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:43+0000\n"
 "Language-Team: Galician \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -908,7 +908,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -927,7 +927,7 @@ msgstr "Non bloquear este usuario"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -943,10 +943,12 @@ msgstr "Bloquear este usuario"
 msgid "Failed to save block information."
 msgstr "Non se puido gardar a información do bloqueo."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1100,37 +1102,46 @@ msgstr "Non borrar a aplicación"
 msgid "Delete this application"
 msgstr "Borrar a aplicación"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Ten que identificarse para deixar un grupo."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Nin alcume nin ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Vostede non pertence a este grupo."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Non se puido actualizar o grupo."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s deixou o grupo %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Borrar o usuario"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1141,13 +1152,13 @@ msgstr ""
 "usuario da base de datos, sen posibilidade de recuperalos."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Non borrar esta nota"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Borrar o usuario"
@@ -7723,29 +7734,3 @@ 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 ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr "Autorizouse a ficha da solicitude %s. Intercámbiea por un pase."
-
-#~ msgid "Deny"
-#~ msgstr "Denegar"
-
-#~ msgid "Path to locales"
-#~ msgstr "Ruta das traducións"
-
-#~ msgid "Theme server"
-#~ msgstr "Servidor de temas visuais"
-
-#~ msgid "Theme path"
-#~ msgstr "Ruta do tema visual"
-
-#~ msgid "Background server"
-#~ msgstr "Servidor de fondos"
-
-#~ msgid "Background path"
-#~ msgstr "Ruta do fondo"
-
-#~ msgid "Background directory"
-#~ msgstr "Directorio de fondos"
diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po
index c9fdec2233..86158bac04 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:29+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:44+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -886,7 +886,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -905,7 +905,7 @@ msgstr "Tutoho wužiwarja njeblokować"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -922,10 +922,12 @@ msgstr "Tutoho wužiwarja blokować"
 msgid "Failed to save block information."
 msgstr "Njeje móžno, sydłowu zdźělenku składować."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1077,37 +1079,46 @@ msgstr "Tutu aplikaciju njezničić"
 msgid "Delete this application"
 msgstr "Tutu aplikaciju zničić"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Dyrbiš přizjewjeny być, zo by skupinu wopušćił."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Žane přimjeno abo žadyn ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Njejsy čłon tuteje skupiny."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Skupina njeje so dała aktualizować."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s je skupinu %2$s wopušćił"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Wužiwarja wušmórnyć"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1115,13 +1126,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Tutu zdźělenku njewušmórnyć"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Tutoho wužiwarja wušmórnyć"
@@ -7374,24 +7385,3 @@ msgstr "Žadyn wužiwarski ID podaty."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "Wotpokazać"
-
-#~ msgid "Path to locales"
-#~ msgstr "Šćežka k lokalam"
-
-#~ msgid "Theme server"
-#~ msgstr "Šatowy serwer"
-
-#~ msgid "Theme path"
-#~ msgstr "Šatowa šćežka"
-
-#~ msgid "Background server"
-#~ msgstr "Pozadkowy serwer"
-
-#~ msgid "Background path"
-#~ msgstr "Pozadkowa šćežka"
-
-#~ msgid "Background directory"
-#~ msgstr "Pozadkowy zapis"
diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po
index dfdbdffefb..9556436aca 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:31+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:45+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-09 14:31:24+0000\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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"
@@ -886,7 +886,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -905,7 +905,7 @@ msgstr "Ne blokkoljuk ezt a felhasználót"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -921,10 +921,12 @@ msgstr "Felhasználó blokkolása"
 msgid "Failed to save block information."
 msgstr "Nem sikerült elmenteni a blokkolási információkat."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1075,37 +1077,46 @@ msgstr ""
 msgid "Delete this application"
 msgstr ""
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Be kell jelentkezned hogy elhagyhass egy csoportot."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Nincs nicknév vagy azonosító."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Nem vagy tagja ennek a csoportnak."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Nem sikerült a csoport frissítése."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s csatlakozott a(z) %2$s csoporthoz"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Felhasználó törlése"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1116,13 +1127,13 @@ msgstr ""
 "adatot törlünk az adatbázisból, biztonsági mentés nélkül."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Ne töröljük ezt a hírt"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Töröljük ezt a felhasználót"
@@ -7370,12 +7381,3 @@ msgstr ""
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "Tiltjuk"
-
-#~ msgid "Path to locales"
-#~ msgstr "A nyelvi fájlok elérési útvonala"
-
-#~ msgid "Theme path"
-#~ msgstr "Téma elérési útvonala"
diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po
index 1dfcf6b7fa..a7fefd1ae6 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:34+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:45+0000\n"
 "Language-Team: Interlingua \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -903,7 +903,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -922,7 +922,7 @@ msgstr "Non blocar iste usator"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -938,10 +938,12 @@ msgstr "Blocar iste usator"
 msgid "Failed to save block information."
 msgstr "Falleva de salveguardar le information del blocada."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1095,37 +1097,46 @@ msgstr "Non deler iste application"
 msgid "Delete this application"
 msgstr "Deler iste application"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Tu debe aperir un session pro quitar un gruppo."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Nulle pseudonymo o ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Tu non es membro de iste gruppo."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Non poteva actualisar gruppo."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s quitava le gruppo %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Deler usator"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1136,13 +1147,13 @@ msgstr ""
 "usator del base de datos, sin copia de reserva."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Non deler iste nota"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Deler iste usator"
@@ -7691,31 +7702,3 @@ 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 ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Le indicio de requesta %s ha essite autorisate. Per favor excambia lo pro "
-#~ "un indicio de accesso."
-
-#~ msgid "Deny"
-#~ msgstr "Refusar"
-
-#~ msgid "Path to locales"
-#~ msgstr "Cammino al localitates"
-
-#~ msgid "Theme server"
-#~ msgstr "Servitor de themas"
-
-#~ msgid "Theme path"
-#~ msgstr "Cammino al themas"
-
-#~ msgid "Background server"
-#~ msgstr "Servitor de fundos"
-
-#~ msgid "Background path"
-#~ msgstr "Cammino al fundos"
-
-#~ msgid "Background directory"
-#~ msgstr "Directorio al fundos"
diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po
index 1377e17de3..3b6cd6debe 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:37+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:46+0000\n"
 "Language-Team: Icelandic \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -912,7 +912,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -932,7 +932,7 @@ msgstr "Opna á þennan notanda"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
@@ -949,10 +949,12 @@ msgstr "Loka á þennan notanda"
 msgid "Failed to save block information."
 msgstr "Mistókst að vista upplýsingar um notendalokun"
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1110,38 +1112,47 @@ msgstr "Get ekki eytt þessu babli."
 msgid "Delete this application"
 msgstr "Eyða þessu babli"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "Ekkert stuttnefni."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Þú ert ekki meðlimur í þessum hópi."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Gat ekki uppfært hóp."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "Staða %1$s á %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Eyða"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1149,13 +1160,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Get ekki eytt þessu babli."
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Eyða þessu babli"
diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po
index 573448d798..32e749ad8f 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:40+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:47+0000\n"
 "Language-Team: Italian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -902,7 +902,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -921,7 +921,7 @@ msgstr "Non bloccare questo utente"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -937,10 +937,12 @@ msgstr "Blocca questo utente"
 msgid "Failed to save block information."
 msgstr "Salvataggio delle informazioni per il blocco non riuscito."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1093,37 +1095,46 @@ msgstr "Non eliminare l'applicazione"
 msgid "Delete this application"
 msgstr "Elimina l'applicazione"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Devi eseguire l'accesso per lasciare un gruppo."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Nessun soprannome o ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Non fai parte di questo gruppo."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Impossibile aggiornare il gruppo."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s ha lasciato il gruppo %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Elimina utente"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1134,13 +1145,13 @@ msgstr ""
 "dell'utente dal database, senza una copia di sicurezza."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Non eliminare il messaggio"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Elimina questo utente"
@@ -7688,31 +7699,3 @@ msgstr "Nessun utente specificato: viene usato l'utente di backup."
 #, php-format
 msgid "%d entries in backup."
 msgstr "%d voci nel backup."
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Il token di richiesta %s è stato autorizzato. Scambiarlo con un token di "
-#~ "accesso."
-
-#~ msgid "Deny"
-#~ msgstr "Nega"
-
-#~ msgid "Path to locales"
-#~ msgstr "Percorso alle localizzazioni"
-
-#~ msgid "Theme server"
-#~ msgstr "Server del tema"
-
-#~ msgid "Theme path"
-#~ msgstr "Percorso del tema"
-
-#~ msgid "Background server"
-#~ msgstr "Server dello sfondo"
-
-#~ msgid "Background path"
-#~ msgstr "Percorso dello sfondo"
-
-#~ msgid "Background directory"
-#~ msgstr "Directory dello sfondo"
diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po
index 49bb2fd504..94bb1d17a3 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:43+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:48+0000\n"
 "Language-Team: Japanese \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -900,7 +900,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -919,7 +919,7 @@ msgstr "このユーザをアンブロックする"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
@@ -936,10 +936,12 @@ msgstr "このユーザをブロックする"
 msgid "Failed to save block information."
 msgstr "ブロック情報の保存に失敗しました。"
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1093,38 +1095,47 @@ msgstr "このアプリケーションを削除しないでください"
 msgid "Delete this application"
 msgstr "このアプリケーションを削除"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "グループから離れるにはログインしていなければなりません。"
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "ニックネームがありません。"
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "このグループのメンバーではありません。"
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "グループを更新できません。"
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s はグループ %2$s に残りました。"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "ユーザ削除"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1135,13 +1146,13 @@ msgstr ""
 "ベースからユーザに関するすべてのデータをクリアします。"
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "このつぶやきを削除できません。"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "このユーザを削除"
@@ -7643,31 +7654,3 @@ msgstr "ユーザIDの記述がありません。"
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "リクエストトークン %s は承認されました。 アクセストークンとそれを交換して"
-#~ "ください。"
-
-#~ msgid "Deny"
-#~ msgstr "拒絶"
-
-#~ msgid "Path to locales"
-#~ msgstr "ロケールのパス"
-
-#~ msgid "Theme server"
-#~ msgstr "テーマサーバー"
-
-#~ msgid "Theme path"
-#~ msgstr "テーマパス"
-
-#~ msgid "Background server"
-#~ msgstr "バックグラウンドサーバー"
-
-#~ msgid "Background path"
-#~ msgstr "バックグラウンドパス"
-
-#~ msgid "Background directory"
-#~ msgstr "バックグラウンドディレクトリ"
diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po
index 813169e5cf..326318f46d 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:47+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:49+0000\n"
 "Language-Team: Georgian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -884,7 +884,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -903,7 +903,7 @@ msgstr "არ დაბლოკო ეს მომხმარებელი
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -919,10 +919,12 @@ msgstr "დაბლოკე ეს მომხმარებელი"
 msgid "Failed to save block information."
 msgstr "დაბლოკვის შესახებ ინფორმაციის შენახვა ვერ მოხერხდა."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1075,37 +1077,46 @@ msgstr "არ წაშალო ეს აპლიკაცია"
 msgid "Delete this application"
 msgstr "აპლიკაციის წაშლა"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "გჯუფის დატოვებისათვის საჭიროა ავტორიზაცია."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "მეტსახელი ან ID უცნობია."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "თვენ არ ხართ ამ ჯგუფის წევრი."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "ჯგუფის განახლება ვერ მოხერხდა."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s-მა დატოვა ჯგუფი %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "მომხმარებლის წაშლა"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1116,13 +1127,13 @@ msgstr ""
 "მომხმარებლის შესახებ სარეზერვო ასლის გარეშე."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "არ წაშალო ეს შეტყობინება"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "ამ მომხმარებლის წაშლა"
@@ -7564,21 +7575,3 @@ msgstr "მომხმარებლის ID მითითებული 
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "აკრძალვა"
-
-#~ msgid "Theme server"
-#~ msgstr "იერსახის სერვერი"
-
-#~ msgid "Theme path"
-#~ msgstr "იერსახის გზა"
-
-#~ msgid "Background server"
-#~ msgstr "ფონების სერვერი"
-
-#~ msgid "Background path"
-#~ msgstr "ფონების გზა"
-
-#~ msgid "Background directory"
-#~ msgstr "ფონების დირექტორია"
diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po
index ece7eb83d1..0c0d1d0457 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:50+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:49+0000\n"
 "Language-Team: Korean \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -889,7 +889,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -908,7 +908,7 @@ msgstr "이용자를 차단하지 않는다."
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -924,10 +924,12 @@ msgstr "이 사용자 차단하기"
 msgid "Failed to save block information."
 msgstr "정보차단을 저장하는데 실패했습니다."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1079,38 +1081,47 @@ msgstr "이 응용프로그램 삭제 않기"
 msgid "Delete this application"
 msgstr "이 응용프로그램 삭제"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "그룹을 떠나기 위해서는 로그인해야 합니다."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "별명이 없습니다."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "당신은 해당 그룹의 멤버가 아닙니다."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "그룹을 업데이트 할 수 없습니다."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s의 상태 (%2$s에서)"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "이용자 삭제"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1118,13 +1129,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "이 통지를 지울 수 없습니다."
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "이 사용자 삭제"
@@ -7452,21 +7463,3 @@ msgstr "프로필을 지정하지 않았습니다."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "거부"
-
-#~ msgid "Theme server"
-#~ msgstr "테마 서버"
-
-#~ msgid "Theme path"
-#~ msgstr "테마 경로"
-
-#~ msgid "Background server"
-#~ msgstr "항상"
-
-#~ msgid "Background path"
-#~ msgstr "배경 경로"
-
-#~ msgid "Background directory"
-#~ msgstr "배경 디렉터리"
diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po
index 5c39cbd4f8..b98fe4f563 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:52+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:50+0000\n"
 "Language-Team: Macedonian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -908,7 +908,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -927,7 +927,7 @@ msgstr "Не го блокирај корисников"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -943,10 +943,12 @@ msgstr "Блокирај го корисников"
 msgid "Failed to save block information."
 msgstr "Не можев да ги снимам инофрмациите за блокот."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1100,37 +1102,46 @@ msgstr "Не го бриши овој програм"
 msgid "Delete this application"
 msgstr "Избриши го програмов"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Мора да сте најавени за да можете да ја напуштите групата."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Нема прекар или ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Не членувате во оваа група."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Не можев да ја подновам групата."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s ја напушти групата %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Бриши корисник"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1141,13 +1152,13 @@ msgstr ""
 "избрише сите податоци за корисникот од базата, без да може да се вратат."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Не ја бриши оваа забелешка"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Избриши овој корисник"
@@ -7718,29 +7729,3 @@ msgstr "Нема назначено корисник. Ќе го употреба
 #, php-format
 msgid "%d entries in backup."
 msgstr "%d резервни ставки."
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr "Жетонот на барањето %s е одобрен. Заменете го со жетон за пристап."
-
-#~ msgid "Deny"
-#~ msgstr "Одбиј"
-
-#~ msgid "Path to locales"
-#~ msgstr "Патека до локалите"
-
-#~ msgid "Theme server"
-#~ msgstr "Oпслужувач на темата"
-
-#~ msgid "Theme path"
-#~ msgstr "Патека до темата"
-
-#~ msgid "Background server"
-#~ msgstr "Oпслужувач на позаднината"
-
-#~ msgid "Background path"
-#~ msgstr "Патека до позадината"
-
-#~ msgid "Background directory"
-#~ msgstr "Директориум на позадината"
diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po
index 0fbdd03023..168ceaa95b 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:03+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:53+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -895,7 +895,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -914,7 +914,7 @@ msgstr "Ikke blokker denne brukeren"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -930,10 +930,12 @@ msgstr "Blokker denne brukeren"
 msgid "Failed to save block information."
 msgstr "Kunne ikke lagre blokkeringsinformasjon."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1088,37 +1090,46 @@ msgstr "Ikke slett dette programmet"
 msgid "Delete this application"
 msgstr "Slett dette programmet"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Du må være innlogget for å forlate en gruppe."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "ngen kallenavn eller ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Du er ikke et medlem av denne gruppen."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Kunne ikke oppdatere gruppe."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s forlot gruppe %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Slett bruker"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1129,13 +1140,13 @@ msgstr ""
 "om brukeren fra databasen, uten sikkerhetskopi."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Ikke slett denne notisen"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Slett denne brukeren"
@@ -7613,24 +7624,3 @@ msgstr "Ingen bruker-ID spesifisert."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "Nekt"
-
-#~ msgid "Path to locales"
-#~ msgstr "Lokaliseringssti"
-
-#~ msgid "Theme server"
-#~ msgstr "Tematjener"
-
-#~ msgid "Theme path"
-#~ msgstr "Temasti"
-
-#~ msgid "Background server"
-#~ msgstr "Bakgrunnstjener"
-
-#~ msgid "Background path"
-#~ msgstr "Bakgrunnssti"
-
-#~ msgid "Background directory"
-#~ msgstr "Bakgrunnsmappe"
diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po
index 393d152d5d..afc922a1b6 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:41:58+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:51+0000\n"
 "Language-Team: Dutch \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -343,10 +343,10 @@ msgid "No message text!"
 msgstr "Het bericht is leeg!"
 
 #: actions/apidirectmessagenew.php:127
-#, fuzzy, php-format
+#, php-format
 msgid "That's too long. Maximum message size is %d character."
 msgid_plural "That's too long. Maximum message size is %d characters."
-msgstr[0] "Dat is te lang. De maximale berichtlengte is %d tekens."
+msgstr[0] "Dat is te lang. De maximale berichtlengte is %d teken."
 msgstr[1] "Dat is te lang. De maximale berichtlengte is %d tekens."
 
 #. TRANS: Client error displayed if a recipient user could not be found (403).
@@ -363,7 +363,6 @@ msgstr ""
 
 #. TRANS: Client error displayed trying to direct message self (403).
 #: actions/apidirectmessagenew.php:154
-#, fuzzy
 msgid ""
 "Do not send a message to yourself; just say it to yourself quietly instead."
 msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd."
@@ -555,18 +554,16 @@ msgid "Upload failed."
 msgstr "Uploaden is mislukt."
 
 #: actions/apioauthaccesstoken.php:108
-#, fuzzy
 msgid "Invalid request token or verifier."
-msgstr "Het opgegeven token is ongeldig."
+msgstr "Het opgegeven token of controlegetal is ongeldig."
 
 #: actions/apioauthauthorize.php:109
 msgid "No oauth_token parameter provided."
 msgstr "Er is geen oauth_token parameter opgegeven."
 
 #: actions/apioauthauthorize.php:117 actions/apioauthauthorize.php:130
-#, fuzzy
 msgid "Invalid request token."
-msgstr "Ongeldig token."
+msgstr "Ongeldig verzoektoken."
 
 #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:268
 #: actions/deletenotice.php:172 actions/disfavor.php:74
@@ -664,24 +661,22 @@ msgid "Allow"
 msgstr "Toestaan"
 
 #: actions/apioauthauthorize.php:383
-#, fuzzy
 msgid "Authorize access to your account information."
-msgstr "Toegang tot uw gebruikersgegevens toestaan of ontzeggen."
+msgstr "Toegang tot uw gebruikersgegevens geven."
 
 #: actions/apioauthauthorize.php:433
-#, fuzzy
 msgid "Authorization canceled."
-msgstr "IM-bevestiging geannuleerd."
+msgstr "Autorisatie geannuleerd."
 
 #: actions/apioauthauthorize.php:435
-#, fuzzy, php-format
+#, php-format
 msgid "The request token %s has been revoked."
-msgstr "Het verzoektoken %s is geweigerd en ingetrokken."
+msgstr "Het verzoektoken %s is ingetrokken."
 
 #: actions/apioauthauthorize.php:453
-#, fuzzy, php-format
+#, php-format
 msgid "You have successfully authorized %s."
-msgstr "U hebt niet de juiste toegangsrechten."
+msgstr "U hebt %s geautoriseerd."
 
 #: actions/apioauthauthorize.php:458
 #, php-format
@@ -689,6 +684,8 @@ msgid ""
 "Please return to %s and enter the following security code to complete the "
 "process."
 msgstr ""
+"Ga terug naar %s en voer daar de volgende beveiligingscode in om het proces "
+"af te ronden."
 
 #: actions/apistatusesdestroy.php:112
 msgid "This method requires a POST or DELETE."
@@ -916,7 +913,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -935,7 +932,7 @@ msgstr "Gebruiker niet blokkeren"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -951,10 +948,12 @@ msgstr "Deze gebruiker blokkeren"
 msgid "Failed to save block information."
 msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1108,37 +1107,44 @@ msgstr "Deze applicatie niet verwijderen"
 msgid "Delete this application"
 msgstr "Deze applicatie verwijderen"
 
-#: actions/deletegroup.php:65
-#, fuzzy
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 msgid "You must be logged in to delete a group."
-msgstr "U moet aangemeld zijn om een groep te kunnen verlaten."
+msgstr "U moet aangemeld zijn om een groep te kunnen verwijderen."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Geen gebruikersnaam of ID."
 
-#: actions/deletegroup.php:104
-#, fuzzy
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 msgid "You are not allowed to delete this group."
-msgstr "U bent geen lid van deze groep."
+msgstr "U mag deze groep niet verwijderen."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Het was niet mogelijk de groep bij te werken."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s heeft de groep %2$s verlaten"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Gebruiker verwijderen"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1150,13 +1156,13 @@ msgstr ""
 "niet mogelijk ze terug te zetten."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Deze mededeling niet verwijderen"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Gebruiker verwijderen"
@@ -7763,31 +7769,3 @@ msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt."
 #, php-format
 msgid "%d entries in backup."
 msgstr "%d regels in de back-up."
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Het verzoektoken %s is geautoriseerd. Wissel het alstublieft uit voor een "
-#~ "toegangstoken."
-
-#~ msgid "Deny"
-#~ msgstr "Ontzeggen"
-
-#~ msgid "Path to locales"
-#~ msgstr "Talenpad"
-
-#~ msgid "Theme server"
-#~ msgstr "Vormgevingsserver"
-
-#~ msgid "Theme path"
-#~ msgstr "Vormgevingspad"
-
-#~ msgid "Background server"
-#~ msgstr "Achtergrondenserver"
-
-#~ msgid "Background path"
-#~ msgstr "Achtergrondpad"
-
-#~ msgid "Background directory"
-#~ msgstr "Achtergrondenmap"
diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po
index 48e53bec0e..1fa18bac8a 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:01+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:52+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -909,7 +909,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -929,7 +929,7 @@ msgstr "Lås opp brukaren"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 #, fuzzy
 msgctxt "BUTTON"
@@ -946,10 +946,12 @@ msgstr "Blokkér denne brukaren"
 msgid "Failed to save block information."
 msgstr "Lagring av informasjon feila."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1107,38 +1109,47 @@ msgstr "Kan ikkje sletta notisen."
 msgid "Delete this application"
 msgstr "Slett denne notisen"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Du må være innlogga for å melde deg ut av ei gruppe."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "Ingen kallenamn."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Du er ikkje medlem av den gruppa."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Kann ikkje oppdatera gruppa."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s sin status på %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Slett"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1146,13 +1157,13 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Kan ikkje sletta notisen."
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Slett denne notisen"
diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po
index d432cd6ba1..2ac66f6457 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:04+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:54+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -902,7 +902,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -921,7 +921,7 @@ msgstr "Nie blokuj tego użytkownika"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -937,10 +937,12 @@ msgstr "Zablokuj tego użytkownika"
 msgid "Failed to save block information."
 msgstr "Zapisanie informacji o blokadzie nie powiodło się."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1093,37 +1095,46 @@ msgstr "Nie usuwaj tej aplikacji"
 msgid "Delete this application"
 msgstr "Usuń tę aplikację"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Musisz być zalogowany, aby opuścić grupę."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Brak pseudonimu lub identyfikatora."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Nie jesteś członkiem tej grupy."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Nie można zaktualizować grupy."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "Użytkownik %1$s opuścił grupę %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Usuń użytkownika"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1134,13 +1145,13 @@ msgstr ""
 "bazy danych, bez utworzenia kopii zapasowej."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Nie usuwaj tego wpisu"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Usuń tego użytkownika"
@@ -7692,30 +7703,3 @@ 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 ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Token żądania %s został upoważniony. Proszę wymienić go na token dostępu."
-
-#~ msgid "Deny"
-#~ msgstr "Odrzuć"
-
-#~ msgid "Path to locales"
-#~ msgstr "Ścieżka do lokalizacji"
-
-#~ msgid "Theme server"
-#~ msgstr "Serwer motywu"
-
-#~ msgid "Theme path"
-#~ msgstr "Ścieżka do motywu"
-
-#~ msgid "Background server"
-#~ msgstr "Serwer tła"
-
-#~ msgid "Background path"
-#~ msgstr "Ścieżka do tła"
-
-#~ msgid "Background directory"
-#~ msgstr "Katalog tła"
diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po
index c43071ff93..35084b26cd 100644
--- a/locale/pt/LC_MESSAGES/statusnet.po
+++ b/locale/pt/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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:06+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:55+0000\n"
 "Language-Team: Portuguese \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -897,7 +897,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -916,7 +916,7 @@ msgstr "Não bloquear este utilizador"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -932,10 +932,12 @@ msgstr "Bloquear este utilizador"
 msgid "Failed to save block information."
 msgstr "Não foi possível gravar informação do bloqueio."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1089,37 +1091,46 @@ msgstr "Não apagar esta aplicação"
 msgid "Delete this application"
 msgstr "Apagar esta aplicação"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Tem de iniciar uma sessão para deixar um grupo."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Nenhum utilizador ou ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Não é membro deste grupo."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Não foi possível actualizar o grupo."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s deixou o grupo %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Apagar utilizador"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1130,13 +1141,13 @@ msgstr ""
 "utilizador serão eliminados da base de dados, sem haver cópias."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Não apagar esta nota"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Apagar este utilizador"
@@ -7683,30 +7694,3 @@ msgstr "Não foi especificado um ID de utilizador."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "A chave de pedido %s foi autorizada. Troque-a por uma chave de acesso."
-
-#~ msgid "Deny"
-#~ msgstr "Negar"
-
-#~ msgid "Path to locales"
-#~ msgstr "Localização das línguas"
-
-#~ msgid "Theme server"
-#~ msgstr "Servidor do tema"
-
-#~ msgid "Theme path"
-#~ msgstr "Localização do tema"
-
-#~ msgid "Background server"
-#~ msgstr "Servidor de fundos"
-
-#~ msgid "Background path"
-#~ msgstr "Localização dos fundos"
-
-#~ msgid "Background directory"
-#~ msgstr "Directório dos fundos"
diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po
index b1717cf0dc..140a1ca355 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:08+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:55+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -914,7 +914,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -933,7 +933,7 @@ msgstr "Não bloquear este usuário"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -949,10 +949,12 @@ msgstr "Bloquear este usuário"
 msgid "Failed to save block information."
 msgstr "Não foi possível salvar a informação de bloqueio."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1106,37 +1108,46 @@ msgstr "Não excluir esta aplicação"
 msgid "Delete this application"
 msgstr "Excluir esta aplicação"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Você deve estar autenticado para sair de um grupo."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Nenhum apelido ou identificação."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Você não é membro deste grupo."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Não foi possível atualizar o grupo."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s deixou o grupo %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Excluir usuário"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1147,13 +1158,13 @@ msgstr ""
 "deste usuário do banco de dados, sem cópia de segurança."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Não excluir esta mensagem."
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Excluir este usuário"
@@ -7721,31 +7732,3 @@ msgstr "Não foi especificado nenhum ID de usuário."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "O token de requisição %s foi autorizado. Por favor, troque-o por um token "
-#~ "de acesso."
-
-#~ msgid "Deny"
-#~ msgstr "Negar"
-
-#~ msgid "Path to locales"
-#~ msgstr "Caminho para os locales"
-
-#~ msgid "Theme server"
-#~ msgstr "Servidor de temas"
-
-#~ msgid "Theme path"
-#~ msgstr "Caminho dos temas"
-
-#~ msgid "Background server"
-#~ msgstr "Servidor de imagens de fundo"
-
-#~ msgid "Background path"
-#~ msgstr "Caminho das imagens de fundo"
-
-#~ msgid "Background directory"
-#~ msgstr "Diretório das imagens de fundo"
diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po
index dbd7da38f1..5e8edeafa7 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:09+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:56+0000\n"
 "Language-Team: Russian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -906,7 +906,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -925,7 +925,7 @@ msgstr "Не блокировать этого пользователя"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -941,10 +941,12 @@ msgstr "Заблокировать пользователя."
 msgid "Failed to save block information."
 msgstr "Не удаётся сохранить информацию о блокировании."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1098,37 +1100,46 @@ msgstr "Не удаляйте это приложение"
 msgid "Delete this application"
 msgstr "Удалить это приложение"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Вы должны авторизоваться, чтобы покинуть группу."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Нет имени или ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Вы не являетесь членом этой группы."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Не удаётся обновить информацию о группе."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s покинул группу %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Удалить пользователя"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1139,13 +1150,13 @@ msgstr ""
 "всех данных о пользователе из базы данных без возможности восстановления."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Не удалять эту запись"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Удалить этого пользователя"
@@ -7703,30 +7714,3 @@ msgstr "Не указан идентификатор пользователя."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Ключ запроса %s авторизован. Пожалуйста, обменяйте его на ключ доступа."
-
-#~ msgid "Deny"
-#~ msgstr "Запретить"
-
-#~ msgid "Path to locales"
-#~ msgstr "Путь к локализациям"
-
-#~ msgid "Theme server"
-#~ msgstr "Сервер темы"
-
-#~ msgid "Theme path"
-#~ msgstr "Путь темы"
-
-#~ msgid "Background server"
-#~ msgstr "Сервер фонового изображения"
-
-#~ msgid "Background path"
-#~ msgstr "Путь к фоновому изображению"
-
-#~ msgid "Background directory"
-#~ msgstr "Директория фонового изображения"
diff --git a/locale/statusnet.pot b/locale/statusnet.pot
index 61313609cf..f7661107ff 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-18 18:35+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -866,7 +866,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -885,7 +885,7 @@ msgstr ""
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -901,10 +901,12 @@ msgstr ""
 msgid "Failed to save block information."
 msgstr ""
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1055,34 +1057,43 @@ msgstr ""
 msgid "Delete this application"
 msgstr ""
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 msgid "You must be logged in to delete a group."
 msgstr ""
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr ""
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 msgid "You are not allowed to delete this group."
 msgstr ""
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr ""
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr ""
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 msgid "Delete group"
 msgstr ""
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
 "the group from the database, without a backup. Public posts to this group "
@@ -1090,12 +1101,12 @@ msgid ""
 msgstr ""
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 msgid "Do not delete this group"
 msgstr ""
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 msgid "Delete this group"
 msgstr ""
 
diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po
index 04e5327a16..2223fae7b3 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:11+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:57+0000\n"
 "Language-Team: Swedish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -896,7 +896,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -915,7 +915,7 @@ msgstr "Blockera inte denna användare"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -931,10 +931,12 @@ msgstr "Blockera denna användare"
 msgid "Failed to save block information."
 msgstr "Misslyckades att spara blockeringsinformation."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1089,37 +1091,46 @@ msgstr "Ta inte bort denna applikation"
 msgid "Delete this application"
 msgstr "Ta bort denna applikation"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Du måste vara inloggad för att lämna en grupp."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Inget smeknamn eller ID."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Du är inte en medlem i denna grupp."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Kunde inte uppdatera grupp."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s lämnade grupp %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Ta bort användare"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1130,13 +1141,13 @@ msgstr ""
 "data om användaren från databasen, utan en säkerhetskopia."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Ta inte bort denna notis"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Ta bort denna användare"
@@ -7661,29 +7672,3 @@ msgstr "Ingen användar-ID angiven."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr "Begäran-token %s har godkänts. Byt ut den mot en åtkomst-token."
-
-#~ msgid "Deny"
-#~ msgstr "Neka"
-
-#~ msgid "Path to locales"
-#~ msgstr "Sökväg till lokaliseringfiler (locales)"
-
-#~ msgid "Theme server"
-#~ msgstr "Server med teman"
-
-#~ msgid "Theme path"
-#~ msgstr "Sökväg till teman"
-
-#~ msgid "Background server"
-#~ msgstr "Server med bakgrunder"
-
-#~ msgid "Background path"
-#~ msgstr "Sökväg till bakgrunder"
-
-#~ msgid "Background directory"
-#~ msgstr "Katalog med bakgrunder"
diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po
index 1a8db7c6ec..dc186dd5dd 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:13+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:58+0000\n"
 "Language-Team: Telugu \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -887,7 +887,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -906,7 +906,7 @@ msgstr "ఈ వాడుకరిని నిరోధించకు"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -922,10 +922,12 @@ msgstr "ఈ వాడుకరిని నిరోధించు"
 msgid "Failed to save block information."
 msgstr "నిరోధపు సమాచారాన్ని భద్రపరచడంలో విఫలమయ్యాం."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1078,37 +1080,46 @@ msgstr "ఈ ఉపకరణాన్ని తొలగించకు"
 msgid "Delete this application"
 msgstr "ఈ ఉపకరణాన్ని తొలగించు"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Jabber ID లేదు."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "మీరు ఈ గుంపులో సభ్యులు కాదు."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "గుంపుని తాజాకరించలేకున్నాం."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "వాడుకరిని తొలగించు"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1119,13 +1130,13 @@ msgstr ""
 "వెనక్కి తేలేకుండా."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "ఈ నోటీసుని తొలగించకు"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "ఈ వాడుకరిని తొలగించు"
@@ -7560,23 +7571,3 @@ msgstr "గుంపు ఏమీ పేర్కొనలేదు."
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid "Deny"
-#~ msgstr "తిరస్కరించు"
-
-#~ msgid "Theme server"
-#~ msgstr "అలంకారాల సేవకి"
-
-#, fuzzy
-#~ msgid "Theme path"
-#~ msgstr "అలంకారం"
-
-#~ msgid "Background server"
-#~ msgstr "నేపథ్యాల సేవకి"
-
-#, fuzzy
-#~ msgid "Background path"
-#~ msgstr "నేపథ్యం"
-
-#~ msgid "Background directory"
-#~ msgstr "నేపథ్యాల సంచయం"
diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po
index fcc6bb8d27..e33fd56dd4 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:14+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:50:59+0000\n"
 "Language-Team: Turkish \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -906,7 +906,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -925,7 +925,7 @@ msgstr "Bu kullanıcıyı engelleme"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -941,10 +941,12 @@ msgstr "Bu kullanıcıyı engelle"
 msgid "Failed to save block information."
 msgstr "Engelleme bilgisinin kaydedilmesi başarısızlığa uğradı."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1098,38 +1100,47 @@ msgstr "Bu uygulamayı silme"
 msgid "Delete this application"
 msgstr "Bu uygulamayı sil"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Bir grup oluşturmak için giriş yapmış olmanız gerekir."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 #, fuzzy
 msgid "No nickname or ID."
 msgstr "Takma ad yok"
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Bu grubun bir üyesi değilsiniz."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Grup güncellenemedi."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s'in %2$s'deki durum mesajları "
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Kullanıcıyı sil"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1140,13 +1151,13 @@ msgstr ""
 "kullanıcıya ait tüm verileri herhangi bir yedek olmaksızın temizleyecektir."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Bu durum mesajını silme"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Bu kullanıcıyı sil"
@@ -7503,13 +7514,3 @@ msgstr "Yeni durum mesajı"
 #, php-format
 msgid "%d entries in backup."
 msgstr ""
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "İstek belirteci %s yetkilendirilmemiş. Bir giriş belirteci için "
-#~ "değiştirin."
-
-#~ msgid "Deny"
-#~ msgstr "Reddet"
diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po
index 8886c5f3ef..0256e66362 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:16+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:51:00+0000\n"
 "Language-Team: Ukrainian \n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -905,7 +905,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -924,7 +924,7 @@ msgstr "Не блокувати цього користувача"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -940,10 +940,12 @@ msgstr "Блокувати користувача"
 msgid "Failed to save block information."
 msgstr "Збереження інформації про блокування завершилось невдачею."
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1097,37 +1099,46 @@ msgstr "Не видаляти додаток"
 msgid "Delete this application"
 msgstr "Видалити додаток"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "Ви повинні спочатку увійти на сайт, аби залишити спільноту."
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "Немає імені або ІД."
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "Ви не стоїте у цій спільноті."
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "Не вдалося оновити спільноту."
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s залишив спільноту %2$s"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "Видалити користувача"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1138,13 +1149,13 @@ msgstr ""
 "можливості відновлення."
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "Не видаляти цей допис"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "Видалити цього користувача"
@@ -7697,31 +7708,3 @@ msgstr ""
 #, php-format
 msgid "%d entries in backup."
 msgstr "У резервному файлі збережено %d дописів."
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr ""
-#~ "Токен запиту %s було авторизовано. Будь ласка, обміняйте його на токен "
-#~ "доступу."
-
-#~ msgid "Deny"
-#~ msgstr "Відхилити"
-
-#~ msgid "Path to locales"
-#~ msgstr "Шлях до локалей"
-
-#~ msgid "Theme server"
-#~ msgstr "Сервер теми"
-
-#~ msgid "Theme path"
-#~ msgstr "Шлях до теми"
-
-#~ msgid "Background server"
-#~ msgstr "Сервер фонів"
-
-#~ msgid "Background path"
-#~ msgstr "Шлях до фонів"
-
-#~ msgid "Background directory"
-#~ msgstr "Директорія фонів"
diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po
index 44d070328c..3056f4f620 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-18 18:35+0000\n"
-"PO-Revision-Date: 2010-10-18 18:42:17+0000\n"
+"POT-Creation-Date: 2010-10-18 20:49+0000\n"
+"PO-Revision-Date: 2010-10-18 20:51:01+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 (r74952); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.17alpha (r74965); 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-09 14:31:24+0000\n"
+"X-POT-Import-Date: 2010-10-18 20:28:37+0000\n"
 
 #. TRANS: Page title
 #. TRANS: Menu item for site administration
@@ -889,7 +889,7 @@ msgstr ""
 #. 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/deletegroup.php:211 actions/deletenotice.php:150
+#: actions/deletegroup.php:220 actions/deletenotice.php:150
 #: actions/deleteuser.php:152 actions/groupblock.php:178
 msgctxt "BUTTON"
 msgid "No"
@@ -908,7 +908,7 @@ msgstr "不要屏蔽这个用户"
 #. 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/deletegroup.php:218 actions/deletenotice.php:157
+#: actions/deletegroup.php:227 actions/deletenotice.php:157
 #: actions/deleteuser.php:159 actions/groupblock.php:185
 msgctxt "BUTTON"
 msgid "Yes"
@@ -924,10 +924,12 @@ msgstr "屏蔽这个用户"
 msgid "Failed to save block information."
 msgstr "保存屏蔽信息失败。"
 
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
 #. 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/deletegroup.php:87 actions/deletegroup.php:98
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
 #: actions/editgroup.php:100 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
@@ -1080,37 +1082,46 @@ msgstr "不删除该应用"
 msgid "Delete this application"
 msgstr "删除这个应用"
 
-#: actions/deletegroup.php:65
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
 #, fuzzy
 msgid "You must be logged in to delete a group."
 msgstr "你必须登录才能离开小组。"
 
-#: actions/deletegroup.php:93 actions/joingroup.php:88
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
 #: actions/leavegroup.php:88
 msgid "No nickname or ID."
 msgstr "没有昵称或 ID。"
 
-#: actions/deletegroup.php:104
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
 #, fuzzy
 msgid "You are not allowed to delete this group."
 msgstr "你不是该小组成员。"
 
-#: actions/deletegroup.php:146
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
 #, fuzzy, php-format
-msgid "Could not delete group %2$s."
+msgid "Could not delete group %s."
 msgstr "无法更新小组"
 
-#: actions/deletegroup.php:153
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
 #, fuzzy, php-format
-msgid "Deleted group %2$s"
+msgid "Deleted group %s"
 msgstr "%1$s离开了%2$s小组。"
 
-#: actions/deletegroup.php:169 actions/deletegroup.php:194
+#. TRANS: Title.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
 #, fuzzy
 msgid "Delete group"
 msgstr "删除用户"
 
-#: actions/deletegroup.php:197
+#: actions/deletegroup.php:206
 #, fuzzy
 msgid ""
 "Are you sure you want to delete this group? This will clear all data about "
@@ -1120,13 +1131,13 @@ msgstr ""
 "你确定要删除这个用户吗?这将从数据库中清除有关这个用户的所有数据,没有备份。"
 
 #. TRANS: Submit button title for 'No' when deleting a group.
-#: actions/deletegroup.php:215
+#: actions/deletegroup.php:224
 #, fuzzy
 msgid "Do not delete this group"
 msgstr "不要删除这个消息"
 
 #. TRANS: Submit button title for 'Yes' when deleting a group.
-#: actions/deletegroup.php:222
+#: actions/deletegroup.php:231
 #, fuzzy
 msgid "Delete this group"
 msgstr "删除这个用户"
@@ -7491,29 +7502,3 @@ msgstr "没有用户被指定;使用备份用户。"
 #, php-format
 msgid "%d entries in backup."
 msgstr "备份中有 %d 个条目。"
-
-#~ msgid ""
-#~ "The request token %s has been authorized. Please exchange it for an "
-#~ "access token."
-#~ msgstr "Request token 已被批准。请为它换一个 access token。"
-
-#~ msgid "Deny"
-#~ msgstr "阻止"
-
-#~ msgid "Path to locales"
-#~ msgstr "本地化文件路径"
-
-#~ msgid "Theme server"
-#~ msgstr "主题服务器"
-
-#~ msgid "Theme path"
-#~ msgstr "主题路径"
-
-#~ msgid "Background server"
-#~ msgstr "背景服务器"
-
-#~ msgid "Background path"
-#~ msgstr "背景图路径"
-
-#~ msgid "Background directory"
-#~ msgstr "背景图目录"

From d26b7a12ca111b25eed583a087011bceea38b00f Mon Sep 17 00:00:00 2001
From: Brion Vibber 
Date: Mon, 18 Oct 2010 14:48:11 -0700
Subject: [PATCH 111/112] Bump README to 0.9.6

---
 README | 58 +++++++++++++++++++++++++++++++---------------------------
 1 file changed, 31 insertions(+), 27 deletions(-)

diff --git a/README b/README
index 35c510e2b8..733e62512d 100644
--- a/README
+++ b/README
@@ -2,8 +2,8 @@
 README
 ------
 
-StatusNet 0.9.5 "What's The Frequency, Kenneth?"
-10 September 2010
+StatusNet 0.9.6 "Man on the Moon"
+19 October 2010
 
 This is the README file for StatusNet, the Open Source microblogging
 platform. It includes installation instructions, descriptions of
@@ -96,8 +96,8 @@ for additional terms.
 New this version
 ================
 
-This is a security, bug and feature release since version 0.9.4 released on
-16 August 2010.
+This is a security, bug and feature release since version 0.9.5 released on
+10 September 2010.
 
 For best compatibility with client software and site federation, and a lot of
 bug fixes, it is highly recommended that all public sites upgrade to the new
@@ -105,24 +105,24 @@ version.
 
 Notable changes this version:
 
-- Change of license for default themes and documentation from
-  AGPLv3 to CC-By 3.0 Unported.
-- An experimental TinyMCE plugin to do in-browser rich editing of
-  status updates. Does not support StatusNet syntax like @-replies or
-  #hashtags very well.
-- An experimental plugin to add titles to notices.
-- A plugin to support the Echo  commenting
-  system.
-- A plugin to support the Disqus  commenting system.
-- Changes to OStatus support to make StatusNet work for the Social Web
-  Acid Test Level 0 .
-- Themes now support a theme.ini file for theme configuration, including
-  defining a "base" theme.
-- Improved two-way Twitter integration, including support for
-  repeats and retweets, replies, and faves going both ways across the
-  bridge, as well as better parsing of Twitter statuses.
+- Site moderators can now delete groups.
+- New themes: clean, shiny, mnml, victorian
+- New YammerImport plugin allows site admins to import non-private profiles and
+  message from an authenticated Yammer site.
+- New experimental plugins: AnonFavorites, SlicedFavorites, GroupFavorited,
+  ForceGroup, ShareNotice
+- OAuth upgraded to 1.0a
+- Localization updates now include plugins, thanks to TranslateWiki.net!
+- SSL link generation should be more consistent; alternate SSL URLs can be
+  set in the admin UI for more parts of the system.
+- Experimental backupuser.php, restoreuser.php command-line scripts to
+  dump/restore a user's complete activity stream. Can be used to transfer
+  accounts manually between sites, or to save a backup before deleting.
+- Unicode fixes for OStatus notices
+- Header metadata on notice pages to aid in manual reposting on Facebook
+- Lots of little fixes...
 
-A full changelog is available at http://status.net/wiki/StatusNet_0.9.5.
+A full changelog is available at http://status.net/wiki/StatusNet_0.9.6.
 
 Prerequisites
 =============
@@ -235,9 +235,9 @@ especially if you've previously installed PHP/MySQL packages.
 1. Unpack the tarball you downloaded on your Web server. Usually a
    command like this will work:
 
-       tar zxf statusnet-0.9.5.tar.gz
+       tar zxf statusnet-0.9.6.tar.gz
 
-   ...which will make a statusnet-0.9.5 subdirectory in your current
+   ...which will make a statusnet-0.9.6 subdirectory in your current
    directory. (If you don't have shell access on your Web server, you
    may have to unpack the tarball on your local computer and FTP the
    files to the server.)
@@ -245,7 +245,7 @@ especially if you've previously installed PHP/MySQL packages.
 2. Move the tarball to a directory of your choosing in your Web root
    directory. Usually something like this will work:
 
-       mv statusnet-0.9.5 /var/www/statusnet
+       mv statusnet-0.9.6 /var/www/statusnet
 
    This will make your StatusNet instance available in the statusnet path of
    your server, like "http://example.net/statusnet". "microblog" or
@@ -660,7 +660,7 @@ with this situation.
 If you've been using StatusNet 0.7, 0.6, 0.5 or lower, or if you've
 been tracking the "git" version of the software, you will probably
 want to upgrade and keep your existing data. There is no automated
-upgrade procedure in StatusNet 0.9.5. Try these step-by-step
+upgrade procedure in StatusNet 0.9.6. Try these step-by-step
 instructions; read to the end first before trying them.
 
 0. Download StatusNet and set up all the prerequisites as if you were
@@ -681,7 +681,7 @@ instructions; read to the end first before trying them.
 5. Once all writing processes to your site are turned off, make a
    final backup of the Web directory and database.
 6. Move your StatusNet directory to a backup spot, like "statusnet.bak".
-7. Unpack your StatusNet 0.9.5 tarball and move it to "statusnet" or
+7. Unpack your StatusNet 0.9.6 tarball and move it to "statusnet" or
    wherever your code used to be.
 8. Copy the config.php file and the contents of the avatar/, background/,
    file/, and local/ subdirectories from your old directory to your new
@@ -1586,7 +1586,7 @@ repository (see below), and you get a compilation error ("unexpected
 T_STRING") in the browser, check to see that you don't have any
 conflicts in your code.
 
-If you upgraded to StatusNet 0.9.5 without reading the "Notice
+If you upgraded to StatusNet 0.9.x without reading the "Notice
 inboxes" section above, and all your users' 'Personal' tabs are empty,
 read the "Notice inboxes" section above.
 
@@ -1697,6 +1697,10 @@ if anyone's been overlooked in error.
 * mEDI
 * Brett Taylor
 * Brigitte Schuster
+* Siebrand Mazeland and the amazing volunteer translators at TranslateWiki.net
+* Brion Vibber, StatusNet, Inc.
+* James Walker, StatusNet, Inc.
+* Samantha Doherty, designer, StatusNet, Inc.
 
 Thanks also to the developers of our upstream library code and to the
 thousands of people who have tried out Identi.ca, installed StatusNet,

From e8da3618c24764975b669796cb0c0152e423e9cc Mon Sep 17 00:00:00 2001
From: Brion Vibber 
Date: Mon, 18 Oct 2010 14:49:02 -0700
Subject: [PATCH 112/112] Bump version/string: 0.9.6 "Man on the Moon"

---
 lib/common.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/common.php b/lib/common.php
index 236f2d68a7..c2117164c6 100644
--- a/lib/common.php
+++ b/lib/common.php
@@ -22,10 +22,10 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
 //exit with 200 response, if this is checking fancy from the installer
 if (isset($_REQUEST['p']) && $_REQUEST['p'] == 'check-fancy') {  exit; }
 
-define('STATUSNET_VERSION', '0.9.5');
+define('STATUSNET_VERSION', '0.9.6');
 define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility
 
-define('STATUSNET_CODENAME', 'What\'s The Frequency, Kenneth?');
+define('STATUSNET_CODENAME', 'Man on the Moon');
 
 define('AVATAR_PROFILE_SIZE', 96);
 define('AVATAR_STREAM_SIZE', 48);